BASIC-DNA-ASSEMBLY / DNA-BOT

MIT License
24 stars 21 forks source link

dnabot conda packaging #21

Closed kenza12 closed 3 years ago

kenza12 commented 3 years ago

Hello,

This pull request is created to propose packaging tools in conda environment.

The dnabot packages are available in https://anaconda.org/brsynth/dnabot for python 3.6 to 3.9 and the 3 systems (win-64, osx-64, linux-64).

Example

conda create --name <myenv>
conda activate <myenv>
conda install -c conda-forge -c brsynth dnabot

Once dnabot package is installed, you can run the command line to start DNA-Bot with the graphical interface:

python -m dnabot.dnabot_app

Notice that the command line evolves a bit from python dnabot/dnabot_app.py (previsouly) to python -m dnabot.dnabot_app. This changes was needed to be compatible with the packaging.

One can also start dnabot in the nogui mode as follow:

python -m dnabot.dnabot_app nogui --help

See README for more informations.

Best wishes.