Skip to content

Commit

Permalink
Merge pull request #1628 from cmatKhan/fix_dbsnp_if_null
Browse files Browse the repository at this point in the history
Allow dbsnp if null in germline variant calling
  • Loading branch information
cmatKhan authored Aug 23, 2024
2 parents 8fcc094 + e0cbf05 commit 7871b03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- [1623](https://github.com/nf-core/sarek/pull/1623) - Update docs to clarify vep cache folder organisation
- [1628](https://github.com/nf-core/sarek/pull/1628) - Fix dbsnp channel mapping in germline variant calling subworkflow

### Removed

Expand Down
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 7871b03

Please sign in to comment.