Skip to content

Commit

Permalink
added apple silicon instructions, removed altair from instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
VinzentRisch committed Jan 19, 2024
1 parent 68f5ddb commit 125154b
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,42 @@
QIIME 2 plugin for antimicrobial resistance gene annotation of MAGs and metagenomic reads.

## Installation
To install _q2-amr_, follow the installation steps described below.
To install _q2-amr_, follow the steps described below.

<details>
<summary><b>macOS (intel)</b></summary>

```shell
mamba create -yn q2-amr \
-c conda-forge -c bioconda -c qiime2 -c defaults \
-c https://packages.qiime2.org/qiime2/2023.9/shotgun/released/ \
qiime2 q2cli q2templates q2-types q2-types-genomics rgi altair
qiime2 q2cli q2templates q2-types q2-types-genomics rgi

conda activate q2-amr

pip install --no-deps --force-reinstall \
git+https://github.com/misialq/rgi.git@py38-fix \
git+https://github.com/bokulich-lab/q2-amr.git
```

Refresh cache and check that everything worked:
```shell
qiime dev refresh-cache
qiime info
```
</details>

<details>
<summary><b>macOS (apple silicon)</b></summary>

```shell
CONDA_SUBDIR=osx-64 mamba create -yn q2-amr \
-c conda-forge -c bioconda -c qiime2 -c defaults \
-c https://packages.qiime2.org/qiime2/2023.9/shotgun/released/ \
qiime2 q2cli q2templates q2-types q2-types-genomics rgi

conda activate q2-amr
conda config --env --set subdir osx-64

pip install --no-deps --force-reinstall \
git+https://github.com/misialq/rgi.git@py38-fix \
Expand All @@ -26,6 +53,7 @@ Refresh cache and check that everything worked:
qiime dev refresh-cache
qiime info
```
</details>

## Functionality
This QIIME 2 plugin contains actions used to annotate short single/paired-end
Expand Down

0 comments on commit 125154b

Please sign in to comment.