Skip to content

Commit

Permalink
why is multiqc not working?
Browse files Browse the repository at this point in the history
  • Loading branch information
ctuni committed Oct 28, 2024
1 parent f4dc19a commit d430a27
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 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)
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.ifEmpty([]))
ch_versions = ch_versions.mix(FASTQC.out.versions.first())

//
Expand All @@ -48,7 +48,6 @@ workflow SEQINSPECTOR {
PHYLOGENETIC_QC (
ch_samplesheet
)

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 d430a27

Please sign in to comment.