← Back to variant description
GeneBe API Showcase
This page demonstrates how to use the GeneBe API to query variant information. The API provides programmatic access to genomic annotations and variant data.
API presented here should be used for checking single variants. If you want to check many variants at once, please use other API endpoints that you will find in the documentation.
Documentation & Advanced Usage
• Complete API documentation:docs.genebe.net/docs/api/overview/
• Interactive endpoint tester:api.genebe.net/cloud/gb-api-doc/swagger-ui/
• Python client for pandas:pypi.org/project/genebe/
• Java CLI for VCF files:github.com/pstawinski/genebe-cli
• All tools documented at:docs.genebe.net
API Request Examples for Variant: 21-37232411-G-A (hg38)
Bash / cURL Example
bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=21&pos=37232411&ref=G&alt=A&genome=hg38&allGenes=true"API Response
json
{
"variants": [
{
"chr": "21",
"pos": 37232411,
"ref": "G",
"alt": "A",
"effect": "missense_variant",
"transcript": "NM_006052.2",
"consequences": [
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "NM_006052.2",
"protein_id": "NP_006043.1",
"transcript_support_level": null,
"aa_start": 158,
"aa_end": null,
"aa_length": 297,
"cds_start": 473,
"cds_end": null,
"cds_length": 894,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": "ENST00000309117.11",
"mane_plus": null,
"biotype": "protein_coding",
"feature": "NM_006052.2"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": true,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "ENST00000309117.11",
"protein_id": "ENSP00000311399.6",
"transcript_support_level": 1,
"aa_start": 158,
"aa_end": null,
"aa_length": 297,
"cds_start": 473,
"cds_end": null,
"cds_length": 894,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": "NM_006052.2",
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000309117.11"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "n.1292C>T",
"hgvs_p": null,
"transcript": "ENST00000399000.7",
"protein_id": null,
"transcript_support_level": 1,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000399000.7"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "n.564C>T",
"hgvs_p": null,
"transcript": "ENST00000488368.5",
"protein_id": null,
"transcript_support_level": 1,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000488368.5"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.593C>T",
"hgvs_p": "p.Thr198Met",
"transcript": "ENST00000942454.1",
"protein_id": "ENSP00000612513.1",
"transcript_support_level": null,
"aa_start": 198,
"aa_end": null,
"aa_length": 337,
"cds_start": 593,
"cds_end": null,
"cds_length": 1014,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000942454.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "ENST00000942455.1",
"protein_id": "ENSP00000612514.1",
"transcript_support_level": null,
"aa_start": 158,
"aa_end": null,
"aa_length": 323,
"cds_start": 473,
"cds_end": null,
"cds_length": 972,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000942455.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "ENST00000929123.1",
"protein_id": "ENSP00000599182.1",
"transcript_support_level": null,
"aa_start": 158,
"aa_end": null,
"aa_length": 319,
"cds_start": 473,
"cds_end": null,
"cds_length": 960,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000929123.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.467C>T",
"hgvs_p": "p.Thr156Met",
"transcript": "ENST00000875989.1",
"protein_id": "ENSP00000546048.1",
"transcript_support_level": null,
"aa_start": 156,
"aa_end": null,
"aa_length": 295,
"cds_start": 467,
"cds_end": null,
"cds_length": 888,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875989.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "ENST00000875986.1",
"protein_id": "ENSP00000546046.1",
"transcript_support_level": null,
"aa_start": 158,
"aa_end": null,
"aa_length": 294,
"cds_start": 473,
"cds_end": null,
"cds_length": 885,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875986.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "ENST00000929122.1",
"protein_id": "ENSP00000599181.1",
"transcript_support_level": null,
"aa_start": 158,
"aa_end": null,
"aa_length": 290,
"cds_start": 473,
"cds_end": null,
"cds_length": 873,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000929122.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.437C>T",
"hgvs_p": "p.Thr146Met",
"transcript": "ENST00000875982.1",
"protein_id": "ENSP00000546041.1",
"transcript_support_level": null,
"aa_start": 146,
"aa_end": null,
"aa_length": 285,
"cds_start": 437,
"cds_end": null,
"cds_length": 858,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875982.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met",
"transcript": "ENST00000875991.1",
"protein_id": "ENSP00000546051.1",
"transcript_support_level": null,
"aa_start": 158,
"aa_end": null,
"aa_length": 275,
"cds_start": 473,
"cds_end": null,
"cds_length": 828,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875991.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.329C>T",
"hgvs_p": "p.Thr110Met",
"transcript": "ENST00000942458.1",
"protein_id": "ENSP00000612517.1",
"transcript_support_level": null,
"aa_start": 110,
"aa_end": null,
"aa_length": 275,
"cds_start": 329,
"cds_end": null,
"cds_length": 828,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000942458.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.392C>T",
"hgvs_p": "p.Thr131Met",
"transcript": "NM_001331022.1",
"protein_id": "NP_001317951.1",
"transcript_support_level": null,
"aa_start": 131,
"aa_end": null,
"aa_length": 270,
"cds_start": 392,
"cds_end": null,
"cds_length": 813,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "NM_001331022.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.392C>T",
"hgvs_p": "p.Thr131Met",
"transcript": "ENST00000476950.5",
"protein_id": "ENSP00000419496.1",
"transcript_support_level": 2,
"aa_start": 131,
"aa_end": null,
"aa_length": 270,
"cds_start": 392,
"cds_end": null,
"cds_length": 813,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000476950.5"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.386C>T",
"hgvs_p": "p.Thr129Met",
"transcript": "ENST00000942456.1",
"protein_id": "ENSP00000612515.1",
"transcript_support_level": null,
"aa_start": 129,
"aa_end": null,
"aa_length": 268,
"cds_start": 386,
"cds_end": null,
"cds_length": 807,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000942456.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.356C>T",
"hgvs_p": "p.Thr119Met",
"transcript": "ENST00000875984.1",
"protein_id": "ENSP00000546043.1",
"transcript_support_level": null,
"aa_start": 119,
"aa_end": null,
"aa_length": 258,
"cds_start": 356,
"cds_end": null,
"cds_length": 777,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875984.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.329C>T",
"hgvs_p": "p.Thr110Met",
"transcript": "NM_001331021.1",
"protein_id": "NP_001317950.1",
"transcript_support_level": null,
"aa_start": 110,
"aa_end": null,
"aa_length": 249,
"cds_start": 329,
"cds_end": null,
"cds_length": 750,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "NM_001331021.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.329C>T",
"hgvs_p": "p.Thr110Met",
"transcript": "ENST00000398998.1",
"protein_id": "ENSP00000381964.1",
"transcript_support_level": 5,
"aa_start": 110,
"aa_end": null,
"aa_length": 249,
"cds_start": 329,
"cds_end": null,
"cds_length": 750,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000398998.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.287C>T",
"hgvs_p": "p.Thr96Met",
"transcript": "ENST00000942457.1",
"protein_id": "ENSP00000612516.1",
"transcript_support_level": null,
"aa_start": 96,
"aa_end": null,
"aa_length": 235,
"cds_start": 287,
"cds_end": null,
"cds_length": 708,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000942457.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.248C>T",
"hgvs_p": "p.Thr83Met",
"transcript": "ENST00000875976.1",
"protein_id": "ENSP00000546035.1",
"transcript_support_level": null,
"aa_start": 83,
"aa_end": null,
"aa_length": 222,
"cds_start": 248,
"cds_end": null,
"cds_length": 669,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875976.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.242C>T",
"hgvs_p": "p.Thr81Met",
"transcript": "ENST00000875971.1",
"protein_id": "ENSP00000546031.1",
"transcript_support_level": null,
"aa_start": 81,
"aa_end": null,
"aa_length": 220,
"cds_start": 242,
"cds_end": null,
"cds_length": 663,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875971.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.206C>T",
"hgvs_p": "p.Thr69Met",
"transcript": "ENST00000929124.1",
"protein_id": "ENSP00000599183.1",
"transcript_support_level": null,
"aa_start": 69,
"aa_end": null,
"aa_length": 208,
"cds_start": 206,
"cds_end": null,
"cds_length": 627,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000929124.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.179C>T",
"hgvs_p": "p.Thr60Met",
"transcript": "ENST00000875974.1",
"protein_id": "ENSP00000546033.1",
"transcript_support_level": null,
"aa_start": 60,
"aa_end": null,
"aa_length": 199,
"cds_start": 179,
"cds_end": null,
"cds_length": 600,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000875974.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 5,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.98C>T",
"hgvs_p": "p.Thr33Met",
"transcript": "NM_001331018.1",
"protein_id": "NP_001317947.1",
"transcript_support_level": null,
"aa_start": 33,
"aa_end": null,
"aa_length": 172,
"cds_start": 98,
"cds_end": null,
"cds_length": 519,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "NM_001331018.1"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 5,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.98C>T",
"hgvs_p": "p.Thr33Met",
"transcript": "ENST00000399001.5",
"protein_id": "ENSP00000381967.1",
"transcript_support_level": 2,
"aa_start": 33,
"aa_end": null,
"aa_length": 172,
"cds_start": 98,
"cds_end": null,
"cds_length": 519,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000399001.5"
},
{
"aa_ref": "T",
"aa_alt": "M",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "c.248C>T",
"hgvs_p": "p.Thr83Met",
"transcript": "XM_047440658.1",
"protein_id": "XP_047296614.1",
"transcript_support_level": null,
"aa_start": 83,
"aa_end": null,
"aa_length": 222,
"cds_start": 248,
"cds_end": null,
"cds_length": 669,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "XM_047440658.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "n.122C>T",
"hgvs_p": null,
"transcript": "ENST00000495858.1",
"protein_id": null,
"transcript_support_level": 5,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000495858.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"hgvs_c": "n.1287C>T",
"hgvs_p": null,
"transcript": "XR_007067776.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "XR_007067776.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.1278-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000440629.2",
"protein_id": null,
"transcript_support_level": 2,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000440629.2"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.246-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000715707.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000715707.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.208+10814G>A",
"hgvs_p": null,
"transcript": "ENST00000715708.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000715708.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.190-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000715709.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000715709.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.178-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000715711.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000715711.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.245+10814G>A",
"hgvs_p": null,
"transcript": "ENST00000715712.2",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000715712.2"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.165-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000715713.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000715713.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.194+10814G>A",
"hgvs_p": null,
"transcript": "ENST00000812080.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000812080.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.167-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000812081.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000812081.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.178-8744G>A",
"hgvs_p": null,
"transcript": "ENST00000812082.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000812082.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.182-5003G>A",
"hgvs_p": null,
"transcript": "ENST00000812083.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000812083.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000242553",
"gene_hgnc_id": null,
"hgvs_c": "n.143-4993G>A",
"hgvs_p": null,
"transcript": "ENST00000812084.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000812084.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "DSCR9",
"gene_hgnc_id": 16301,
"hgvs_c": "n.155-4555G>A",
"hgvs_p": null,
"transcript": "ENST00000812251.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "ENST00000812251.1"
}
],
"gene_symbol": "VPS26C",
"gene_hgnc_id": 3044,
"dbsnp": "rs1368875686",
"frequency_reference_population": 0.0000123909285,
"hom_count_reference_population": 0,
"allele_count_reference_population": 20,
"gnomad_exomes_af": 0.0000116292,
"gnomad_genomes_af": 0.0000197055,
"gnomad_exomes_ac": 17,
"gnomad_genomes_ac": 3,
"gnomad_exomes_homalt": 0,
"gnomad_genomes_homalt": 0,
"gnomad_mito_homoplasmic": null,
"gnomad_mito_heteroplasmic": null,
"computational_score_selected": 0.49779850244522095,
"computational_prediction_selected": "Uncertain_significance",
"computational_source_selected": "MetaRNN",
"splice_score_selected": 0,
"splice_prediction_selected": "Benign",
"splice_source_selected": "max_spliceai",
"revel_score": 0.114,
"revel_prediction": "Benign",
"alphamissense_score": 0.0854,
"alphamissense_prediction": null,
"bayesdelnoaf_score": -0.18,
"bayesdelnoaf_prediction": "Benign",
"phylop100way_score": 4.842,
"phylop100way_prediction": "Uncertain_significance",
"spliceai_max_score": 0,
"spliceai_max_prediction": "Benign",
"dbscsnv_ada_score": null,
"dbscsnv_ada_prediction": null,
"apogee2_score": null,
"apogee2_prediction": null,
"mitotip_score": null,
"mitotip_prediction": null,
"acmg_score": 2,
"acmg_classification": "Uncertain_significance",
"acmg_criteria": "PM2",
"acmg_by_gene": [
{
"score": 2,
"benign_score": 0,
"pathogenic_score": 2,
"criteria": [
"PM2"
],
"verdict": "Uncertain_significance",
"transcript": "NM_006052.2",
"gene_symbol": "VPS26C",
"hgnc_id": 3044,
"effects": [
"missense_variant"
],
"inheritance_mode": "AR",
"hgvs_c": "c.473C>T",
"hgvs_p": "p.Thr158Met"
},
{
"score": 2,
"benign_score": 0,
"pathogenic_score": 2,
"criteria": [
"PM2"
],
"verdict": "Uncertain_significance",
"transcript": "ENST00000440629.2",
"gene_symbol": "ENSG00000242553",
"hgnc_id": null,
"effects": [
"intron_variant"
],
"inheritance_mode": "",
"hgvs_c": "n.1278-4993G>A",
"hgvs_p": null
},
{
"score": 2,
"benign_score": 0,
"pathogenic_score": 2,
"criteria": [
"PM2"
],
"verdict": "Uncertain_significance",
"transcript": "ENST00000812251.1",
"gene_symbol": "DSCR9",
"hgnc_id": 16301,
"effects": [
"intron_variant"
],
"inheritance_mode": "",
"hgvs_c": "n.155-4555G>A",
"hgvs_p": null
}
],
"clinvar_disease": "not specified",
"clinvar_classification": "Uncertain significance",
"clinvar_review_status": "criteria provided, single submitter",
"clinvar_submissions_summary": "US:1",
"phenotype_combined": "not specified",
"pathogenicity_classification_combined": "Uncertain significance",
"custom_annotations": null
}
],
"message": null
}