From e7ba77d39555f62b7d62d44aac24e810f2be722e Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Sat, 20 Feb 2021 08:54:17 +0100 Subject: [PATCH] macs2: emit tuple with file_id --- src/nf_modules/macs2/main.nf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nf_modules/macs2/main.nf b/src/nf_modules/macs2/main.nf index 6570b0b9..0996cb13 100644 --- a/src/nf_modules/macs2/main.nf +++ b/src/nf_modules/macs2/main.nf @@ -46,9 +46,9 @@ process peak_calling_bg { tuple val(file_id), path(bg_ip), path(bg_control) output: - tuple val(file_id), path "*.narrowPeak", emit: peak - tuple val(file_id), path "*.bed", emit: summits - tuple val(file_id), path "*_report.txt", emit: report + tuple val(file_id), path("*.narrowPeak"), emit: peak + tuple val(file_id), path("*.bed"), emit: summits + tuple val(file_id), path("*_report.txt"), emit: report script: /* remove --nomodel option for real dataset */ -- GitLab