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

kb: fix cardinality for split() step

parent 3a878b65
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ workflow count {
.set{ whitelist_optional }
switch(params.kb_protocol) {
case "marsseq":
split(fastq, config)
split(fastq, config.collect())
kb_marseq(index.collect(), split.out.fastq, transcript_to_gene.collect(), whitelist_optional.collect())
kb_marseq.out.counts.set{res_counts}
kb_marseq.out.report.set{res_report}
......@@ -280,7 +280,7 @@ workflow count_velocity {
.set{ whitelist_optional }
switch(params.kb_protocol) {
case "marsseq":
split(fastq, config)
split(fastq, config.collect())
velocity_marseq(index.collect(), split.out.fastq, transcript_to_gene.collect(), whitelist_optional.collect())
velocity_marseq.out.counts.set{res_counts}
velocity_marseq.out.report.set{res_report}
......
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