Skip to content

Commit

Permalink
this adjusts the dbsnp channel mapping in variant_calling_germline_al…
Browse files Browse the repository at this point in the history
…l to match variant_calling_sentieon_dnascope. null values are handled appropriately this way
  • Loading branch information
cmatKhan committed Aug 21, 2024
1 parent c592225 commit c9a55b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/bam_variant_calling_germline_all/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ workflow BAM_VARIANT_CALLING_GERMLINE_ALL {
fasta,
fasta_fai,
dict,
dbsnp.map{ it -> [[id:it[0].baseName], it] },
dbsnp_tbi.map{ it -> [[id:it[0].baseName], it] },
dbsnp.map{it -> [[:], it]},
dbsnp_tbi.map{it -> [[:], it]},
intervals)

vcf_haplotypecaller = BAM_VARIANT_CALLING_HAPLOTYPECALLER.out.vcf
Expand Down

0 comments on commit c9a55b8

Please sign in to comment.