Skip to content

Commit

Permalink
Fix bug with recalibrate-BAM (#179)
Browse files Browse the repository at this point in the history
* Properly skip recalibrate-BAM when not requested

* Update CHANGELOG
  • Loading branch information
yashpatel6 authored Mar 22, 2024
1 parent ef55365 commit b1ad3ea
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 @@ -19,6 +19,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
+ call-sSV: `6.0.0-rc.1` -> `6.1.0`
+ Allow downstream pipelines to fail gracefully without affecting failure of other pipelines
+ Allow waiting on multiple dependencies per pipeline before submission
### Fixed
+ Recalibrate-BAM no longer runs automatically when not requested

---

Expand Down
2 changes: 1 addition & 1 deletion module/recalibrate_BAM/workflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ workflow recalibrate_BAM {
}
.set{ input_ch_with_deletion_info }

if (params.override_recalibrate_bam) {
if (params.override_recalibrate_bam || !params.recalibrate_BAM.is_pipeline_enabled) {
modification_signal.until{ it == 'done' }
.mix(collected_input_ch)
.collect()
Expand Down

0 comments on commit b1ad3ea

Please sign in to comment.