Skip to content

Commit

Permalink
removed kraken2 output from multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
ctuni committed Oct 28, 2024
1 parent 3e0d357 commit 75a8e33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/seqinspector.nf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ workflow SEQINSPECTOR {
FASTQC (
ch_samplesheet
)
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip)
ch_versions = ch_versions.mix(FASTQC.out.versions.first())

//
Expand All @@ -48,7 +48,7 @@ workflow SEQINSPECTOR {
PHYLOGENETIC_QC (
ch_samplesheet
)
ch_multiqc_files = ch_multiqc_files.mix(PHYLOGENETIC_QC.out.mqc.collect{it[1]}.ifEmpty([]))
//ch_multiqc_files = ch_multiqc_files.mix(PHYLOGENETIC_QC.out.mqc.collect{it[1]}.ifEmpty([]))
ch_versions = ch_versions.mix(PHYLOGENETIC_QC.out.versions)


Expand Down

0 comments on commit 75a8e33

Please sign in to comment.