We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4dc19a commit d430a27Copy full SHA for d430a27
workflows/seqinspector.nf
@@ -39,7 +39,7 @@ workflow SEQINSPECTOR {
39
FASTQC (
40
ch_samplesheet
41
)
42
- ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip)
+ ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.ifEmpty([]))
43
ch_versions = ch_versions.mix(FASTQC.out.versions.first())
44
45
//
@@ -48,7 +48,6 @@ workflow SEQINSPECTOR {
48
PHYLOGENETIC_QC (
49
50
51
-
52
ch_multiqc_files = ch_multiqc_files.mix(PHYLOGENETIC_QC.out.mqc.collect{it[1]}.ifEmpty([]))
53
ch_versions = ch_versions.mix(PHYLOGENETIC_QC.out.versions)
54
0 commit comments