← 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: 9-137834939-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "9",
      "pos": 137834939,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "ENST00000460843.6",
      "consequences": [
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3883G>A",
          "hgvs_p": "p.Ala1295Thr",
          "transcript": "NM_024757.5",
          "protein_id": "NP_079033.4",
          "transcript_support_level": null,
          "aa_start": 1295,
          "aa_end": null,
          "aa_length": 1298,
          "cds_start": 3883,
          "cds_end": null,
          "cds_length": 3897,
          "cdna_start": 3907,
          "cdna_end": null,
          "cdna_length": 5095,
          "mane_select": "ENST00000460843.6",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3883G>A",
          "hgvs_p": "p.Ala1295Thr",
          "transcript": "ENST00000460843.6",
          "protein_id": "ENSP00000417980.1",
          "transcript_support_level": 5,
          "aa_start": 1295,
          "aa_end": null,
          "aa_length": 1298,
          "cds_start": 3883,
          "cds_end": null,
          "cds_length": 3897,
          "cdna_start": 3907,
          "cdna_end": null,
          "cdna_length": 5095,
          "mane_select": "NM_024757.5",
          "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": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.1607G>A",
          "hgvs_p": null,
          "transcript": "ENST00000475564.5",
          "protein_id": null,
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 2782,
          "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": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.1236G>A",
          "hgvs_p": null,
          "transcript": "ENST00000494249.5",
          "protein_id": null,
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 2038,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3862G>A",
          "hgvs_p": "p.Ala1288Thr",
          "transcript": "NM_001354263.2",
          "protein_id": "NP_001341192.1",
          "transcript_support_level": null,
          "aa_start": 1288,
          "aa_end": null,
          "aa_length": 1291,
          "cds_start": 3862,
          "cds_end": null,
          "cds_length": 3876,
          "cdna_start": 3886,
          "cdna_end": null,
          "cdna_length": 5074,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3790G>A",
          "hgvs_p": "p.Ala1264Thr",
          "transcript": "ENST00000637161.1",
          "protein_id": "ENSP00000490328.1",
          "transcript_support_level": 5,
          "aa_start": 1264,
          "aa_end": null,
          "aa_length": 1267,
          "cds_start": 3790,
          "cds_end": null,
          "cds_length": 3804,
          "cdna_start": 3888,
          "cdna_end": null,
          "cdna_length": 5049,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3892G>A",
          "hgvs_p": "p.Ala1298Thr",
          "transcript": "XM_011519021.4",
          "protein_id": "XP_011517323.1",
          "transcript_support_level": null,
          "aa_start": 1298,
          "aa_end": null,
          "aa_length": 1301,
          "cds_start": 3892,
          "cds_end": null,
          "cds_length": 3906,
          "cdna_start": 3993,
          "cdna_end": null,
          "cdna_length": 5181,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3889G>A",
          "hgvs_p": "p.Ala1297Thr",
          "transcript": "XM_011519022.4",
          "protein_id": "XP_011517324.1",
          "transcript_support_level": null,
          "aa_start": 1297,
          "aa_end": null,
          "aa_length": 1300,
          "cds_start": 3889,
          "cds_end": null,
          "cds_length": 3903,
          "cdna_start": 4377,
          "cdna_end": null,
          "cdna_length": 5565,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3874G>A",
          "hgvs_p": "p.Ala1292Thr",
          "transcript": "XM_047423872.1",
          "protein_id": "XP_047279828.1",
          "transcript_support_level": null,
          "aa_start": 1292,
          "aa_end": null,
          "aa_length": 1295,
          "cds_start": 3874,
          "cds_end": null,
          "cds_length": 3888,
          "cdna_start": 4010,
          "cdna_end": null,
          "cdna_length": 5198,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3871G>A",
          "hgvs_p": "p.Ala1291Thr",
          "transcript": "XM_011519023.4",
          "protein_id": "XP_011517325.1",
          "transcript_support_level": null,
          "aa_start": 1291,
          "aa_end": null,
          "aa_length": 1294,
          "cds_start": 3871,
          "cds_end": null,
          "cds_length": 3885,
          "cdna_start": 3972,
          "cdna_end": null,
          "cdna_length": 5160,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3868G>A",
          "hgvs_p": "p.Ala1290Thr",
          "transcript": "XM_017015134.2",
          "protein_id": "XP_016870623.1",
          "transcript_support_level": null,
          "aa_start": 1290,
          "aa_end": null,
          "aa_length": 1293,
          "cds_start": 3868,
          "cds_end": null,
          "cds_length": 3882,
          "cdna_start": 4356,
          "cdna_end": null,
          "cdna_length": 5544,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3853G>A",
          "hgvs_p": "p.Ala1285Thr",
          "transcript": "XM_047423873.1",
          "protein_id": "XP_047279829.1",
          "transcript_support_level": null,
          "aa_start": 1285,
          "aa_end": null,
          "aa_length": 1288,
          "cds_start": 3853,
          "cds_end": null,
          "cds_length": 3867,
          "cdna_start": 12130,
          "cdna_end": null,
          "cdna_length": 13318,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3814G>A",
          "hgvs_p": "p.Ala1272Thr",
          "transcript": "XM_047423874.1",
          "protein_id": "XP_047279830.1",
          "transcript_support_level": null,
          "aa_start": 1272,
          "aa_end": null,
          "aa_length": 1275,
          "cds_start": 3814,
          "cds_end": null,
          "cds_length": 3828,
          "cdna_start": 3915,
          "cdna_end": null,
          "cdna_length": 5103,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3796G>A",
          "hgvs_p": "p.Ala1266Thr",
          "transcript": "XM_047423875.1",
          "protein_id": "XP_047279831.1",
          "transcript_support_level": null,
          "aa_start": 1266,
          "aa_end": null,
          "aa_length": 1269,
          "cds_start": 3796,
          "cds_end": null,
          "cds_length": 3810,
          "cdna_start": 3932,
          "cdna_end": null,
          "cdna_length": 5120,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3793G>A",
          "hgvs_p": "p.Ala1265Thr",
          "transcript": "XM_047423876.1",
          "protein_id": "XP_047279832.1",
          "transcript_support_level": null,
          "aa_start": 1265,
          "aa_end": null,
          "aa_length": 1268,
          "cds_start": 3793,
          "cds_end": null,
          "cds_length": 3807,
          "cdna_start": 3894,
          "cdna_end": null,
          "cdna_length": 5082,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3790G>A",
          "hgvs_p": "p.Ala1264Thr",
          "transcript": "XM_005266110.2",
          "protein_id": "XP_005266167.1",
          "transcript_support_level": null,
          "aa_start": 1264,
          "aa_end": null,
          "aa_length": 1267,
          "cds_start": 3790,
          "cds_end": null,
          "cds_length": 3804,
          "cdna_start": 3843,
          "cdna_end": null,
          "cdna_length": 5031,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3790G>A",
          "hgvs_p": "p.Ala1264Thr",
          "transcript": "XM_047423877.1",
          "protein_id": "XP_047279833.1",
          "transcript_support_level": null,
          "aa_start": 1264,
          "aa_end": null,
          "aa_length": 1267,
          "cds_start": 3790,
          "cds_end": null,
          "cds_length": 3804,
          "cdna_start": 3986,
          "cdna_end": null,
          "cdna_length": 5174,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3790G>A",
          "hgvs_p": "p.Ala1264Thr",
          "transcript": "XM_047423878.1",
          "protein_id": "XP_047279834.1",
          "transcript_support_level": null,
          "aa_start": 1264,
          "aa_end": null,
          "aa_length": 1267,
          "cds_start": 3790,
          "cds_end": null,
          "cds_length": 3804,
          "cdna_start": 3946,
          "cdna_end": null,
          "cdna_length": 5134,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3769G>A",
          "hgvs_p": "p.Ala1257Thr",
          "transcript": "XM_017015138.2",
          "protein_id": "XP_016870627.1",
          "transcript_support_level": null,
          "aa_start": 1257,
          "aa_end": null,
          "aa_length": 1260,
          "cds_start": 3769,
          "cds_end": null,
          "cds_length": 3783,
          "cdna_start": 3822,
          "cdna_end": null,
          "cdna_length": 5010,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3769G>A",
          "hgvs_p": "p.Ala1257Thr",
          "transcript": "XM_047423879.1",
          "protein_id": "XP_047279835.1",
          "transcript_support_level": null,
          "aa_start": 1257,
          "aa_end": null,
          "aa_length": 1260,
          "cds_start": 3769,
          "cds_end": null,
          "cds_length": 3783,
          "cdna_start": 3889,
          "cdna_end": null,
          "cdna_length": 5077,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3748G>A",
          "hgvs_p": "p.Ala1250Thr",
          "transcript": "XM_047423880.1",
          "protein_id": "XP_047279836.1",
          "transcript_support_level": null,
          "aa_start": 1250,
          "aa_end": null,
          "aa_length": 1253,
          "cds_start": 3748,
          "cds_end": null,
          "cds_length": 3762,
          "cdna_start": 3849,
          "cdna_end": null,
          "cdna_length": 5037,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3712G>A",
          "hgvs_p": "p.Ala1238Thr",
          "transcript": "XM_047423881.1",
          "protein_id": "XP_047279837.1",
          "transcript_support_level": null,
          "aa_start": 1238,
          "aa_end": null,
          "aa_length": 1241,
          "cds_start": 3712,
          "cds_end": null,
          "cds_length": 3726,
          "cdna_start": 3765,
          "cdna_end": null,
          "cdna_length": 4953,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3691G>A",
          "hgvs_p": "p.Ala1231Thr",
          "transcript": "XM_047423882.1",
          "protein_id": "XP_047279838.1",
          "transcript_support_level": null,
          "aa_start": 1231,
          "aa_end": null,
          "aa_length": 1234,
          "cds_start": 3691,
          "cds_end": null,
          "cds_length": 3705,
          "cdna_start": 3744,
          "cdna_end": null,
          "cdna_length": 4932,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3646G>A",
          "hgvs_p": "p.Ala1216Thr",
          "transcript": "XM_047423883.1",
          "protein_id": "XP_047279839.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1219,
          "cds_start": 3646,
          "cds_end": null,
          "cds_length": 3660,
          "cdna_start": 3699,
          "cdna_end": null,
          "cdna_length": 4887,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3625G>A",
          "hgvs_p": "p.Ala1209Thr",
          "transcript": "XM_047423884.1",
          "protein_id": "XP_047279840.1",
          "transcript_support_level": null,
          "aa_start": 1209,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3625,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": 3678,
          "cdna_end": null,
          "cdna_length": 4866,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3547G>A",
          "hgvs_p": "p.Ala1183Thr",
          "transcript": "XM_047423885.1",
          "protein_id": "XP_047279841.1",
          "transcript_support_level": null,
          "aa_start": 1183,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3547,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": 3600,
          "cdna_end": null,
          "cdna_length": 4788,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.3007G>A",
          "hgvs_p": "p.Ala1003Thr",
          "transcript": "XM_024447677.2",
          "protein_id": "XP_024303445.1",
          "transcript_support_level": null,
          "aa_start": 1003,
          "aa_end": null,
          "aa_length": 1006,
          "cds_start": 3007,
          "cds_end": null,
          "cds_length": 3021,
          "cdna_start": 13284,
          "cdna_end": null,
          "cdna_length": 14472,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.2314G>A",
          "hgvs_p": "p.Ala772Thr",
          "transcript": "XM_011519029.4",
          "protein_id": "XP_011517331.1",
          "transcript_support_level": null,
          "aa_start": 772,
          "aa_end": null,
          "aa_length": 775,
          "cds_start": 2314,
          "cds_end": null,
          "cds_length": 2328,
          "cdna_start": 2534,
          "cdna_end": null,
          "cdna_length": 3722,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.1666G>A",
          "hgvs_p": "p.Ala556Thr",
          "transcript": "XM_011519030.4",
          "protein_id": "XP_011517332.1",
          "transcript_support_level": null,
          "aa_start": 556,
          "aa_end": null,
          "aa_length": 559,
          "cds_start": 1666,
          "cds_end": null,
          "cds_length": 1680,
          "cdna_start": 3155,
          "cdna_end": null,
          "cdna_length": 4343,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.1453G>A",
          "hgvs_p": "p.Ala485Thr",
          "transcript": "XM_011519031.2",
          "protein_id": "XP_011517333.1",
          "transcript_support_level": null,
          "aa_start": 485,
          "aa_end": null,
          "aa_length": 488,
          "cds_start": 1453,
          "cds_end": null,
          "cds_length": 1467,
          "cdna_start": 1566,
          "cdna_end": null,
          "cdna_length": 2754,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "c.1453G>A",
          "hgvs_p": "p.Ala485Thr",
          "transcript": "XM_047423890.1",
          "protein_id": "XP_047279846.1",
          "transcript_support_level": null,
          "aa_start": 485,
          "aa_end": null,
          "aa_length": 488,
          "cds_start": 1453,
          "cds_end": null,
          "cds_length": 1467,
          "cdna_start": 1695,
          "cdna_end": null,
          "cdna_length": 2883,
          "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": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.655G>A",
          "hgvs_p": null,
          "transcript": "ENST00000472849.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": 708,
          "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": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.613G>A",
          "hgvs_p": null,
          "transcript": "ENST00000475704.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": 756,
          "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": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.864G>A",
          "hgvs_p": null,
          "transcript": "ENST00000637748.1",
          "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": 2006,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": 20,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.2398-11621G>A",
          "hgvs_p": null,
          "transcript": "ENST00000462942.3",
          "protein_id": "ENSP00000436107.1",
          "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": 7842,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHMT1",
          "gene_hgnc_id": 24650,
          "hgvs_c": "n.*844G>A",
          "hgvs_p": null,
          "transcript": "ENST00000637891.1",
          "protein_id": "ENSP00000490907.1",
          "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": 1930,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "EHMT1",
      "gene_hgnc_id": 24650,
      "dbsnp": "rs775220788",
      "frequency_reference_population": 0.000023120258,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 35,
      "gnomad_exomes_af": 0.0000235004,
      "gnomad_genomes_af": 0.0000197179,
      "gnomad_exomes_ac": 32,
      "gnomad_genomes_ac": 3,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.04809883236885071,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.046,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0744,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.45,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 1.004,
      "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": -16,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Very_Strong,BS2",
      "acmg_by_gene": [
        {
          "score": -16,
          "benign_score": 16,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BS2"
          ],
          "verdict": "Benign",
          "transcript": "ENST00000460843.6",
          "gene_symbol": "EHMT1",
          "hgnc_id": 24650,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.3883G>A",
          "hgvs_p": "p.Ala1295Thr"
        }
      ],
      "clinvar_disease": "Inborn genetic diseases,Kleefstra syndrome 1,not specified",
      "clinvar_classification": "Likely benign",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "LB:3",
      "phenotype_combined": "Kleefstra syndrome 1|Inborn genetic diseases|not specified",
      "pathogenicity_classification_combined": "Likely benign",
      "custom_annotations": null
    }
  ],
  "message": null
}