Skip to content

Commit c0a3ead

Browse files
committed
fix output condition
1 parent 36bb01d commit c0a3ead

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)