Skip to content

Commit

Permalink
Merge pull request #749 from d4straub/allow-barplot-without-metadata
Browse files Browse the repository at this point in the history
Create barplot also without metadata
  • Loading branch information
d4straub authored Jun 17, 2024
2 parents 3ee08ca + d3a9dec commit eb7f0e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Changed`

- [#749](https://github.com/nf-core/ampliseq/pull/749) - Create barplot also when no metadata is given

### `Fixed`

- [#747](https://github.com/nf-core/ampliseq/pull/747) - Template update for nf-core/tools version 2.14.1
Expand Down
2 changes: 1 addition & 1 deletion workflows/ampliseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ workflow AMPLISEQ {
}

if (!params.skip_barplot) {
QIIME2_BARPLOT ( ch_metadata, ch_asv, ch_tax, '' )
QIIME2_BARPLOT ( ch_metadata.ifEmpty([]), ch_asv, ch_tax, '' )
ch_versions = ch_versions.mix( QIIME2_BARPLOT.out.versions )
}

Expand Down

0 comments on commit eb7f0e4

Please sign in to comment.