1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-10 22:13:08 +00:00

Fix output tuple for reads

This commit is contained in:
James Fellows Yates 2022-04-08 20:02:22 +02:00
parent 35cb6e042a
commit 8839fe22b8

View file

@ -149,7 +149,15 @@ workflow TAXPROFILER {
ch_reads_for_cat_branch.cat.dump(tag: "for_catting")
ch_reads_runmerged = CAT_FASTQ ( ch_reads_for_cat_branch.cat ).reads.mix( ch_reads_for_cat_branch.skip )
ch_reads_runmerged = CAT_FASTQ ( ch_reads_for_cat_branch.cat ).reads
.mix( ch_reads_for_cat_branch.skip )
.map {
meta, reads ->
[ meta, [ reads ].flatten() ]
}
ch_reads_runmerged.dump(tag: "ch_reads_runmerged" )
} else {
ch_reads_runmerged = ch_shortreads_filtered