Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new version of dbcan #13

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
22 changes: 22 additions & 0 deletions dbcan/4.0.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM continuumio/miniconda3

LABEL maintainer="Microbiome Informatics Team www.ebi.ac.uk/metagenomics"

LABEL base_image="continuumio/miniconda3"
LABEL version="1"
LABEL software="dbcan"
LABEL software.version="4.0.0"


# set work dir
WORKDIR /app

RUN conda install -c conda-forge -c bioconda -c anaconda python=3.8 \
diamond hmmer prodigal dbcan=4.0.0 openpyxl matplotlib && \
conda clean -ya


RUN echo "source activate run_dbcan" > ~/.bashrc
ENV PATH /opt/conda/envs/run_dbcan/bin:$PATH

CMD ["/bin/bash", "-c"]