Skip to content

Commit

Permalink
updated propr container
Browse files Browse the repository at this point in the history
  • Loading branch information
suzannejin committed Oct 18, 2024
1 parent 9819e84 commit b566842
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion conf/test_experimental.config
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ params {
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/mus_musculus/rnaseq_expression/SRP254919.samplesheet.csv'
matrix = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/mus_musculus/rnaseq_expression/SRP254919.salmon.merged.gene_counts.top1000cov.tsv'
contrasts = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/mus_musculus/rnaseq_expression/SRP254919.contrasts.csv'
pathway = "propd,propd_fdr,propr,cor"
pathway = "propd,propd_grea,propr,cor"

//Features
features_metadata_cols = 'gene_id,gene_name'
Expand Down
9 changes: 3 additions & 6 deletions modules/local/propr/grea/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ process PROPR_GREA {
tag "$meta.id"
label 'process_high'

// TODO
// the container is not updated for the grea function
// for the moment I'm running it locally
// conda "${moduleDir}/environment.yml"
// container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
// 'https://depot.galaxyproject.org/singularity/mulled-v2-401a215d4024df776a98d90a352048199e342a3d:5ba9bbf6cd4f4f98983526673c223d2e7d829b36-0':
// 'biocontainers/mulled-v2-401a215d4024df776a98d90a352048199e342a3d:5ba9bbf6cd4f4f98983526673c223d2e7d829b36-0' }"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'oras://community.wave.seqera.io/library/bioconductor-limma_r-ggplot2_r-propr:75e6dfd62a2313a9':
'community.wave.seqera.io/library/bioconductor-limma_r-ggplot2_r-propr:fbd569ab00953cb0' }"

input:
tuple val(meta), path(adj)
Expand Down
6 changes: 3 additions & 3 deletions modules/local/propr/propd/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ process PROPR_PROPD {
tag "$meta.id"
label 'process_medium'

conda "${moduleDir}/environment.yml"
// conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/mulled-v2-401a215d4024df776a98d90a352048199e342a3d:5ba9bbf6cd4f4f98983526673c223d2e7d829b36-0':
'biocontainers/mulled-v2-401a215d4024df776a98d90a352048199e342a3d:5ba9bbf6cd4f4f98983526673c223d2e7d829b36-0' }"
'oras://community.wave.seqera.io/library/bioconductor-limma_r-ggplot2_r-propr:75e6dfd62a2313a9':
'community.wave.seqera.io/library/bioconductor-limma_r-ggplot2_r-propr:fbd569ab00953cb0' }"

input:
tuple val(meta), path(count), path(samplesheet), val(contrast_variable), val(reference), val(target)
Expand Down
6 changes: 3 additions & 3 deletions modules/local/propr/propr/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ process PROPR_PROPR {
tag "$meta.id"
label 'process_medium'

conda "${moduleDir}/environment.yml"
// conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/mulled-v2-401a215d4024df776a98d90a352048199e342a3d:5ba9bbf6cd4f4f98983526673c223d2e7d829b36-0':
'biocontainers/mulled-v2-401a215d4024df776a98d90a352048199e342a3d:5ba9bbf6cd4f4f98983526673c223d2e7d829b36-0' }"
'oras://community.wave.seqera.io/library/bioconductor-limma_r-ggplot2_r-propr:75e6dfd62a2313a9':
'community.wave.seqera.io/library/bioconductor-limma_r-ggplot2_r-propr:fbd569ab00953cb0' }"

input:
tuple val(meta), path(count)
Expand Down

0 comments on commit b566842

Please sign in to comment.