Skip to content
Snippets Groups Projects
Verified Commit 7db5eb02 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

ucsc: fix varible name :97

parent 9a690027
No related branches found
No related tags found
No related merge requests found
......@@ -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:
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment