-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates dockerfiles and amends projects accordingly
- Loading branch information
Geert van Geest
committed
Mar 3, 2023
1 parent
133b2d1
commit d766b9b
Showing
4 changed files
with
35 additions
and
55 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,34 +1,31 @@ | ||
FROM jupyter/minimal-notebook:9fe5186aba96 | ||
FROM jupyter/minimal-notebook:e407f93c8dcc | ||
|
||
USER root | ||
RUN cat /etc/skel/.bashrc >> /etc/bash.bashrc | ||
USER $NB_UID | ||
|
||
RUN rm -r /home/jovyan/work | ||
|
||
RUN /opt/conda/bin/conda install -y --quiet -c bioconda \ | ||
samtools=1.10 \ | ||
minimap2=2.17 \ | ||
fastqc=0.11.9 \ | ||
pbmm2=1.4.0 \ | ||
parallel=20170422 | ||
RUN /opt/conda/bin/conda config --add channels bioconda | ||
RUN /opt/conda/bin/conda config --add channels conda-forge | ||
|
||
RUN parallel --citation <<< 'will cite' | ||
RUN /opt/conda/bin/conda install mamba -y -n base -c conda-forge | ||
|
||
RUN mamba install -y --quiet \ | ||
samtools>=1.10 \ | ||
minimap2 \ | ||
fastqc \ | ||
pbmm2 \ | ||
parallel | ||
|
||
# install nanoplot with pip (with conda gives errors) | ||
RUN pip install NanoPlot | ||
|
||
# install flair environment from .yml file | ||
COPY flair_env.yml ./ | ||
RUN /opt/conda/bin/conda env create -f flair_env.yml | ||
RUN rm flair_env.yml | ||
RUN mamba create -y -n flair -c conda-forge -c bioconda flair | ||
|
||
# install pacbio environment from .yml file | ||
COPY pacbio_env.yml ./ | ||
RUN /opt/conda/bin/conda env create -f pacbio_env.yml | ||
RUN rm pacbio_env.yml | ||
RUN mamba create -y -n pacbio \ | ||
pbccs lima pbmm2 matplotlib numpy \ | ||
pandas seaborn mappy pysam scikit-learn pbcore | ||
|
||
# install assembly environment from .yml file | ||
COPY assembly_env.yml ./ | ||
RUN /opt/conda/bin/conda env create -f assembly_env.yml | ||
RUN rm assembly_env.yml | ||
RUN mamba create -y -n assembly \ | ||
prokka flye busco |
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
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