-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
BertBog edited this page Oct 6, 2025
·
10 revisions
MiST and all associated dependencies can be installed through conda.
conda create -n mist_env -c conda-forge -c bioconda python=3.11 mist_typingAlternatively, faster package managers such as mamba or pixi can be used.
mkdir mist
cd mist
pixi init .
pixi project channel add bioconda
pixi add mist_typing
pixi run mist --helpThe following dependencies are required.
The corresponding binaries should be in your PATH to run the workflow.
export PATH=$PATH:/path/to/minimap2_dirPython >=3.11 is recommended for manual installation via Pip.
virtualenv mist_env --python=python3.11
source mist_env/bin/activate
pip install mist_typing
virtualenv mist_env --python=python3.11
source mist_env/bin/activate
git clone https://github.com/BioinformaticsPlatformWIV-ISP/MiST.git
cd MiST
pip install .
This method ensures you get the most recent updates and bug fixes.
After installation, mist should be available in the PATH. The following command can be used to verify that
the installation was successful.
mist --version # Check if the tool is available
mist --help # List available commands
Note: MLST and cgMLST databases are not included in the installation and must be downloaded separately, see Downloading schemes for more information.