Skip to content

Commit

Permalink
Merge pull request #420 from genomic-medicine-sweden/issue418
Browse files Browse the repository at this point in the history
Remove duplicate entries from probands and upd_children in meta
  • Loading branch information
ramprasadn authored Sep 4, 2023
2 parents e25f1f2 + 3241886 commit ce52552
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 @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Make target bed file optional for WGS mode (Issue [#375](https://github.com/nf-core/raredisease/issues/375)) [#395](https://github.com/nf-core/raredisease/pull/395)
- Added constraints to block the pipeline from running CollectWgsMetrics on WES samples [#396](https://github.com/nf-core/raredisease/pull/396)
- Updated modules from nf-core [#412](https://github.com/nf-core/raredisease/pull/412)
- If present, remove duplicate entries in probands and upd_children in the meta. [#420](https://github.com/nf-core/raredisease/pull/420)

### `Updated`

Expand Down
4 changes: 2 additions & 2 deletions workflows/raredisease.nf
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,8 @@ def create_case_channel(List rows) {

case_info.father = father
case_info.mother = mother
case_info.probands = probands
case_info.upd_children = upd_children
case_info.probands = probands.unique()
case_info.upd_children = upd_children.unique()
case_info.id = rows[0].case_id

return case_info
Expand Down

0 comments on commit ce52552

Please sign in to comment.