Skip to content

Commit

Permalink
fix: variant annotation schema
Browse files Browse the repository at this point in the history
  • Loading branch information
d0choa committed Dec 7, 2023
1 parent 2a297bd commit f208d60
Showing 1 changed file with 64 additions and 58 deletions.
122 changes: 64 additions & 58 deletions src/otg/assets/schemas/variant_annotation.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,65 +93,71 @@
},
{
"name": "inSilicoPredictors",
"type": "struct",
"fields": [
{
"name": "cadd",
"type": "struct",
"fields": [
{
"name": "phred",
"type": "float",
"nullable": true,
"metadata": {}
},
{
"name": "raw",
"type": "float",
"nullable": true,
"metadata": {}
"nullable": false,
"metadata": {},
"type": {
"type": "struct",
"fields": [
{
"name": "cadd",
"nullable": true,
"metadata": {},
"type": {
"type": "struct",
"fields": [
{
"name": "raw",
"type": "float",
"nullable": true,
"metadata": {}
},
{
"name": "phred",
"type": "float",
"nullable": true,
"metadata": {}
}
]
}
],
"containsNull": true
},
{
"name": "revelMax",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "spliceai_ds_max",
"type": "float",
"nullable": true,
"metadata": {}
},
{
"name": "pangolin_largest_ds",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "phylop",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "siftMax",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "polypheMax",
"type": "double",
"nullable": true,
"metadata": {}
}
],
"containsNull": true
},
{
"name": "revelMax",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "spliceaiDsMax",
"type": "float",
"nullable": true,
"metadata": {}
},
{
"name": "pangolinLargestDs",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "phylop",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "siftMax",
"type": "double",
"nullable": true,
"metadata": {}
},
{
"name": "polypheMax",
"type": "double",
"nullable": true,
"metadata": {}
}
]
}
},
{
"name": "vep",
Expand Down

0 comments on commit f208d60

Please sign in to comment.