1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 04:32:06 +00:00

Remove the flattening?

This commit is contained in:
James Fellows Yates 2022-04-08 13:44:52 +02:00
parent a634814d84
commit 6c14f2b230

View file

@ -67,7 +67,7 @@ workflow SHORTREAD_ADAPTERREMOVAL {
[meta_new, reads]
}
.groupTuple()
.map { meta, fastq -> [meta, [ fastq ].flatten()] }
.map { meta, fastq -> [meta, fastq] }
CAT_FASTQ(ch_concat_fastq)