From 7db5eb024e7afea9c1198d48945ddf1518f7ae93 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Fri, 8 Oct 2021 15:02:32 +0200 Subject: [PATCH] ucsc: fix varible name :97 --- src/nf_modules/ucsc/main.nf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nf_modules/ucsc/main.nf b/src/nf_modules/ucsc/main.nf index e3076ebd..0d930492 100644 --- a/src/nf_modules/ucsc/main.nf +++ b/src/nf_modules/ucsc/main.nf @@ -94,7 +94,7 @@ process wig_to_bigwig { tuple val(file_id), path(w) output: - tuple val(file_id), path("${bw.simpleName}.bw"), emit: bw + tuple val(file_id), path("${w.simpleName}.bw"), emit: bw script: """ @@ -116,7 +116,7 @@ process wig2_to_bigwig2 { tuple val(file_id), path(w_a), path(w_b) output: - tuple val(file_id), path("${bw_a.simpleName}.bw"), path("${bw_b.simpleName}.bw"), emit: bw + tuple val(file_id), path("${w_a.simpleName}.bw"), path("${w_b.simpleName}.bw"), emit: bw script: """ -- GitLab