Colocalisation
Bases: ColocalisationStepConfig
Colocalisation step.
This workflow runs colocalization analyses that assess the degree to which independent signals of the association share the same causal variant in a region of the genome, typically limited by linkage disequilibrium (LD).
Source code in src/otg/colocalisation.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
run()
Run colocalisation step.
Source code in src/otg/colocalisation.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
Colocalisation step requirements.
Attributes:
Name | Type | Description |
---|---|---|
study_locus_path | DictConfig | Input Study-locus path. |
coloc_path | DictConfig | Output Colocalisation path. |
priorc1 | float | Prior on variant being causal for trait 1. |
priorc2 | float | Prior on variant being causal for trait 2. |
priorc12 | float | Prior on variant being causal for traits 1 and 2. |
Source code in src/otg/config.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|