From 15bb2a0ac22ad9ebb7af7fcca17ba3318bd6613a Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Tue, 16 Mar 2021 17:28:26 +0100 Subject: [PATCH] samtools: fix input for multiqc process --- src/nf_modules/samtools/main.nf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nf_modules/samtools/main.nf b/src/nf_modules/samtools/main.nf index 3e659ce8..8143a814 100644 --- a/src/nf_modules/samtools/main.nf +++ b/src/nf_modules/samtools/main.nf @@ -205,7 +205,7 @@ process flagstat_2_multiqc { tag "$file_id" input: - tuple val(file_id), path(tsv), emit: tsv + tuple val(file_id), path(tsv) output: path "*.txt" , emit: report @@ -218,7 +218,7 @@ process idxstat_2_multiqc { tag "$file_id" input: - tuple val(file_id), path(tsv), emit: tsv + tuple val(file_id), path(tsv) output: path "*.txt", emit: report -- GitLab