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:
parent
000f129dab
commit
120382f51d
1 changed files with 6 additions and 6 deletions
|
@ -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]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue