Skip to content

Commit

Permalink
added output to multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
ctuni committed Oct 28, 2024
1 parent 033df6e commit c5edd67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/phylogenetic_qc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ workflow PHYLOGENETIC_QC{
params.kraken2_save_reads,
params.kraken2_save_readclassifications
)
KRAKEN2_KRAKEN2.out.report.map { meta, report -> [ report ] }.collect()
//KRAKEN2_KRAKEN2.out.report.map { meta, report -> [ report ] }.collect()

//
// MODULE: krona plot the kraken2 reports
//
KRONA_KTUPDATETAXONOMY()
KRONA_KTIMPORTTAXONOMY (
KRAKEN2_KRAKEN2.out.report.map { meta, report -> [ report ] }.collect(),
KRAKEN2_KRAKEN2.out.report,
KRONA_KTUPDATETAXONOMY.out.db
)

Expand Down
6 changes: 4 additions & 2 deletions workflows/seqinspector.nf
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ workflow SEQINSPECTOR {
FASTQC (
ch_samplesheet
)
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip)
ch_versions = ch_versions.mix(FASTQC.out.versions.first())

//
// SUBWORKFLOW: Run kraken2 and produce krona plots
Expand All @@ -49,6 +47,10 @@ workflow SEQINSPECTOR {
ch_samplesheet
)

ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip).mix(PHYLOGENETIC_QC.out.kraken2_report)
ch_multiqc_files.view()
ch_versions = ch_versions.mix(FASTQC.out.versions.first())

//
// Collate and save software versions
//
Expand Down

0 comments on commit c5edd67

Please sign in to comment.