Merge branch 'CW-7191' into 'dev'

Add missing directives [CW-7191]

Closes CW-7191

See merge request epi2melabs/workflows/wf-transcriptomes!240
This commit is contained in:
Natalia Garcia 2026-05-08 14:56:31 +00:00
commit 0eb808b605

View File

@ -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:
"""
"""
}