Skip to content

Commit 783c330

Browse files
committed
ADD Dockerfile for DESeq2 1.30.0
1 parent 9c265ca commit 783c330

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

deseq/deseq2-1.30.0/Dockerfile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
############################################################
2+
# Dockerfile to build DESeq container images
3+
# Based on bioconductor
4+
############################################################
5+
6+
# Set the base image to Bioconductor docker RELEASE_3_12
7+
FROM bioconductor/bioconductor_docker:RELEASE_3_12
8+
9+
# File Author / Maintainer
10+
MAINTAINER Charlotte Berthelier
11+
12+
# Default command to execute at startup of the container
13+
CMD R --no-save
14+
15+
# Install DESeq2 and FactoMineR package
16+
RUN R -e 'BiocManager::install("DESeq2")' && R -e 'BiocManager::install("FactoMineR")' && R -e 'devtools::install_github("kassambara/factoextra")'

0 commit comments

Comments
 (0)