Installation
minute can be installed with conda via Bioconda channels following these steps:
-
If you don't have Conda and Bioconda: install them following the Bioconda instructions.
-
Create a new environment from Bioconda:
conda create -n minute minute
-
Activate the environment (this must be done before running any of the minute commands):
conda activate minute
-
You can check that the installation was successful by running:
minute --help
This should print minute command-line help and exit.
If you are a developer: Instead of the above, install the dependencies with
conda env create -n minute -f environment.yml
and then install minute:
pip install .
.