← 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: 18-45739554-G-A (hg38)
Bash / cURL Example
bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=18&pos=45739554&ref=G&alt=A&genome=hg38&allGenes=true"API Response
json
{
"variants": [
{
"chr": "18",
"pos": 45739554,
"ref": "G",
"alt": "A",
"effect": "missense_variant",
"transcript": "ENST00000321925.9",
"consequences": [
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.838G>A",
"hgvs_p": "p.Asp280Asn",
"transcript": "NM_015865.7",
"protein_id": "NP_056949.4",
"transcript_support_level": null,
"aa_start": 280,
"aa_end": null,
"aa_length": 389,
"cds_start": 838,
"cds_end": null,
"cds_length": 1170,
"cdna_start": 1016,
"cdna_end": null,
"cdna_length": 3917,
"mane_select": "ENST00000321925.9",
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": true,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.838G>A",
"hgvs_p": "p.Asp280Asn",
"transcript": "ENST00000321925.9",
"protein_id": "ENSP00000318546.4",
"transcript_support_level": 1,
"aa_start": 280,
"aa_end": null,
"aa_length": 389,
"cds_start": 838,
"cds_end": null,
"cds_length": 1170,
"cdna_start": 1016,
"cdna_end": null,
"cdna_length": 3917,
"mane_select": "NM_015865.7",
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.838G>A",
"hgvs_p": "p.Asp280Asn",
"transcript": "ENST00000586142.5",
"protein_id": "ENSP00000470476.1",
"transcript_support_level": 1,
"aa_start": 280,
"aa_end": null,
"aa_length": 389,
"cds_start": 838,
"cds_end": null,
"cds_length": 1170,
"cdna_start": 2130,
"cdna_end": null,
"cdna_length": 2846,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.442G>A",
"hgvs_p": "p.Asp148Asn",
"transcript": "ENST00000535474.5",
"protein_id": "ENSP00000441998.1",
"transcript_support_level": 1,
"aa_start": 148,
"aa_end": null,
"aa_length": 257,
"cds_start": 442,
"cds_end": null,
"cds_length": 774,
"cdna_start": 651,
"cdna_end": null,
"cdna_length": 1048,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "R",
"aa_alt": "R",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"synonymous_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.690G>A",
"hgvs_p": "p.Arg230Arg",
"transcript": "ENST00000589700.5",
"protein_id": "ENSP00000465044.1",
"transcript_support_level": 1,
"aa_start": 230,
"aa_end": null,
"aa_length": 302,
"cds_start": 690,
"cds_end": null,
"cds_length": 909,
"cdna_start": 690,
"cdna_end": null,
"cdna_length": 1022,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "NM_001128588.4",
"protein_id": "NP_001122060.3",
"transcript_support_level": null,
"aa_start": 336,
"aa_end": null,
"aa_length": 445,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1338,
"cdna_start": 1174,
"cdna_end": null,
"cdna_length": 4075,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "NM_001146037.1",
"protein_id": "NP_001139509.1",
"transcript_support_level": null,
"aa_start": 336,
"aa_end": null,
"aa_length": 445,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1338,
"cdna_start": 1325,
"cdna_end": null,
"cdna_length": 4226,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "ENST00000415427.7",
"protein_id": "ENSP00000412309.2",
"transcript_support_level": 2,
"aa_start": 336,
"aa_end": null,
"aa_length": 445,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1338,
"cdna_start": 1171,
"cdna_end": null,
"cdna_length": 1554,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "ENST00000436407.7",
"protein_id": "ENSP00000390637.2",
"transcript_support_level": 2,
"aa_start": 336,
"aa_end": null,
"aa_length": 445,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1338,
"cdna_start": 1553,
"cdna_end": null,
"cdna_length": 2264,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "NM_001439164.1",
"protein_id": "NP_001426093.1",
"transcript_support_level": null,
"aa_start": 336,
"aa_end": null,
"aa_length": 402,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1209,
"cdna_start": 1174,
"cdna_end": null,
"cdna_length": 1675,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.838G>A",
"hgvs_p": "p.Asp280Asn",
"transcript": "NM_001146036.3",
"protein_id": "NP_001139508.2",
"transcript_support_level": null,
"aa_start": 280,
"aa_end": null,
"aa_length": 389,
"cds_start": 838,
"cds_end": null,
"cds_length": 1170,
"cdna_start": 1103,
"cdna_end": null,
"cdna_length": 4004,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.838G>A",
"hgvs_p": "p.Asp280Asn",
"transcript": "ENST00000586951.6",
"protein_id": "ENSP00000465702.2",
"transcript_support_level": 4,
"aa_start": 280,
"aa_end": null,
"aa_length": 389,
"cds_start": 838,
"cds_end": null,
"cds_length": 1170,
"cdna_start": 1100,
"cdna_end": null,
"cdna_length": 1496,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.523G>A",
"hgvs_p": "p.Asp175Asn",
"transcript": "NM_001308278.2",
"protein_id": "NP_001295207.1",
"transcript_support_level": null,
"aa_start": 175,
"aa_end": null,
"aa_length": 284,
"cds_start": 523,
"cds_end": null,
"cds_length": 855,
"cdna_start": 844,
"cdna_end": null,
"cdna_length": 3745,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.523G>A",
"hgvs_p": "p.Asp175Asn",
"transcript": "ENST00000402943.6",
"protein_id": "ENSP00000385320.2",
"transcript_support_level": 2,
"aa_start": 175,
"aa_end": null,
"aa_length": 284,
"cds_start": 523,
"cds_end": null,
"cds_length": 855,
"cdna_start": 841,
"cdna_end": null,
"cdna_length": 1390,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.442G>A",
"hgvs_p": "p.Asp148Asn",
"transcript": "NM_001308279.2",
"protein_id": "NP_001295208.1",
"transcript_support_level": null,
"aa_start": 148,
"aa_end": null,
"aa_length": 257,
"cds_start": 442,
"cds_end": null,
"cds_length": 774,
"cdna_start": 654,
"cdna_end": null,
"cdna_length": 3555,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.442G>A",
"hgvs_p": "p.Asp148Asn",
"transcript": "NM_001439165.1",
"protein_id": "NP_001426094.1",
"transcript_support_level": null,
"aa_start": 148,
"aa_end": null,
"aa_length": 257,
"cds_start": 442,
"cds_end": null,
"cds_length": 774,
"cdna_start": 590,
"cdna_end": null,
"cdna_length": 3491,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 7,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.442G>A",
"hgvs_p": "p.Asp148Asn",
"transcript": "ENST00000589322.7",
"protein_id": "ENSP00000466273.3",
"transcript_support_level": 3,
"aa_start": 148,
"aa_end": null,
"aa_length": 257,
"cds_start": 442,
"cds_end": null,
"cds_length": 774,
"cdna_start": 587,
"cdna_end": null,
"cdna_length": 976,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.943G>A",
"hgvs_p": "p.Asp315Asn",
"transcript": "XM_006722526.4",
"protein_id": "XP_006722589.1",
"transcript_support_level": null,
"aa_start": 315,
"aa_end": null,
"aa_length": 424,
"cds_start": 943,
"cds_end": null,
"cds_length": 1275,
"cdna_start": 1151,
"cdna_end": null,
"cdna_length": 4052,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.943G>A",
"hgvs_p": "p.Asp315Asn",
"transcript": "XM_011526142.2",
"protein_id": "XP_011524444.1",
"transcript_support_level": null,
"aa_start": 315,
"aa_end": null,
"aa_length": 424,
"cds_start": 943,
"cds_end": null,
"cds_length": 1275,
"cdna_start": 3034,
"cdna_end": null,
"cdna_length": 5935,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 10,
"exon_rank_end": null,
"exon_count": 12,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.943G>A",
"hgvs_p": "p.Asp315Asn",
"transcript": "XM_047437758.1",
"protein_id": "XP_047293714.1",
"transcript_support_level": null,
"aa_start": 315,
"aa_end": null,
"aa_length": 424,
"cds_start": 943,
"cds_end": null,
"cds_length": 1275,
"cdna_start": 1238,
"cdna_end": null,
"cdna_length": 4139,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "XM_047437759.1",
"protein_id": "XP_047293715.1",
"transcript_support_level": null,
"aa_start": 336,
"aa_end": null,
"aa_length": 377,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1134,
"cdna_start": 1174,
"cdna_end": null,
"cdna_length": 1453,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "D",
"aa_alt": "N",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.1006G>A",
"hgvs_p": "p.Asp336Asn",
"transcript": "XM_011526144.2",
"protein_id": "XP_011524446.1",
"transcript_support_level": null,
"aa_start": 336,
"aa_end": null,
"aa_length": 374,
"cds_start": 1006,
"cds_end": null,
"cds_length": 1125,
"cdna_start": 1174,
"cdna_end": null,
"cdna_length": 1308,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "R",
"aa_alt": "R",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"synonymous_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.690G>A",
"hgvs_p": "p.Arg230Arg",
"transcript": "ENST00000619403.4",
"protein_id": "ENSP00000479595.1",
"transcript_support_level": 5,
"aa_start": 230,
"aa_end": null,
"aa_length": 302,
"cds_start": 690,
"cds_end": null,
"cds_length": 909,
"cdna_start": 922,
"cdna_end": null,
"cdna_length": 3823,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "n.*191G>A",
"hgvs_p": null,
"transcript": "ENST00000502059.7",
"protein_id": "ENSP00000442180.2",
"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": 2371,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "n.271G>A",
"hgvs_p": null,
"transcript": "ENST00000586854.1",
"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": 577,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "n.*168G>A",
"hgvs_p": null,
"transcript": "ENST00000588179.6",
"protein_id": "ENSP00000467898.2",
"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": 1684,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 1,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "n.53G>A",
"hgvs_p": null,
"transcript": "ENST00000591541.2",
"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": 554,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "n.*191G>A",
"hgvs_p": null,
"transcript": "ENST00000502059.7",
"protein_id": "ENSP00000442180.2",
"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": 2371,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "n.*168G>A",
"hgvs_p": null,
"transcript": "ENST00000588179.6",
"protein_id": "ENSP00000467898.2",
"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": 1684,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 5,
"intron_rank": 3,
"intron_rank_end": null,
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"hgvs_c": "c.384+2906G>A",
"hgvs_p": null,
"transcript": "ENST00000590377.1",
"protein_id": "ENSP00000465150.1",
"transcript_support_level": 3,
"aa_start": null,
"aa_end": null,
"aa_length": 172,
"cds_start": -4,
"cds_end": null,
"cds_length": 519,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 779,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": 4,
"intron_rank_end": null,
"gene_symbol": "ENSG00000288545",
"gene_hgnc_id": null,
"hgvs_c": "n.533-1960C>T",
"hgvs_p": null,
"transcript": "ENST00000586213.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": 989,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000288545",
"gene_hgnc_id": null,
"hgvs_c": "n.31+1543C>T",
"hgvs_p": null,
"transcript": "ENST00000589510.5",
"protein_id": null,
"transcript_support_level": 5,
"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": 313,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": 3,
"intron_rank_end": null,
"gene_symbol": "ENSG00000288545",
"gene_hgnc_id": null,
"hgvs_c": "n.270-1960C>T",
"hgvs_p": null,
"transcript": "ENST00000729315.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": 398,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": 5,
"intron_rank_end": null,
"gene_symbol": "LOC105372093",
"gene_hgnc_id": null,
"hgvs_c": "n.698-1960C>T",
"hgvs_p": null,
"transcript": "XR_935423.3",
"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": 6574,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
}
],
"gene_symbol": "SLC14A1",
"gene_hgnc_id": 10918,
"dbsnp": "rs1058396",
"frequency_reference_population": 0.46911013,
"hom_count_reference_population": 180070,
"allele_count_reference_population": 756897,
"gnomad_exomes_af": 0.474162,
"gnomad_genomes_af": 0.420509,
"gnomad_exomes_ac": 693015,
"gnomad_genomes_ac": 63882,
"gnomad_exomes_homalt": 165875,
"gnomad_genomes_homalt": 14195,
"gnomad_mito_homoplasmic": null,
"gnomad_mito_heteroplasmic": null,
"computational_score_selected": 0.00029844045639038086,
"computational_prediction_selected": "Benign",
"computational_source_selected": "MetaRNN",
"splice_score_selected": 0.05000000074505806,
"splice_prediction_selected": "Benign",
"splice_source_selected": "max_spliceai",
"revel_score": 0.061,
"revel_prediction": "Benign",
"alphamissense_score": 0.0687,
"alphamissense_prediction": null,
"bayesdelnoaf_score": -0.62,
"bayesdelnoaf_prediction": "Benign",
"phylop100way_score": 0.723,
"phylop100way_prediction": "Benign",
"spliceai_max_score": 0.05,
"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": -14,
"acmg_classification": "Benign",
"acmg_criteria": "BP4_Strong,BP6_Moderate,BA1",
"acmg_by_gene": [
{
"score": -14,
"benign_score": 14,
"pathogenic_score": 0,
"criteria": [
"BP4_Strong",
"BP6_Moderate",
"BA1"
],
"verdict": "Benign",
"transcript": "ENST00000321925.9",
"gene_symbol": "SLC14A1",
"hgnc_id": 10918,
"effects": [
"missense_variant"
],
"inheritance_mode": "BG",
"hgvs_c": "c.838G>A",
"hgvs_p": "p.Asp280Asn"
},
{
"score": -14,
"benign_score": 14,
"pathogenic_score": 0,
"criteria": [
"BP4_Strong",
"BP6_Moderate",
"BA1"
],
"verdict": "Benign",
"transcript": "ENST00000586213.2",
"gene_symbol": "ENSG00000288545",
"hgnc_id": null,
"effects": [
"intron_variant"
],
"inheritance_mode": "",
"hgvs_c": "n.533-1960C>T",
"hgvs_p": null
},
{
"score": -14,
"benign_score": 14,
"pathogenic_score": 0,
"criteria": [
"BP4_Strong",
"BP6_Moderate",
"BA1"
],
"verdict": "Benign",
"transcript": "XR_935423.3",
"gene_symbol": "LOC105372093",
"hgnc_id": null,
"effects": [
"intron_variant"
],
"inheritance_mode": "",
"hgvs_c": "n.698-1960C>T",
"hgvs_p": null
}
],
"clinvar_disease": "KIDD BLOOD POLYMORPHISM Jk(a)/Jk(b),SLC14A1-related disorder,not provided",
"clinvar_classification": "Benign",
"clinvar_review_status": "criteria provided, single submitter",
"clinvar_submissions_summary": "B:1",
"phenotype_combined": "not provided|KIDD BLOOD POLYMORPHISM Jk(a)/Jk(b)|SLC14A1-related disorder",
"pathogenicity_classification_combined": "Benign",
"custom_annotations": null
}
],
"message": null
}