Skip to content

Commit

Permalink
Merge pull request #870 from maxulysse/dev_ultima
Browse files Browse the repository at this point in the history
fix bam output for haplotypecaller
  • Loading branch information
maxulysse authored Nov 25, 2022
2 parents 36bb01d + 77afdeb commit 93138f6
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 @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- [#870](https://github.com/nf-core/sarek/pull/870) - Fix output for locally realigned reads from haplotypecaller

### Deprecated

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

if (!(params.tools && params.tools.split(',').contains('haplotypecaller'))) {
if (params.tools && params.tools.split(',').contains('haplotypecaller')) {
withName: 'NFCORE_SAREK:SAREK:BAM_VARIANT_CALLING_GERMLINE_ALL:BAM_VARIANT_CALLING_HAPLOTYPECALLER:BAM_MERGE_INDEX_SAMTOOLS:(MERGE_BAM|INDEX_MERGE_BAM)' {
ext.prefix = { "${meta.id}.realigned" }
publishDir = [
Expand Down

0 comments on commit 93138f6

Please sign in to comment.