@@ -4,8 +4,8 @@ process SHINYNGS_STATICDIFFERENTIAL {
44
55 conda " ${ moduleDir} /environment.yml"
66 container " ${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
7- 'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/d0/d0937af0a2b5efe1c18565ef320956e630a03c00c6d75ea5df92ec9f9ff2d14e /data' :
8- 'community.wave.seqera.io/library/r-shinyngs:2.3 .0--140cda6231347fbb ' } "
7+ 'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/d7/d782b4f11adf8f3cad6af74ea585468decd873a171da1dae0e4a24a82bb29020 /data' :
8+ 'community.wave.seqera.io/library/r-shinyngs:2.4 .0--709fc6932be670a5 ' } "
99
1010 input:
1111 tuple val(meta), path(differential_result) // Differential info: contrast and differential stats
@@ -14,7 +14,7 @@ process SHINYNGS_STATICDIFFERENTIAL {
1414 output:
1515 tuple val(meta), path(" */png/volcano.png" ) , emit: volcanos_png
1616 tuple val(meta), path(" */html/volcano.html" ) , emit: volcanos_html, optional: true
17- path " versions.yml " , emit : versions
17+ tuple val( " ${ task.process } " ), val( ' shinyngs ' ), eval( ' Rscript -e "library(shinyngs); cat(as.character(packageVersion( \' shinyngs \' )))" ' ), emit: versions_shinyngs, topic : versions
1818
1919 when:
2020 task. ext. when == null || task. ext. when
@@ -30,11 +30,6 @@ process SHINYNGS_STATICDIFFERENTIAL {
3030 --feature_metadata "$feature_meta " \\
3131 --outdir "$prefix " \\
3232 $args
33-
34- cat <<-END_VERSIONS > versions.yml
35- "${ task.process} ":
36- r-shinyngs: \$ (Rscript -e "library(shinyngs); cat(as.character(packageVersion('shinyngs')))")
37- END_VERSIONS
3833 """
3934
4035 stub:
@@ -43,10 +38,5 @@ process SHINYNGS_STATICDIFFERENTIAL {
4338 mkdir -p $prefix /png && mkdir $prefix /html
4439 touch $prefix /png/volcano.png
4540 touch $prefix /html/volcano.html
46-
47- cat <<-END_VERSIONS > versions.yml
48- "${ task.process} ":
49- r-shinyngs: \$ (Rscript -e "library(shinyngs); cat(as.character(packageVersion('shinyngs')))")
50- END_VERSIONS
5141 """
5242}
0 commit comments