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

uscs: fix typo in input definition :19

parent 5acf2c2d
Branches
No related tags found
No related merge requests found
...@@ -16,8 +16,8 @@ process bedgraph_to_bigwig { ...@@ -16,8 +16,8 @@ process bedgraph_to_bigwig {
} }
input: input:
tuple val(file_id) path(bg) tuple val(file_id), path(bg)
tuple val(file_id) path(bed) tuple val(file_id), path(bed)
output: output:
tuple val(file_id), path("*.bw"), emit: bw tuple val(file_id), path("*.bw"), emit: bw
...@@ -125,7 +125,7 @@ process bigwig_to_wig { ...@@ -125,7 +125,7 @@ process bigwig_to_wig {
} }
input: input:
tuple val(file_id) path(bw) tuple val(file_id), path(bw)
output: output:
tuple val(file_id), path("*.wig"), emit: wig tuple val(file_id), path("*.wig"), emit: wig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment