Skip to content

Commit

Permalink
Merge branch 'dev' into controlfreec_bug
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse authored Sep 7, 2023
2 parents 29eb2d6 + c695d25 commit 58457e8
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 @@ -59,6 +59,7 @@ Rapaselet is a delta formed by the Rapaätno river between the Bielloriehppe mas
- [#1204](https://github.com/nf-core/sarek/pull/1204) - Fix issue with nf-validation: lane can be a requirement of bam too now
- [#1205](https://github.com/nf-core/sarek/pull/1205) - Less tests triggered
- [#1214](https://github.com/nf-core/sarek/pull/1214) - Don't pass in intervals file to ControlFREEC for WGS analysis
- [#1215](https://github.com/nf-core/sarek/pull/1215) - Fix `meta.id` for mutect2 tumor_only subworkflows

### Dependencies

Expand Down
4 changes: 2 additions & 2 deletions subworkflows/local/bam_variant_calling_tumor_only_all/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ workflow BAM_VARIANT_CALLING_TUMOR_ONLY_ALL {
// joint_mutect2 mode needs different meta.map than regular mode
cram.map{ meta, cram, crai ->
joint_mutect2 ?
[ meta + [ id:meta.patient ] - meta.subMap('sample', 'status', 'num_intervals', 'data_type', 'patient') , cram, crai ] :
[ meta - meta.subMap('sample', 'status', 'num_intervals', 'data_type'), cram, crai ]
[ meta + [ id:meta.patient ] - meta.subMap('sample', 'status', 'data_type', 'patient') , cram, crai ] :
[ meta + [ id:meta.sample ] - meta.subMap('sample', 'status', 'data_type'), cram, crai ]
},
// Remap channel to match module/subworkflow
fasta.map{ it -> [ [ id:'fasta' ], it ] },
Expand Down

0 comments on commit 58457e8

Please sign in to comment.