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

Fix input channels to kraken2

This commit is contained in:
James Fellows Yates 2022-03-26 06:45:16 +01:00
parent 000f129dab
commit 120382f51d

View file

@ -171,7 +171,7 @@ workflow TAXPROFILER {
[ temp_meta, it[1], db ]
}
.groupTuple(by: [0,2])
.dump(tag: "input for malt")
.dump(tag: "input_for_malt")
.multiMap {
it ->
reads: [ it[0], it[1].flatten() ]
@ -180,10 +180,10 @@ workflow TAXPROFILER {
// We can run Kraken2 one-by-one sample-wise
ch_input_for_kraken2 = ch_input_for_profiling.kraken2
.dump(tag: "input for kraken")
.dump(tag: "input_for_kraken")
.multiMap {
it ->
reads: [ it[0] + it[2], it[1] ]
reads: [ it[0] + it[2], it[1].flatten() ]
db: it[3]
}