Skip to content

Commit 3ed06fa

Browse files
committed
Remove pinning for R packages used in DESeq2 script
1 parent 59d32c8 commit 3ed06fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/local/deseq2_qc.nf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ process DESEQ2_QC {
22
tag "$meta.id"
33
label 'process_medium'
44

5-
conda (params.enable_conda ? "conda-forge::r-base=4.0 bioconda::bioconductor-deseq2=1.28.0 bioconda::bioconductor-biocparallel bioconda::bioconductor-tximport bioconda::bioconductor-complexheatmap conda-forge::r-optparse conda-forge::r-ggplot2 conda-forge::r-rcolorbrewer conda-forge::r-pheatmap" : null)
5+
// (Bio)conda packages have intentionally not been pinned to a specific version
6+
// This was to avoid the pipeline failing due to package conflicts whilst creating the environment when using -profile conda
7+
conda (params.enable_conda ? "conda-forge::r-base bioconda::bioconductor-deseq2 bioconda::bioconductor-biocparallel bioconda::bioconductor-tximport bioconda::bioconductor-complexheatmap conda-forge::r-optparse conda-forge::r-ggplot2 conda-forge::r-rcolorbrewer conda-forge::r-pheatmap" : null)
68
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
79
'https://depot.galaxyproject.org/singularity/mulled-v2-8849acf39a43cdd6c839a369a74c0adc823e2f91:ab110436faf952a33575c64dd74615a84011450b-0' :
810
'quay.io/biocontainers/mulled-v2-8849acf39a43cdd6c839a369a74c0adc823e2f91:ab110436faf952a33575c64dd74615a84011450b-0' }"

0 commit comments

Comments
 (0)