generated from CCBR/CCBR_SnakemakeTemplate
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from CCBR/deseq-docker
Use docker container for rules that use R
- Loading branch information
Showing
19 changed files
with
124 additions
and
201 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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM nciccbr/ccbr_ubuntu_base_20.04:v6 | ||
|
||
# build time variables | ||
ARG BUILD_DATE="000000" | ||
ENV BUILD_DATE=${BUILD_DATE} | ||
ARG BUILD_TAG="000000" | ||
ENV BUILD_TAG=${BUILD_TAG} | ||
ARG REPONAME="000000" | ||
ENV REPONAME=${REPONAME} | ||
|
||
# install conda packages | ||
COPY packages.txt /data2/ | ||
RUN mamba install \ | ||
--no-channel-priority \ | ||
-c bioconda -c conda-forge -c r \ | ||
--file /data2/packages.txt | ||
ENV PATH="/opt2/conda/bin:$PATH" | ||
ENV R_LIBS_USER=/opt2/conda/lib/R/library/ | ||
# install ELBOW manually, fails with mamba | ||
RUN wget --no-check-certificate https://bioconductor.riken.jp/packages/3.4/bioc/src/contrib/ELBOW_1.10.0.tar.gz && \ | ||
R -e 'install.packages("ELBOW_1.10.0.tar.gz", repos = NULL, type="source", INSTALL_opts = "--no-lock")' | ||
|
||
# Save Dockerfile in the docker | ||
COPY Dockerfile /opt2/Dockerfile_${REPONAME}.${BUILD_TAG} | ||
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG} | ||
|
||
# cleanup | ||
WORKDIR /data2 | ||
RUN apt-get clean && apt-get purge \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dockerhub_namespace: nciccbr | ||
image_name: carlisle_r | ||
version: v1 | ||
container: "$(dockerhub_namespace)/$(image_name):$(version)" |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
bioconductor-bsgenome.hsapiens.ncbi.t2t.chm13v2.0 | ||
bioconductor-chipenrich | ||
bioconductor-chipseeker | ||
bioconductor-deseq2 | ||
bioconductor-edger | ||
bioconductor-enhancedvolcano | ||
bioconductor-genomicfeatures | ||
bioconductor-htsfilter | ||
bioconductor-org.Hs.eg.db | ||
bioconductor-org.Mm.eg.db | ||
bioconductor-rtracklayer | ||
bioconductor-txdb.hsapiens.ucsc.hg19.knowngene | ||
bioconductor-TxDb.Hsapiens.UCSC.hg38.knownGene | ||
bioconductor-TxDb.Mmusculus.UCSC.mm10.knownGene | ||
r-argparse | ||
r-DT | ||
r-ggfortify | ||
r-ggvenn | ||
r-htmltools | ||
r-latticeextra | ||
r-pander | ||
r-pdp | ||
r-plotly | ||
r-rcolorbrewer | ||
r-reshape2 | ||
r-tidyverse | ||
r-xfun>=0.43 | ||
r-yaml |
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
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
Oops, something went wrong.