File tree Expand file tree Collapse file tree
subworkflows/local/call_sv_manta Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5959
6060### ` Fixed `
6161
62+ - Ensure deterministic sample ordering in Manta SV output by sorting BAM/BAI channel inputs [ #815 ] ( https://github.com/nf-core/raredisease/pull/815 )
6263- Fixed inconsistencies in JSON schema [ #714 ] ( https://github.com/nf-core/raredisease/pull/714 )
6364- Fixed conda declaration in the add_varcallername_to_bed module [ #733 ] ( https://github.com/nf-core/raredisease/pull/733 )
6465- Fixed CADD annotation to support chr prefix [ #745 ] ( https://github.com/nf-core/raredisease/pull/745 )
Original file line number Diff line number Diff line change @@ -16,11 +16,13 @@ workflow CALL_SV_MANTA {
1616 val_analysis_type // string: "wes", "wgs", or "mito"
1717
1818 main :
19- ch_bam. collect{_meta, bam -> bam}
19+ ch_bam. map{ _meta, bam -> bam }
20+ .collect(sort : { a , b -> a. getName() <=> b. getName() })
2021 .toList()
2122 .set { bam_file_list }
2223
23- ch_bai. collect{_meta, bai -> bai}
24+ ch_bai. map{ _meta, bai -> bai }
25+ .collect(sort : { a , b -> a. getName() <=> b. getName() })
2426 .toList()
2527 .set { bai_file_list }
2628
You can’t perform that action at this time.
0 commit comments