-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,33 @@ | ||
FROM continuumio/miniconda3:4.8.2 | ||
FROM continuumio/miniconda3:latest | ||
|
||
LABEL developer="Po-E Li" | ||
LABEL email="[email protected]" | ||
LABEL version="1.0.1" | ||
LABEL version="1.0.3" | ||
LABEL software="nmdc_taxa_profilers" | ||
LABEL tags="metagenome, bioinformatics, NMDC, taxonomy" | ||
|
||
ENV container docker | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get install -y build-essential unzip wget curl gawk \ | ||
RUN apt-get update --allow-releaseinfo-change \ | ||
&& apt-get install -y build-essential \ | ||
&& apt-get clean | ||
|
||
# add conda channels | ||
RUN conda config --add channels conda-forge \ | ||
&& conda config --add channels bioconda | ||
|
||
# install gottcha2 | ||
RUN conda install minimap2 pandas | ||
RUN wget https://github.com/poeli/GOTTCHA2/archive/2.1.7.tar.gz \ | ||
&& tar -xzf 2.1.7.tar.gz \ | ||
&& cp GOTTCHA2-2.1.7/*.py /usr/local/bin \ | ||
&& rm -rf GOTTCHA2-2.1.7/ 2.1.7.zip | ||
RUN conda install minimap2 pandas gawk curl | ||
RUN wget https://github.com/poeli/GOTTCHA2/archive/refs/tags/2.1.8.1.tar.gz \ | ||
&& tar -xzf 2.1.8.1.tar.gz \ | ||
&& cp GOTTCHA2-2.1.8.1/gottcha/scripts/*.py /usr/local/bin \ | ||
&& rm -rf GOTTCHA2-2.1.8.1/ 2.1.8.1.tar.gz | ||
|
||
# install kraken2 | ||
RUN conda install kraken2=2.1.0 | ||
RUN conda create -n kraken kraken2=2.1.0 | ||
|
||
# install centrifuge | ||
RUN wget https://github.com/DaehwanKimLab/centrifuge/archive/v1.0.4-beta.tar.gz \ | ||
&& tar -xzf v1.0.4-beta.tar.gz \ | ||
&& cd centrifuge-1.0.4-beta \ | ||
&& make install prefix=/usr/local | ||
RUN conda create -n centrifuge centrifuge=1.0.4_beta | ||
|
||
# install krona | ||
RUN conda install krona \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters