Skip to content

Commit

Permalink
Merge pull request #149 from nf-core/fix/multiqc
Browse files Browse the repository at this point in the history
another MultiQC fix
  • Loading branch information
subwaystation authored Aug 23, 2023
2 parents c06ddc5 + 9eafdf3 commit b2cd62d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion subworkflows/local/odgi_qc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ workflow ODGI_QC {
ch_graph_qc = ch_graph_qc.join(ODGI_VIZ_UNCALLED.out.png.map{meta, png -> [ [ id: meta.id.replaceFirst(".gfaffix.*", "") ], png ]})
ch_graph_qc = ch_graph_qc.join(ODGI_DRAW_MULTIQC.out.png.map{meta, png -> [ [ id: meta.id.replaceFirst(".gfaffix.*", "") ], png ]})
} else {
ch_graph_qc = ODGI_STATS.out.yaml.map{meta, yaml -> [ [ id: meta.id.replaceFirst(".seqwish", ".gfaffix") ], yaml ]}.groupTuple(by:0, size:2).map{meta, yamls -> [ meta, yamls[0], yamls[1] ]}
ch_graph_qc = ODGI_STATS.out.yaml
ch_graph_qc = ch_graph_qc.join(ODGI_VIZ_COLOR.out.png.map{meta, png -> [ [ id: meta.id.replaceFirst(".viz", "") ], png ]})
ch_graph_qc = ch_graph_qc.join(ODGI_VIZ_POS.out.png.map{meta, png -> [ [ id: meta.id.replaceFirst(".viz_pos", "") ], png ]})
ch_graph_qc = ch_graph_qc.join(ODGI_VIZ_DEPTH.out.png.map{meta, png -> [ [ id: meta.id.replaceFirst(".viz_depth", "") ], png ]})
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..9]})
ch_multiqc_files = ch_multiqc_files.mix(PGGB.out.qc.map{return it[1..8]})
}
} else {
ch_multiqc_files = ch_multiqc_files.mix(ODGI_QC.out.qc.map{return it[1..8]})
Expand Down

0 comments on commit b2cd62d

Please sign in to comment.