Skip to content

Commit 93138f6

Browse files
authored
Merge pull request #870 from maxulysse/dev_ultima
fix bam output for haplotypecaller
2 parents 36bb01d + 77afdeb commit 93138f6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

conf/modules/haplotypecaller.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 = [

0 commit comments

Comments
 (0)