1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-14 07:03:09 +00:00

refactor: make metaphlan3 run in workflow

This commit is contained in:
Moritz E. Beber 2022-03-18 20:50:18 +01:00
parent 69db920610
commit a425a322f2
3 changed files with 8 additions and 4 deletions

View file

@ -71,6 +71,9 @@ params {
// kraken2 // kraken2
run_kraken2 = false run_kraken2 = false
// metaphlan3
run_metaphlan3 = false
} }
// Load base.config by default for all pipelines // Load base.config by default for all pipelines

View file

@ -31,9 +31,9 @@ workflow INPUT_CHECK {
.set { fasta } .set { fasta }
emit: emit:
fastq // channel: [ val(meta), [ reads ] ] fastq = fastq ?: [] // channel: [ val(meta), [ reads ] ]
nanopore // channel: [ val(meta), [ reads ] ] nanopore = nanopore ?: [] // channel: [ val(meta), [ reads ] ]
fasta // channel: [ val(meta), fasta ] fasta = fasta ?: [] // channel: [ val(meta), fasta ]
versions = SAMPLESHEET_CHECK.out.versions // channel: [ versions.yml ] versions = SAMPLESHEET_CHECK.out.versions // channel: [ versions.yml ]
} }

View file

@ -165,9 +165,10 @@ workflow TAXPROFILER {
} }
ch_input_for_metaphlan3 = ch_input_for_profiling.metaphlan3 ch_input_for_metaphlan3 = ch_input_for_profiling.metaphlan3
.dump(tag: "input_metaphlan3")
.multiMap { .multiMap {
it -> it ->
reads: [ it[0] + it[2], it[1] ] reads: [it[0] + it[2], it[1][0]]
db: it[3] db: it[3]
} }