← 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: 6-145635283-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "6",
      "pos": 145635283,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_005670.4",
      "consequences": [
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "NM_005670.4",
          "protein_id": "NP_005661.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 331,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 996,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000367519.9",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_005670.4"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "ENST00000367519.9",
          "protein_id": "ENSP00000356489.3",
          "transcript_support_level": 1,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 331,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 996,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_005670.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000367519.9"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "ENST00000435470.2",
          "protein_id": "ENSP00000405913.2",
          "transcript_support_level": 1,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 317,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 954,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000435470.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "ENST00000639423.1",
          "protein_id": "ENSP00000492701.1",
          "transcript_support_level": 1,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000639423.1"
        },
        {
          "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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.477-7590C>T",
          "hgvs_p": null,
          "transcript": "ENST00000638262.1",
          "protein_id": "ENSP00000492876.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 224,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 675,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000638262.1"
        },
        {
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*524C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639049.1",
          "protein_id": "ENSP00000491590.1",
          "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": "ENST00000639049.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": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.1221C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639799.1",
          "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": "retained_intron",
          "feature": "ENST00000639799.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*524C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639049.1",
          "protein_id": "ENSP00000491590.1",
          "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": "ENST00000639049.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "NM_001018041.2",
          "protein_id": "NP_001018051.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 317,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 954,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001018041.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "NM_001368130.1",
          "protein_id": "NP_001355059.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 267,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 804,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001368130.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.461C>T",
          "hgvs_p": "p.Ala154Val",
          "transcript": "ENST00000638717.1",
          "protein_id": "ENSP00000491330.1",
          "transcript_support_level": 5,
          "aa_start": 154,
          "aa_end": null,
          "aa_length": 208,
          "cds_start": 461,
          "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": "ENST00000638717.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "NM_001360064.2",
          "protein_id": "NP_001346993.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001360064.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "NM_001360071.2",
          "protein_id": "NP_001347000.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001360071.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "NM_001368131.1",
          "protein_id": "NP_001355060.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001368131.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "ENST00000611340.5",
          "protein_id": "ENSP00000480268.1",
          "transcript_support_level": 2,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000611340.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "ENST00000638778.1",
          "protein_id": "ENSP00000491353.1",
          "transcript_support_level": 4,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000638778.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "ENST00000638783.1",
          "protein_id": "ENSP00000491338.1",
          "transcript_support_level": 5,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000638783.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "ENST00000639465.1",
          "protein_id": "ENSP00000491180.1",
          "transcript_support_level": 5,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000639465.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.218C>T",
          "hgvs_p": "p.Ala73Val",
          "transcript": "NM_001368129.2",
          "protein_id": "NP_001355058.1",
          "transcript_support_level": null,
          "aa_start": 73,
          "aa_end": null,
          "aa_length": 177,
          "cds_start": 218,
          "cds_end": null,
          "cds_length": 534,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001368129.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.218C>T",
          "hgvs_p": "p.Ala73Val",
          "transcript": "NM_001368132.1",
          "protein_id": "NP_001355061.1",
          "transcript_support_level": null,
          "aa_start": 73,
          "aa_end": null,
          "aa_length": 177,
          "cds_start": 218,
          "cds_end": null,
          "cds_length": 534,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001368132.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.302C>T",
          "hgvs_p": "p.Ala101Val",
          "transcript": "ENST00000450221.6",
          "protein_id": "ENSP00000414900.2",
          "transcript_support_level": 3,
          "aa_start": 101,
          "aa_end": null,
          "aa_length": 144,
          "cds_start": 302,
          "cds_end": null,
          "cds_length": 435,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000450221.6"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "XM_024446550.2",
          "protein_id": "XP_024302318.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 281,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 846,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024446550.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "XM_011536113.3",
          "protein_id": "XP_011534415.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 272,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 819,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011536113.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val",
          "transcript": "XM_047419363.1",
          "protein_id": "XP_047275319.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 245,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 738,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047419363.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "XM_011536116.2",
          "protein_id": "XP_011534418.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011536116.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.266C>T",
          "hgvs_p": "p.Ala89Val",
          "transcript": "XM_024446551.2",
          "protein_id": "XP_024302319.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024446551.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.218C>T",
          "hgvs_p": "p.Ala73Val",
          "transcript": "XM_017011302.2",
          "protein_id": "XP_016866791.1",
          "transcript_support_level": null,
          "aa_start": 73,
          "aa_end": null,
          "aa_length": 177,
          "cds_start": 218,
          "cds_end": null,
          "cds_length": 534,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017011302.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.218C>T",
          "hgvs_p": "p.Ala73Val",
          "transcript": "XM_047419364.1",
          "protein_id": "XP_047275320.1",
          "transcript_support_level": null,
          "aa_start": 73,
          "aa_end": null,
          "aa_length": 177,
          "cds_start": 218,
          "cds_end": null,
          "cds_length": 534,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047419364.1"
        },
        {
          "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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.477-7590C>T",
          "hgvs_p": null,
          "transcript": "NM_001360057.2",
          "protein_id": "NP_001346986.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 224,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 675,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001360057.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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "c.63-7590C>T",
          "hgvs_p": null,
          "transcript": "ENST00000640980.1",
          "protein_id": "ENSP00000491191.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 86,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 261,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000640980.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": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.299C>T",
          "hgvs_p": null,
          "transcript": "ENST00000489412.1",
          "protein_id": null,
          "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": "pseudogene",
          "feature": "ENST00000489412.1"
        },
        {
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*214C>T",
          "hgvs_p": null,
          "transcript": "ENST00000638554.1",
          "protein_id": "ENSP00000492823.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000638554.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": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.261C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639648.1",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": "ENST00000639648.1"
        },
        {
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*214C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639849.1",
          "protein_id": "ENSP00000491224.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": "ENST00000639849.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.6004C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639859.1",
          "protein_id": null,
          "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": "retained_intron",
          "feature": "ENST00000639859.1"
        },
        {
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*214C>T",
          "hgvs_p": null,
          "transcript": "ENST00000640225.1",
          "protein_id": "ENSP00000492179.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000640225.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": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*360C>T",
          "hgvs_p": null,
          "transcript": "ENST00000640351.1",
          "protein_id": "ENSP00000491251.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000640351.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*214C>T",
          "hgvs_p": null,
          "transcript": "ENST00000638554.1",
          "protein_id": "ENSP00000492823.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000638554.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*214C>T",
          "hgvs_p": null,
          "transcript": "ENST00000639849.1",
          "protein_id": "ENSP00000491224.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": "ENST00000639849.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*214C>T",
          "hgvs_p": null,
          "transcript": "ENST00000640225.1",
          "protein_id": "ENSP00000492179.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000640225.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*360C>T",
          "hgvs_p": null,
          "transcript": "ENST00000640351.1",
          "protein_id": "ENSP00000491251.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000640351.1"
        },
        {
          "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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.292-7590C>T",
          "hgvs_p": null,
          "transcript": "NR_153398.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": "NR_153398.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*88C>T",
          "hgvs_p": null,
          "transcript": "ENST00000496228.2",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": "ENST00000496228.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EPM2A",
          "gene_hgnc_id": 3413,
          "hgvs_c": "n.*147C>T",
          "hgvs_p": null,
          "transcript": "ENST00000640297.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": "ENST00000640297.1"
        }
      ],
      "gene_symbol": "EPM2A",
      "gene_hgnc_id": 3413,
      "dbsnp": "rs147399860",
      "frequency_reference_population": 0.0011950562,
      "hom_count_reference_population": 5,
      "allele_count_reference_population": 1929,
      "gnomad_exomes_af": 0.00122995,
      "gnomad_genomes_af": 0.000860144,
      "gnomad_exomes_ac": 1798,
      "gnomad_genomes_ac": 131,
      "gnomad_exomes_homalt": 5,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.019255876541137695,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.206,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0734,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.36,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.993,
      "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": -13,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6,BS1,BS2",
      "acmg_by_gene": [
        {
          "score": -13,
          "benign_score": 13,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6",
            "BS1",
            "BS2"
          ],
          "verdict": "Benign",
          "transcript": "NM_005670.4",
          "gene_symbol": "EPM2A",
          "hgnc_id": 3413,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.680C>T",
          "hgvs_p": "p.Ala227Val"
        }
      ],
      "clinvar_disease": "EPM2A-related disorder,Inborn genetic diseases,Intellectual disability,Progressive myoclonic epilepsy,not provided,not specified",
      "clinvar_classification": "Conflicting classifications of pathogenicity",
      "clinvar_review_status": "criteria provided, conflicting classifications",
      "clinvar_submissions_summary": "US:1 LB:4 B:1",
      "phenotype_combined": "not provided|Progressive myoclonic epilepsy|Inborn genetic diseases|EPM2A-related disorder|Intellectual disability|not specified",
      "pathogenicity_classification_combined": "Conflicting classifications of pathogenicity",
      "custom_annotations": null
    }
  ],
  "message": null
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.