Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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