Add missing directives [CW-7191]

This commit is contained in:
Natalia Garcia 2026-05-08 14:56:31 +00:00
parent 247f1aaf0b
commit d7337638f8

View File

@ -95,6 +95,8 @@ process preprocess_reads {
process makeReport { process makeReport {
label "wf_common" label "wf_common"
publishDir "${params.out_dir}", mode: 'copy', pattern: "wf-transcriptomes-report.html" publishDir "${params.out_dir}", mode: 'copy', pattern: "wf-transcriptomes-report.html"
cpus 1
memory 8.GB
input: input:
tuple val(metadata), path(stats, stageAs: "stats_*") tuple val(metadata), path(stats, stageAs: "stats_*")
path "versions/*" path "versions/*"
@ -135,6 +137,8 @@ process makeReport {
process publishResults { process publishResults {
label "wf_common" label "wf_common"
memory 2.GB
cpus 1
publishDir ( publishDir (
params.out_dir, params.out_dir,
mode: "copy", mode: "copy",
@ -144,6 +148,7 @@ process publishResults {
tuple path(fname), val(dirname) tuple path(fname), val(dirname)
output: output:
path fname path fname
script:
""" """
""" """
} }