Skip to content
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: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### `Fixed`

[#926](https://github.com/nf-core/ampliseq/pull/926) - Template update for nf-core/tools version 3.4.1
[#929](https://github.com/nf-core/ampliseq/pull/929) - A bug in a dependency of MultiQC can lead (rarely) to plot generation being omitted, without warning. In that case, the subsequent pipeline summary report failed previously, now it gracefully handles that issue.
[#929](https://github.com/nf-core/ampliseq/pull/929),[#935](https://github.com/nf-core/ampliseq/pull/935) - A bug in a dependency of MultiQC can lead (rarely) to plot generation being omitted, without warning. In that case, the subsequent pipeline summary report failed previously, now it gracefully handles that issue.

### `Dependencies`

Expand Down
2 changes: 1 addition & 1 deletion assets/report_template.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ if ( file.exists(params$mqc_plot) ) {
knitr::include_graphics(params$mqc_plot)
}
```
```{r, !isFALSE(params$mqc_plot), results='asis'}
```{r, eval = !isFALSE(params$mqc_plot), results='asis'}
if ( !file.exists(params$mqc_plot) ) {
cat(paste0("
_This plot is missing. That is only a visual mishap, all data can be found in the MultiQC report._
Expand Down
2 changes: 1 addition & 1 deletion nf-test.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ config {
profile "test"

// list of filenames or patterns that should be trigger a full test run
triggers 'nextflow.config', 'nf-test.config', 'conf/test.config', 'tests/nextflow.config', 'tests/.nftignore'
triggers 'nextflow.config', 'nf-test.config', 'conf/test.config', 'tests/nextflow.config', 'tests/.nftignore', 'bin/*', 'assets/schema_input.json', 'nextflow_schema.json', 'assets/report_template.Rmd'

// load the necessary plugins
plugins {
Expand Down