Skip to content

Commit

Permalink
Merge pull request #295 from louperelo/prokka_mqc
Browse files Browse the repository at this point in the history
add Prokka to MultiQC
  • Loading branch information
louperelo committed Jul 19, 2023
2 parents e46519a + 74b59d0 commit c61ea09
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [#290](https://github.com/nf-core/funcscan/pull/290) Merged pipeline template of nf-core/tools version 2.9, updated references. (by @jfy133)

- [#295](https://github.com/nf-core/funcscan/pull/295) Add Prokka to MultiQC output (by @louperelo)

### `Fixed`

- [#296](https://github.com/nf-core/funcscan/pull/296) Fixed empty output when saving prodigal annotations. (reported by @louperelo, fix by @jasmezz)

### `Dependencies`

### `Deprecated`
Expand Down
3 changes: 3 additions & 0 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ export_plots: true
custom_logo: "nf-core-funcscan_logo_flat_light.png"
custom_logo_url: https://nf-co.re/funcscan
custom_logo_title: "nf-core/funcscan"

## Tool specific configuration
prokka_fn_snames: True
1 change: 1 addition & 0 deletions workflows/funcscan.nf
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ workflow FUNCSCAN {
ch_multiqc_files = ch_multiqc_files.mix(ch_workflow_summary.collectFile(name: 'workflow_summary_mqc.yaml'))
ch_multiqc_files = ch_multiqc_files.mix(ch_methods_description.collectFile(name: 'methods_description_mqc.yaml'))
ch_multiqc_files = ch_multiqc_files.mix(CUSTOM_DUMPSOFTWAREVERSIONS.out.mqc_yml.collect())
if(params.annotation_tool=='prokka'){ch_multiqc_files = ch_multiqc_files.mix( PROKKA.out.txt.collect{it[1]}.ifEmpty([])) }

MULTIQC (
ch_multiqc_files.collect(),
Expand Down

0 comments on commit c61ea09

Please sign in to comment.