Installation¶
Via bioconda¶
Users of the anaconda python distribution can install
mockinbird and all its dependencies using conda
:
conda create -n mockinbird -c bioconda -c conda-forge python=3.6 mockinbird
Above command installs mockinbird into an independent conda environment named mockinbird
. The environment has to be activated in the shell before the pipeline can be used. To activate, type source activate mockinbird
.
mockinbird and all its dependencies are installed into a separate folder and will not interfere with the system. mockinbird can be cleanly removed by conda remove --all -n mockinbird
.
To simplify the starting process, we recommend adding
alias load_mockinbird='source activate mockinbird'
to the startup script of your shell. On most linux systems this command has to be added to ~/.bashrc
, on macOS you have to edit ~/.bash_profile
.
After restarting your shell you can now load mockinbird by typing load_mockinbird
instead of the the more verbose and cryptic source activate mockinbird
.