Skip to content

Commit

Permalink
Merge branch 'CW-2580-overwrites' into 'dev'
Browse files Browse the repository at this point in the history
CW-2580-overwrites

Closes CW-2580

See merge request epi2melabs/workflows/wf-bacterial-genomes!86
  • Loading branch information
mattdmem committed Aug 15, 2023
2 parents 9ab3396 + e8a4ce5 commit cadba0f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
### Fixed
- Overwrites in Nextflow config implemented incorrectly

## [v0.3.2]
### Fixed
- Edge case where medaka variant output is unsorted and causes medaka annotate to exit
Expand Down
6 changes: 3 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -148,17 +148,17 @@ profiles {
timeline {
enabled = true
file = "${params.out_dir}/execution/timeline.html"
timeline.overwrite = true
overwrite = true
}
report {
enabled = true
file = "${params.out_dir}/execution/report.html"
report.overwrite = true
overwrite = true
}
trace {
enabled = true
file = "${params.out_dir}/execution/trace.txt"
trace.overwrite = true
overwrite = true
}

env {
Expand Down

0 comments on commit cadba0f

Please sign in to comment.