We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be1981 commit 358c6ffCopy full SHA for 358c6ff
workflows/rnavar/main.nf
@@ -256,8 +256,8 @@ workflow RNAVAR {
256
ch_dbsnp_for_haplotypecaller = [[id:'null'], []]
257
ch_dbsnp_for_haplotypecaller_tbi = [[id:'null'], []]
258
} else {
259
- ch_dbsnp_for_haplotypecaller = ch_dbsnp
260
- 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] }
261
}
262
263
ch_haplotypecaller_vcf = Channel.empty()
0 commit comments