From d7337638f833f5ee590072a57b0f1b0781955a95 Mon Sep 17 00:00:00 2001 From: Natalia Garcia Date: Fri, 8 May 2026 14:56:31 +0000 Subject: [PATCH] Add missing directives [CW-7191] --- main.nf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.nf b/main.nf index 5e12a10..676b9f7 100644 --- a/main.nf +++ b/main.nf @@ -95,6 +95,8 @@ process preprocess_reads { process makeReport { label "wf_common" publishDir "${params.out_dir}", mode: 'copy', pattern: "wf-transcriptomes-report.html" + cpus 1 + memory 8.GB input: tuple val(metadata), path(stats, stageAs: "stats_*") path "versions/*" @@ -135,6 +137,8 @@ process makeReport { process publishResults { label "wf_common" + memory 2.GB + cpus 1 publishDir ( params.out_dir, mode: "copy", @@ -144,6 +148,7 @@ process publishResults { tuple path(fname), val(dirname) output: path fname + script: """ """ }