Variant annotation
Bases: Dataset
Dataset with variant-level annotations derived from GnomAD.
Source code in src/otg/dataset/variant_annotation.py
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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
|
filter_by_variant_df(df, cols)
Filter variant annotation dataset by a variant dataframe.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df | DataFrame | A dataframe of variants | required |
cols | List[str] | A list of columns to join on | required |
Returns:
Name | Type | Description |
---|---|---|
VariantAnnotation | VariantAnnotation | A filtered variant annotation dataset |
Source code in src/otg/dataset/variant_annotation.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
|
from_gnomad(gnomad_file, grch38_to_grch37_chain, populations)
classmethod
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.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gnomad_file | str | Path to | required |
grch38_to_grch37_chain | str | Path to chain file for liftover | required |
populations | list | List of populations to include in the dataset | required |
Returns:
Name | Type | Description |
---|---|---|
VariantAnnotation | VariantAnnotation | Variant annotation dataset |
Source code in src/otg/dataset/variant_annotation.py
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 129 130 131 132 133 134 135 136 137 138 139 140 141 |
|
get_distance_to_tss(filter_by, max_distance=500000)
Extracts variant to gene assignments for variants falling within a window of a gene's TSS.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filter_by | GeneIndex | A gene index to filter by. | required |
max_distance | int | The maximum distance from the TSS to consider. Defaults to 500_000. | 500000 |
Returns:
Name | Type | Description |
---|---|---|
V2G | V2G | variant to gene assignments with their distance to the TSS |
Source code in src/otg/dataset/variant_annotation.py
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
|
get_most_severe_vep_v2g(vep_consequences, filter_by)
Creates a dataset with variant to gene assignments based on VEP's predicted consequence on the transcript.
Optionally the trancript consequences can be reduced to the universe of a gene index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vep_consequences | DataFrame | A dataframe of VEP consequences | required |
filter_by | GeneIndex | A gene index to filter by. Defaults to None. | required |
Returns:
Name | Type | Description |
---|---|---|
V2G | V2G | High and medium severity variant to gene assignments |
Source code in src/otg/dataset/variant_annotation.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
|
get_plof_v2g(filter_by)
Creates a dataset with variant to gene assignments with a flag indicating if the variant is predicted to be a loss-of-function variant by the LOFTEE algorithm.
Optionally the trancript consequences can be reduced to the universe of a gene index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filter_by | GeneIndex | A gene index to filter by. | required |
Returns:
Name | Type | Description |
---|---|---|
V2G | V2G | variant to gene assignments from the LOFTEE algorithm |
Source code in src/otg/dataset/variant_annotation.py
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
|
get_polyphen_v2g(filter_by=None)
Creates a dataset with variant to gene assignments with a PolyPhen's predicted score on the transcript.
Polyphen informs about the probability that a substitution is damaging. Optionally the trancript consequences can be reduced to the universe of a gene index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filter_by | GeneIndex | A gene index to filter by. Defaults to None. | None |
Returns:
Name | Type | Description |
---|---|---|
V2G | V2G | variant to gene assignments with their polyphen scores |
Source code in src/otg/dataset/variant_annotation.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|
get_schema()
classmethod
Provides the schema for the VariantAnnotation dataset.
Source code in src/otg/dataset/variant_annotation.py
27 28 29 30 |
|
get_sift_v2g(filter_by)
Creates a dataset with variant to gene assignments with a SIFT's predicted score on the transcript.
SIFT informs about the probability that a substitution is tolerated so scores nearer zero are more likely to be deleterious. Optionally the trancript consequences can be reduced to the universe of a gene index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filter_by | GeneIndex | A gene index to filter by. | required |
Returns:
Name | Type | Description |
---|---|---|
V2G | V2G | variant to gene assignments with their SIFT scores |
Source code in src/otg/dataset/variant_annotation.py
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
|
get_transcript_consequence_df(filter_by=None)
Dataframe of exploded transcript consequences.
Optionally the trancript consequences can be reduced to the universe of a gene index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filter_by | GeneIndex | A gene index. Defaults to None. | None |
Returns:
Name | Type | Description |
---|---|---|
DataFrame | DataFrame | A dataframe exploded by transcript consequences with the columns variantId, chromosome, transcriptConsequence |
Source code in src/otg/dataset/variant_annotation.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
max_maf()
Maximum minor allele frequency accross all populations.
Returns:
Name | Type | Description |
---|---|---|
Column | Column | Maximum minor allele frequency accross all populations. |
Source code in src/otg/dataset/variant_annotation.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
|
Schema
root
|-- variantId: string (nullable = false)
|-- chromosome: string (nullable = false)
|-- position: integer (nullable = false)
|-- gnomad3VariantId: string (nullable = false)
|-- referenceAllele: string (nullable = false)
|-- alternateAllele: string (nullable = false)
|-- chromosomeB37: string (nullable = true)
|-- positionB37: integer (nullable = true)
|-- alleleType: string (nullable = true)
|-- rsIds: array (nullable = true)
| |-- element: string (containsNull = true)
|-- alleleFrequencies: array (nullable = false)
| |-- element: struct (containsNull = true)
| | |-- populationName: string (nullable = true)
| | |-- alleleFrequency: double (nullable = true)
|-- cadd: struct (nullable = true)
| |-- phred: float (nullable = true)
| |-- raw: float (nullable = true)
|-- vep: struct (nullable = false)
| |-- mostSevereConsequence: string (nullable = true)
| |-- transcriptConsequences: array (nullable = true)
| | |-- element: struct (containsNull = true)
| | | |-- aminoAcids: string (nullable = true)
| | | |-- consequenceTerms: array (nullable = true)
| | | | |-- element: string (containsNull = true)
| | | |-- geneId: string (nullable = true)
| | | |-- lof: string (nullable = true)
| | | |-- polyphenScore: double (nullable = true)
| | | |-- polyphenPrediction: string (nullable = true)
| | | |-- siftScore: double (nullable = true)
| | | |-- siftPrediction: string (nullable = true)