GWAS Catalog
Bases: GWASCatalogStepConfig
GWAS Catalog step.
Source code in src/otg/gwas_catalog.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
run()
Run GWAS Catalog ingestion step to extract GWASCatalog Study and StudyLocus tables.
Source code in src/otg/gwas_catalog.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
GWAS Catalog step requirements.
Attributes:
Name | Type | Description |
---|---|---|
catalog_studies_file | str | Raw GWAS catalog studies file. |
catalog_ancestry_file | str | Ancestry annotations file from GWAS Catalog. |
catalog_sumstats_lut | str | GWAS Catalog summary statistics lookup table. |
catalog_associations_file | str | Raw GWAS catalog associations file. |
variant_annotation_path | str | Input variant annotation path. |
ld_populations | list | List of populations to include. |
min_r2 | float | Minimum r2 to consider when considering variants within a window. |
catalog_studies_out | str | Output GWAS catalog studies path. |
catalog_associations_out | str | Output GWAS catalog associations path. |
Source code in src/otg/config.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
|