Update Installing MKBDR authored by peguerin's avatar peguerin
......@@ -23,7 +23,7 @@ git clone https://gitlab.mbb.univ-montp2.fr/edna/custom_reference_database.git
cd custom_reference_database
```
Build MKBDR locally:
Build MKBDR and install all required dependencies from Python Package Index:
```
pip3 install .
```
......@@ -32,6 +32,17 @@ pip3 install .
### Using conda
Load and create conda environment with all required dependencies:
```
curl https://gitlab.mbb.univ-montp2.fr/edna/custom_reference_database/-/raw/master/envs/mkbdr_dep.yaml
conda env create -f mkbdr_dep.yaml
```
Activate the conda environment with required dependencies and install MKBDR
```
conda activate mkbdr_dep
pip3 install .
```
......
......