Variants
gentropy.datasource.gnomad.variants.GnomADVariants
¶
GnomAD variants included in the GnomAD genomes dataset.
Source code in src/gentropy/datasource/gnomad/variants.py
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
__init__(gnomad_genomes_path: str = GnomadVariantConfig().gnomad_genomes_path, gnomad_variant_populations: list[VariantPopulation | str] = GnomadVariantConfig().gnomad_variant_populations, hash_threshold: int = VariantIndexConfig().hash_threshold)
¶
Initialize.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gnomad_genomes_path
|
str
|
Path to gnomAD genomes hail table. |
gnomad_genomes_path
|
gnomad_variant_populations
|
list[VariantPopulation | str]
|
List of populations to include. |
gnomad_variant_populations
|
hash_threshold
|
int
|
longer variant ids will be hashed. |
hash_threshold
|
All defaults are stored in GnomadVariantConfig.
Source code in src/gentropy/datasource/gnomad/variants.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|
as_variant_index() -> VariantIndex
¶
Generate variant annotation dataset from gnomAD.
Some relevant modifications to the original dataset are:
- The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
- Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
- Field names are converted to camel case to follow the convention.
Returns:
Name | Type | Description |
---|---|---|
VariantIndex |
VariantIndex
|
GnomaAD variants dataset. |
Source code in src/gentropy/datasource/gnomad/variants.py
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|