From b725862d8d2ff2b9486d95e7450e9ef68d0c0dc3 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Mon, 22 Feb 2021 09:34:24 +0100 Subject: [PATCH] bwa: fix report name --- src/nf_modules/bwa/main.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nf_modules/bwa/main.nf b/src/nf_modules/bwa/main.nf index e97f218a..8f395a60 100644 --- a/src/nf_modules/bwa/main.nf +++ b/src/nf_modules/bwa/main.nf @@ -32,7 +32,7 @@ process mapping_fastq { output: tuple val(file_id), path("*.bam"), emit: bam - tuple val(file_id), path("${pair_id}_bwa_report.txt"), emit: report + tuple val(file_id), path("${file_id}_bwa_report.txt"), emit: report script: """ -- GitLab