Skip to content

Commit

Permalink
Merge pull request #1465 from asp8200/fix_subworkflow_BAM_SENTIEON_DEDUP
Browse files Browse the repository at this point in the history
Fix call to SENTIEON_DEDUP
  • Loading branch information
maxulysse authored Apr 15, 2024
2 parents 63bc017 + dd0176e commit aaf2151
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Balgattjåhkkå is the other top peak (over 2k m) in the Pårte massif, the othe
- [#1422](https://github.com/nf-core/sarek/pull/1422) - Fix `Cannot serialize context map` warning
- [#1462](https://github.com/nf-core/sarek/pull/1462) - Fix ascat input channels
- [#1463](https://github.com/nf-core/sarek/pull/1463) - Add `spark` profile to all gatk4spark tests
- [#1465](https://github.com/nf-core/sarek/pull/1465) - Fix input channels for `SENTIEON_DEDUP`

### Removed

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/bam_sentieon_dedup/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ workflow BAM_SENTIEON_DEDUP {
bam = bam.map{ meta, bam -> [ meta - meta.subMap('data_type'), bam ] }
bai = bai.map{ meta, bai -> [ meta - meta.subMap('data_type'), bai ] }
bam_bai = bam.join(bai, failOnMismatch:true, failOnDuplicate:true)
SENTIEON_DEDUP(bam_bai, fasta.map{fa -> [[:], fa]}, fasta_fai.map{fai -> [[:], fai]})
SENTIEON_DEDUP(bam_bai, fasta, fasta_fai)

// Join with the crai file
cram = SENTIEON_DEDUP.out.cram.join(SENTIEON_DEDUP.out.crai, failOnDuplicate: true, failOnMismatch: true)
Expand Down

0 comments on commit aaf2151

Please sign in to comment.