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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Added`

1. Added `Stranger` annotation of `ExpansionHunter` output in the repeat expansion workflow.

### `Changes`

1. Changed from `delly_call` to `delly_sr`. Delly v2.6.0
Expand Down
4 changes: 4 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,10 @@ process {
ext.tabix = true
}

withName: "^.*BAM_REPEAT_ESTIMATION_EXPANSIONHUNTER:STRANGER\$" {
ext.prefix = { "${meta.id}.stranger" }
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CONCAT OUTPUTS
Expand Down
2 changes: 2 additions & 0 deletions docs/CITATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@

- [smoove](https://github.com/brentp/smoove)

- [Stranger](https://github.com/Clinical-Genomics/stranger)

- [svync](https://github.com/nvnieuwk/svync)

- [Tabix](https://academic.oup.com/bioinformatics/article/27/5/718/262743)
Expand Down
2 changes: 1 addition & 1 deletion docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ RRE calling runs all selected callers individually and merges the calls after. O

</details>

There are a number of regions in the human genome consisting of repetitions of short unit sequence (commonly a trimer). Such repeat regions can expand to a size much larger than the read length and thereby cause a disease. Fragile X Syndrome, ALS, and Huntington's Disease are well known examples. [ExpansionHunter](https://github.com/Illumina/ExpansionHunter) aims to estimate sizes of such repeats by performing a targeted search through a BAM/CRAM file for reads that span, flank, and are fully contained in each repeat.
There are a number of regions in the human genome consisting of repetitions of short unit sequence (commonly a trimer). Such repeat regions can expand to a size much larger than the read length and thereby cause a disease. Fragile X Syndrome, ALS, and Huntington's Disease are well known examples. [ExpansionHunter](https://github.com/Illumina/ExpansionHunter) aims to estimate sizes of such repeats by performing a targeted search through a BAM/CRAM file for reads that span, flank, and are fully contained in each repeat. ExpansionHunter's output is then annotated with [Stranger](https://github.com/Clinical-Genomics/stranger), which attaches pathogenicity classification (`STR_STATUS`, normal/pathologic thresholds) from the variant catalog.

### SV annotation

Expand Down
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@
"git_sha": "fdcc3976e728b5d6ffc3f15979905829531e6072",
"installed_by": ["modules"]
},
"stranger": {
"branch": "master",
"git_sha": "90e0aedba7e6b6cd6a0a7edc612c3f54f0caa663",
"installed_by": ["modules"]
},
"strvctvre/strvctvre": {
"branch": "master",
"git_sha": "fdcc3976e728b5d6ffc3f15979905829531e6072",
Expand Down
11 changes: 11 additions & 0 deletions modules/nf-core/stranger/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 51 additions & 0 deletions modules/nf-core/stranger/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

106 changes: 106 additions & 0 deletions modules/nf-core/stranger/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

82 changes: 82 additions & 0 deletions modules/nf-core/stranger/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading