From 3f7b66baf48e604c88ddb275556f3db7ade3d538 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Tue, 19 Oct 2021 10:11:54 +0200 Subject: [PATCH] ucsc: fix output names :74 --- src/nf_modules/ucsc/main.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nf_modules/ucsc/main.nf b/src/nf_modules/ucsc/main.nf index c3b5ee05..7d77a075 100644 --- a/src/nf_modules/ucsc/main.nf +++ b/src/nf_modules/ucsc/main.nf @@ -71,7 +71,7 @@ process wig2_to_bedgraph2 { tuple val(file_id), path(wig_a), path(wig_b) output: - tuple val(file_id), path("${wig_a.simpleName}.wig"), path("${wig_b.simpleName}.wig"), emit: wig + tuple val(file_id), path("${wig_a.simpleName}.bg"), path("${wig_b.simpleName}.bg"), emit: bedgraph script: """ -- GitLab