Skip to content

Commit

Permalink
fix dbsnp usage
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed May 31, 2024
1 parent 5be1981 commit 358c6ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/rnavar/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ workflow RNAVAR {
ch_dbsnp_for_haplotypecaller = [[id:'null'], []]
ch_dbsnp_for_haplotypecaller_tbi = [[id:'null'], []]
} else {
ch_dbsnp_for_haplotypecaller = ch_dbsnp
ch_dbsnp_for_haplotypecaller_tbi = ch_dbsnp_tbi
ch_dbsnp_for_haplotypecaller = ch_dbsnp.map{ vcf -> [[id:'dbsnp'], vcf] }
ch_dbsnp_for_haplotypecaller_tbi = ch_dbsnp_tbi.map{ tbi -> [[id:'dbsnp'], tbi] }
}

ch_haplotypecaller_vcf = Channel.empty()
Expand Down

0 comments on commit 358c6ff

Please sign in to comment.