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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed conda declaration in the add_varcallername_to_bed module [#733](https://github.com/nf-core/raredisease/pull/733)
- Fixed CADD annotation to support chr prefix [#745](https://github.com/nf-core/raredisease/pull/745)
- Fixed mismatch between VCF and ROH calls when analysing multiple samples [#755](https://github.com/nf-core/raredisease/pull/755)
- Fixed pipeline to run variant calling even with bait_padding set to 0 [#757](https://github.com/nf-core/raredisease/pull/757)

### Parameters

Expand Down
2 changes: 1 addition & 1 deletion conf/modules/prepare_references.config
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ process {
}

withName: '.*PREPARE_REFERENCES:BEDTOOLS_PAD_TARGET_BED' {
ext.when = { params.target_bed && params.bait_padding > 0 }
ext.when = { params.target_bed }
ext.prefix = { "${meta.id}_pad${params.bait_padding}" }
ext.args = { "-b ${params.bait_padding}" }
}
Expand Down