Skip to content

Commit

Permalink
allow skip multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
ggabernet committed Jun 1, 2024
1 parent 4e1c52b commit affd98d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion workflows/airrflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,11 @@ workflow AIRRFLOW {
ch_report_logo.toList()
)
multiqc_report = MULTIQC.out.report.toList()
} else {
multiqc_report = Channel.empty()
}
emit:
multiqc_report = MULTIQC.out.report.toList() // channel: /path/to/multiqc_report.html
multiqc_report = multiqc_report // channel: /path/to/multiqc_report.html
versions = ch_versions // channel: [ path(versions.yml) ]
}

Expand Down

0 comments on commit affd98d

Please sign in to comment.