Skip to content

Commit

Permalink
Merge pull request #101 from ga4gh-beacon/genomicVariations_add-patho…
Browse files Browse the repository at this point in the history
…genicity-predictions

Genomic variations add pathogenicity predictions
  • Loading branch information
costero-e authored Jul 17, 2023
2 parents e7d7962 + 56c4a40 commit 4ce7b1d
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,13 @@
},
"PopulationFrequency": {
"properties": {
"allele": {
"description": "Specific allele associated with the frequency.",
"examples": [
"A"
],
"type": "string"
},
"alleleFrequency": {
"description": "Allele frequency between 0 and 1.",
"examples": [
Expand Down Expand Up @@ -512,6 +519,12 @@
},
"type": "array"
},
"pathogenicityPredictions": {
"items": {
"$ref": "#/definitions/PhenoClinicEffect"
},
"type": "array"
},
"phenotypicEffects": {
"items": {
"$ref": "#/definitions/PhenoClinicEffect"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,17 @@
"label": "hypercholesterolemia, autosomal dominant, 3"
}
}
],
"pathogenicityPredictions": [
{
"annotatedWith": {
"toolName": "Combined Annotation-Dependent Depletion (CADD)",
"version": "v1.6"
},
"effect": {
"id": "phred_score:0.381"
}
}
]
},
"variation": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@ definitions:
description: Allele frequency between 0 and 1.
examples:
- 3.186e-05
allele:
type: string
description: Specific allele associated with the frequency.
examples:
- A
required:
- population
- alleleFrequency
Expand Down Expand Up @@ -412,6 +417,10 @@ definitions:
type: array
items:
$ref: '#/definitions/PhenoClinicEffect'
pathogenicityPredictions:
type: array
items:
$ref: '#/definitions/PhenoClinicEffect'
SoftwareTool:
type: object
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ variantLevelData:
id: MONDO:0011369
label: hypercholesterolemia, autosomal dominant, 3
clinicalRelevance: uncertain significance
pathogenicityPredictions:
- annotatedWith:
version: v1.6
toolName: Combined Annotation-Dependent Depletion (CADD)
effect:
id: phred_score:0.381
frequencyInPopulations:
- source: gnomaD Genomes
sourceReference: https://gnomad.broadinstitute.org/
Expand Down

0 comments on commit 4ce7b1d

Please sign in to comment.