Skip to content

Installation

BertBog edited this page Oct 6, 2025 · 10 revisions

Conda installation

MiST and all associated dependencies can be installed through conda.

conda create -n mist_env -c conda-forge -c bioconda python=3.11 mist_typing

Alternatively, 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 --help

Manual installation

Dependencies

The following dependencies are required.

The corresponding binaries should be in your PATH to run the workflow.

export PATH=$PATH:/path/to/minimap2_dir

Installing MiST from pip

Python >=3.11 is recommended for manual installation via Pip.

virtualenv mist_env --python=python3.11
source mist_env/bin/activate
pip install mist_typing

Installing MiST from source

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.


Verifying the installation

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.

Clone this wiki locally