File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
1818### Fixed
1919
20+ - [ #870 ] ( https://github.com/nf-core/sarek/pull/870 ) - Fix output for locally realigned reads from haplotypecaller
21+
2022### Deprecated
2123
2224### Removed
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ process {
119119 ]
120120 }
121121
122- if (!( params.tools && params.tools.split(',').contains('haplotypecaller') )) {
122+ if (params.tools && params.tools.split(',').contains('haplotypecaller')) {
123123 withName: 'NFCORE_SAREK:SAREK:BAM_VARIANT_CALLING_GERMLINE_ALL:BAM_VARIANT_CALLING_HAPLOTYPECALLER:BAM_MERGE_INDEX_SAMTOOLS:(MERGE_BAM|INDEX_MERGE_BAM)' {
124124 ext.prefix = { "${meta.id}.realigned" }
125125 publishDir = [
You can’t perform that action at this time.
0 commit comments