-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
32 lines (28 loc) · 1.15 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##### BASE IMAGE #####
FROM zavolab/minimamba:0.0.7
##### METADATA #####
LABEL base.image="zavolab/minimamba:0.0.7"
LABEL software="merge_kallisto"
LABEL software.description="Merge kallisto quantification"
LABEL software.website="https://github.com/zavolanlab/merge_kallisto"
LABEL software.documentation="https://github.com/zavolanlab/merge_kallisto"
LABEL software.license="https://github.com/zavolanlab/prune_tree/blob/master/LICENSE"
LABEL software.tags="Transcriptomics"
LABEL maintainer="[email protected]"
LABEL maintainer.organisation="Biozentrum, University of Basel"
LABEL maintainer.location="Klingelbergstrasse 50/70, CH-4056 Basel, Switzerland"
LABEL maintainer.lab="Zavolan Lab"
LABEL maintainer.license="https://spdx.org/licenses/Apache-2.0"
COPY R/merge_kallisto.R /usr/local/bin/merge_kallisto.R
RUN mamba \
create -n merge_kallisto \
--yes \
--channel bioconda \
--channel conda-forge \
bioconductor-tximport=1.14.0 \
bioconductor-rhdf5=2.30.0 \
r-optparse=1.6.2 \
bioconductor-rtracklayer=1.46.0 \
&& mamba clean --index-cache --tarballs -y
RUN echo "source activate merge_kallisto" > ~/.bashrc
ENV PATH /opt/conda/envs/merge_kallisto/bin:${PATH}