← 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: 13-45405958-G-A (hg38)

Bash / cURL Example

bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=13&pos=45405958&ref=G&alt=A&genome=hg38&allGenes=true"

API Response

json
{
  "variants": [
    {
      "chr": "13",
      "pos": 45405958,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_001010875.4",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "NM_001010875.4",
          "protein_id": "NP_001010875.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000519676.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001010875.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000519676.6",
          "protein_id": "ENSP00000429168.1",
          "transcript_support_level": 1,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001010875.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000519676.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "n.84C>T",
          "hgvs_p": null,
          "transcript": "ENST00000310862.11",
          "protein_id": "ENSP00000311856.7",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000310862.11"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857533.1",
          "protein_id": "ENSP00000527592.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 300,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 903,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857533.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857529.1",
          "protein_id": "ENSP00000527588.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857529.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857530.1",
          "protein_id": "ENSP00000527589.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857530.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857531.1",
          "protein_id": "ENSP00000527590.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857531.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857534.1",
          "protein_id": "ENSP00000527593.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857534.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857535.1",
          "protein_id": "ENSP00000527594.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857535.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "ENST00000857532.1",
          "protein_id": "ENSP00000527591.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 264,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 795,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857532.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.79C>T",
          "hgvs_p": "p.Arg27Cys",
          "transcript": "NM_001286806.2",
          "protein_id": "NP_001273735.1",
          "transcript_support_level": null,
          "aa_start": 27,
          "aa_end": null,
          "aa_length": 240,
          "cds_start": 79,
          "cds_end": null,
          "cds_length": 723,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001286806.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.79C>T",
          "hgvs_p": "p.Arg27Cys",
          "transcript": "ENST00000539591.5",
          "protein_id": "ENSP00000443542.1",
          "transcript_support_level": 2,
          "aa_start": 27,
          "aa_end": null,
          "aa_length": 240,
          "cds_start": 79,
          "cds_end": null,
          "cds_length": 723,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000539591.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.7C>T",
          "hgvs_p": "p.Arg3Cys",
          "transcript": "NM_001286807.2",
          "protein_id": "NP_001273736.1",
          "transcript_support_level": null,
          "aa_start": 3,
          "aa_end": null,
          "aa_length": 216,
          "cds_start": 7,
          "cds_end": null,
          "cds_length": 651,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001286807.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "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": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.79C>T",
          "hgvs_p": "p.Arg27Cys",
          "transcript": "ENST00000519547.5",
          "protein_id": "ENSP00000429308.1",
          "transcript_support_level": 4,
          "aa_start": 27,
          "aa_end": null,
          "aa_length": 136,
          "cds_start": 79,
          "cds_end": null,
          "cds_length": 412,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000519547.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "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": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.7C>T",
          "hgvs_p": "p.Arg3Cys",
          "transcript": "ENST00000522438.1",
          "protein_id": "ENSP00000430687.1",
          "transcript_support_level": 5,
          "aa_start": 3,
          "aa_end": null,
          "aa_length": 93,
          "cds_start": 7,
          "cds_end": null,
          "cds_length": 284,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000522438.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_005266321.3",
          "protein_id": "XP_005266378.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 293,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 882,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005266321.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_006719793.5",
          "protein_id": "XP_006719856.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 293,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 882,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_006719793.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_006719794.3",
          "protein_id": "XP_006719857.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 293,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 882,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_006719794.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_017020523.2",
          "protein_id": "XP_016876012.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 293,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 882,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017020523.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_017020524.3",
          "protein_id": "XP_016876013.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017020524.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_047430241.1",
          "protein_id": "XP_047286197.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 291,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 876,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047430241.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys",
          "transcript": "XM_005266322.2",
          "protein_id": "XP_005266379.1",
          "transcript_support_level": null,
          "aa_start": 78,
          "aa_end": null,
          "aa_length": 254,
          "cds_start": 232,
          "cds_end": null,
          "cds_length": 765,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005266322.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "c.65-1546C>T",
          "hgvs_p": null,
          "transcript": "ENST00000954031.1",
          "protein_id": "ENSP00000624090.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 210,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 633,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000954031.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC25A30",
          "gene_hgnc_id": 27371,
          "hgvs_c": "n.84C>T",
          "hgvs_p": null,
          "transcript": "ENST00000463262.1",
          "protein_id": "ENSP00000425603.1",
          "transcript_support_level": 3,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000463262.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": 3,
          "intron_rank_end": null,
          "gene_symbol": "TPT1-AS1",
          "gene_hgnc_id": 43686,
          "hgvs_c": "n.458-11542G>A",
          "hgvs_p": null,
          "transcript": "ENST00000661291.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": "ENST00000661291.1"
        }
      ],
      "gene_symbol": "SLC25A30",
      "gene_hgnc_id": 27371,
      "dbsnp": "rs770621512",
      "frequency_reference_population": 0.000009912903,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 16,
      "gnomad_exomes_af": 0.0000102609,
      "gnomad_genomes_af": 0.00000657022,
      "gnomad_exomes_ac": 15,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.9645463228225708,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.03999999910593033,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.862,
      "revel_prediction": "Pathogenic",
      "alphamissense_score": 0.9797,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.37,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 2.982,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.04,
      "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": 6,
      "acmg_classification": "Likely_pathogenic",
      "acmg_criteria": "PM2,PP3_Strong",
      "acmg_by_gene": [
        {
          "score": 6,
          "benign_score": 0,
          "pathogenic_score": 6,
          "criteria": [
            "PM2",
            "PP3_Strong"
          ],
          "verdict": "Likely_pathogenic",
          "transcript": "NM_001010875.4",
          "gene_symbol": "SLC25A30",
          "hgnc_id": 27371,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.232C>T",
          "hgvs_p": "p.Arg78Cys"
        },
        {
          "score": 6,
          "benign_score": 0,
          "pathogenic_score": 6,
          "criteria": [
            "PM2",
            "PP3_Strong"
          ],
          "verdict": "Likely_pathogenic",
          "transcript": "ENST00000661291.1",
          "gene_symbol": "TPT1-AS1",
          "hgnc_id": 43686,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.458-11542G>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
}