← 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: 2-27364580-T-A (hg38)
Bash / cURL Example
bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=2&pos=27364580&ref=T&alt=A&genome=hg38&allGenes=true"API Response
json
{
"variants": [
{
"chr": "2",
"pos": 27364580,
"ref": "T",
"alt": "A",
"effect": "missense_variant",
"transcript": "ENST00000347454.9",
"consequences": [
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1392A>T",
"hgvs_p": "p.Gln464His",
"transcript": "NM_001034116.2",
"protein_id": "NP_001029288.1",
"transcript_support_level": null,
"aa_start": 464,
"aa_end": null,
"aa_length": 523,
"cds_start": 1392,
"cds_end": null,
"cds_length": 1572,
"cdna_start": 1416,
"cdna_end": null,
"cdna_length": 1644,
"mane_select": "ENST00000347454.9",
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": true,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1392A>T",
"hgvs_p": "p.Gln464His",
"transcript": "ENST00000347454.9",
"protein_id": "ENSP00000233552.6",
"transcript_support_level": 1,
"aa_start": 464,
"aa_end": null,
"aa_length": 523,
"cds_start": 1392,
"cds_end": null,
"cds_length": 1572,
"cdna_start": 1416,
"cdna_end": null,
"cdna_length": 1644,
"mane_select": "NM_001034116.2",
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 12,
"exon_rank_end": null,
"exon_count": 12,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1452A>T",
"hgvs_p": "p.Gln484His",
"transcript": "ENST00000451130.6",
"protein_id": "ENSP00000394869.2",
"transcript_support_level": 1,
"aa_start": 484,
"aa_end": null,
"aa_length": 543,
"cds_start": 1452,
"cds_end": null,
"cds_length": 1632,
"cdna_start": 1452,
"cdna_end": null,
"cdna_length": 1633,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1389A>T",
"hgvs_p": "p.Gln463His",
"transcript": "ENST00000445933.6",
"protein_id": "ENSP00000394397.2",
"transcript_support_level": 1,
"aa_start": 463,
"aa_end": null,
"aa_length": 522,
"cds_start": 1389,
"cds_end": null,
"cds_length": 1569,
"cdna_start": 1409,
"cdna_end": null,
"cdna_length": 1608,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "n.*658A>T",
"hgvs_p": null,
"transcript": "ENST00000405940.6",
"protein_id": "ENSP00000384375.2",
"transcript_support_level": 1,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1570,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "n.*658A>T",
"hgvs_p": null,
"transcript": "ENST00000405940.6",
"protein_id": "ENSP00000384375.2",
"transcript_support_level": 1,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1570,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 12,
"exon_rank_end": null,
"exon_count": 12,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1455A>T",
"hgvs_p": "p.Gln485His",
"transcript": "NM_001318965.2",
"protein_id": "NP_001305894.1",
"transcript_support_level": null,
"aa_start": 485,
"aa_end": null,
"aa_length": 544,
"cds_start": 1455,
"cds_end": null,
"cds_length": 1635,
"cdna_start": 1467,
"cdna_end": null,
"cdna_length": 1695,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 12,
"exon_rank_end": null,
"exon_count": 12,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1455A>T",
"hgvs_p": "p.Gln485His",
"transcript": "ENST00000493344.6",
"protein_id": "ENSP00000429323.1",
"transcript_support_level": 5,
"aa_start": 485,
"aa_end": null,
"aa_length": 544,
"cds_start": 1455,
"cds_end": null,
"cds_length": 1635,
"cdna_start": 1768,
"cdna_end": null,
"cdna_length": 1949,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 12,
"exon_rank_end": null,
"exon_count": 12,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1452A>T",
"hgvs_p": "p.Gln484His",
"transcript": "NM_172195.4",
"protein_id": "NP_751945.2",
"transcript_support_level": null,
"aa_start": 484,
"aa_end": null,
"aa_length": 543,
"cds_start": 1452,
"cds_end": null,
"cds_length": 1632,
"cdna_start": 1464,
"cdna_end": null,
"cdna_length": 1692,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1389A>T",
"hgvs_p": "p.Gln463His",
"transcript": "NM_015636.4",
"protein_id": "NP_056451.3",
"transcript_support_level": null,
"aa_start": 463,
"aa_end": null,
"aa_length": 522,
"cds_start": 1389,
"cds_end": null,
"cds_length": 1569,
"cdna_start": 1413,
"cdna_end": null,
"cdna_length": 1641,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1347A>T",
"hgvs_p": "p.Gln449His",
"transcript": "NM_001318966.2",
"protein_id": "NP_001305895.1",
"transcript_support_level": null,
"aa_start": 449,
"aa_end": null,
"aa_length": 508,
"cds_start": 1347,
"cds_end": null,
"cds_length": 1527,
"cdna_start": 1594,
"cdna_end": null,
"cdna_length": 1822,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.1299A>T",
"hgvs_p": "p.Gln433His",
"transcript": "NM_001318967.2",
"protein_id": "NP_001305896.1",
"transcript_support_level": null,
"aa_start": 433,
"aa_end": null,
"aa_length": 492,
"cds_start": 1299,
"cds_end": null,
"cds_length": 1479,
"cdna_start": 1409,
"cdna_end": null,
"cdna_length": 1637,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 12,
"exon_rank_end": null,
"exon_count": 12,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.807A>T",
"hgvs_p": "p.Gln269His",
"transcript": "NM_001318968.2",
"protein_id": "NP_001305897.1",
"transcript_support_level": null,
"aa_start": 269,
"aa_end": null,
"aa_length": 328,
"cds_start": 807,
"cds_end": null,
"cds_length": 987,
"cdna_start": 1397,
"cdna_end": null,
"cdna_length": 1625,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "Q",
"aa_alt": "H",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 13,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "c.774A>T",
"hgvs_p": "p.Gln258His",
"transcript": "NM_001318969.2",
"protein_id": "NP_001305898.1",
"transcript_support_level": null,
"aa_start": 258,
"aa_end": null,
"aa_length": 317,
"cds_start": 774,
"cds_end": null,
"cds_length": 954,
"cdna_start": 1390,
"cdna_end": null,
"cdna_length": 1618,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"hgvs_c": "n.385A>T",
"hgvs_p": null,
"transcript": "ENST00000478311.1",
"protein_id": null,
"transcript_support_level": 2,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 607,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.238-2844T>A",
"hgvs_p": null,
"transcript": "ENST00000412749.2",
"protein_id": null,
"transcript_support_level": 3,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 695,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.303-2844T>A",
"hgvs_p": null,
"transcript": "ENST00000847761.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 759,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.1746-2844T>A",
"hgvs_p": null,
"transcript": "NR_183825.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 2202,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.669-2844T>A",
"hgvs_p": null,
"transcript": "NR_183826.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1125,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 3,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.764-2844T>A",
"hgvs_p": null,
"transcript": "NR_183827.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1220,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.93-497T>A",
"hgvs_p": null,
"transcript": "NR_183828.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 900,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 3,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.905-2844T>A",
"hgvs_p": null,
"transcript": "NR_183831.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1361,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 3,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.825-497T>A",
"hgvs_p": null,
"transcript": "NR_183832.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1632,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.1887-2844T>A",
"hgvs_p": null,
"transcript": "NR_183833.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 2343,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.1807-2844T>A",
"hgvs_p": null,
"transcript": "NR_183835.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 2263,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.1887-497T>A",
"hgvs_p": null,
"transcript": "NR_183836.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 2694,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.247-2844T>A",
"hgvs_p": null,
"transcript": "NR_183838.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 703,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"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": 2,
"intron_rank_end": null,
"gene_symbol": "GTF3C2-AS2",
"gene_hgnc_id": 55699,
"hgvs_c": "n.249-2844T>A",
"hgvs_p": null,
"transcript": "NR_183839.1",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 705,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
}
],
"gene_symbol": "EIF2B4",
"gene_hgnc_id": 3260,
"dbsnp": "rs148810263",
"frequency_reference_population": null,
"hom_count_reference_population": 0,
"allele_count_reference_population": 0,
"gnomad_exomes_af": null,
"gnomad_genomes_af": null,
"gnomad_exomes_ac": null,
"gnomad_genomes_ac": null,
"gnomad_exomes_homalt": null,
"gnomad_genomes_homalt": null,
"gnomad_mito_homoplasmic": null,
"gnomad_mito_heteroplasmic": null,
"computational_score_selected": 0.12348705530166626,
"computational_prediction_selected": "Benign",
"computational_source_selected": "MetaRNN",
"splice_score_selected": 0,
"splice_prediction_selected": "Benign",
"splice_source_selected": "max_spliceai",
"revel_score": 0.185,
"revel_prediction": "Benign",
"alphamissense_score": 0.1554,
"alphamissense_prediction": null,
"bayesdelnoaf_score": -0.36,
"bayesdelnoaf_prediction": "Benign",
"phylop100way_score": -0.042,
"phylop100way_prediction": "Benign",
"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": "PM1,PM2,BP4_Moderate",
"acmg_by_gene": [
{
"score": 2,
"benign_score": 2,
"pathogenic_score": 4,
"criteria": [
"PM1",
"PM2",
"BP4_Moderate"
],
"verdict": "Uncertain_significance",
"transcript": "ENST00000347454.9",
"gene_symbol": "EIF2B4",
"hgnc_id": 3260,
"effects": [
"missense_variant"
],
"inheritance_mode": "AR",
"hgvs_c": "c.1392A>T",
"hgvs_p": "p.Gln464His"
},
{
"score": 0,
"benign_score": 2,
"pathogenic_score": 2,
"criteria": [
"PM2",
"BP4_Moderate"
],
"verdict": "Uncertain_significance",
"transcript": "ENST00000412749.2",
"gene_symbol": "GTF3C2-AS2",
"hgnc_id": 55699,
"effects": [
"intron_variant"
],
"inheritance_mode": "",
"hgvs_c": "n.238-2844T>A",
"hgvs_p": null
}
],
"clinvar_disease": "",
"clinvar_classification": "",
"clinvar_review_status": "",
"clinvar_submissions_summary": "",
"phenotype_combined": null,
"pathogenicity_classification_combined": null,
"custom_annotations": null
}
],
"message": null
}