We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c265ca commit 783c330Copy full SHA for 783c330
deseq/deseq2-1.30.0/Dockerfile
@@ -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