Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

also put DRAW into MultiQC report #148

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ sp:
fn: "*viz_depth_multiqc.png"
odgi_viz_uncalled:
fn: "*viz_uncalled_multiqc.png"
testing_name:
fn: "*draw.png"
ignore_images: false

# Make the custom content stuff come after the ODGI module output
Expand Down
2 changes: 1 addition & 1 deletion workflows/pangenome.nf
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ workflow PANGENOME {
ch_multiqc_files = ch_multiqc_files.mix(CUSTOM_DUMPSOFTWAREVERSIONS.out.mqc_yml.collect())
if (!params.communities) {
if (!params.wfmash_only) {
ch_multiqc_files = ch_multiqc_files.mix(PGGB.out.qc.map{return it[1..8]})
ch_multiqc_files = ch_multiqc_files.mix(PGGB.out.qc.map{return it[1..9]})
}
} else {
ch_multiqc_files = ch_multiqc_files.mix(ODGI_QC.out.qc.map{return it[1..8]})
Expand Down