Skip to content

Commit

Permalink
FIX: move installation to conda (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynbez committed Mar 24, 2023
1 parent 2544d58 commit 7a698eb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
boa/
recipe/
.vscode
tutorial/artifacts/study-seqs.qza
Expand Down
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,24 @@ Activate the QIIME 2 environment by running the following command:
conda activate qiime2-2022.8
```
## 3. Install mOTU-tool

Make sure to start by installing [mamba](https://mamba.readthedocs.io/en/latest/index.html) in your QIIME2 environment. This will help to solve dependency conflicts faster:
```
conda activate qiime2-2022.8
conda install mamba -c conda-forge
```

Next, install q2-mOTUs
```
mamba install -c bioconda -c conda-forge -c valentynbez q2-motus
```
Fetch mOTUs database.
```
motus downloadDB
```
Test the installation.
```
git clone https://github.com/motu-tool/q2-mOTUs
cd q2-mOTUs
make install
qiime motus --help
```

# Usage
Expand Down

0 comments on commit 7a698eb

Please sign in to comment.