← Back to variant description

GeneBe API Showcase

This page demonstrates how to use the GeneBe API to query variant information. The API provides programmatic access to genomic annotations and variant data.

API presented here should be used for checking single variants. If you want to check many variants at once, please use other API endpoints that you will find in the documentation.

Documentation & Advanced Usage

Complete API documentation:docs.genebe.net/docs/api/overview/

Interactive endpoint tester:api.genebe.net/cloud/gb-api-doc/swagger-ui/

Python client for pandas:pypi.org/project/genebe/

Java CLI for VCF files:github.com/pstawinski/genebe-cli

All tools documented at:docs.genebe.net

API Request Examples for Variant: 2-62979327-C-T (hg38)

Bash / cURL Example

bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=2&pos=62979327&ref=C&alt=T&genome=hg38&allGenes=true"

API Response

json
{
  "variants": [
    {
      "chr": "2",
      "pos": 62979327,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_015252.5",
      "consequences": [
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "NM_001142616.3",
          "protein_id": "NP_001136088.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000431489.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001142616.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "ENST00000431489.6",
          "protein_id": "ENSP00000403783.1",
          "transcript_support_level": 1,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001142616.3",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000431489.6"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "ENST00000263991.9",
          "protein_id": "ENSP00000263991.5",
          "transcript_support_level": 1,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000263991.9"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "ENST00000405289.5",
          "protein_id": "ENSP00000385524.1",
          "transcript_support_level": 1,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000405289.5"
        },
        {
          "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": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "n.216C>T",
          "hgvs_p": null,
          "transcript": "ENST00000496857.5",
          "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": "pseudogene",
          "feature": "ENST00000496857.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "NM_001354212.1",
          "protein_id": "NP_001341141.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354212.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "NM_001354213.1",
          "protein_id": "NP_001341142.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354213.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "NM_001354214.1",
          "protein_id": "NP_001341143.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354214.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "NM_015252.5",
          "protein_id": "NP_056067.2",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_015252.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "ENST00000861125.1",
          "protein_id": "ENSP00000531184.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861125.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2702C>T",
          "hgvs_p": "p.Ala901Val",
          "transcript": "NM_001354215.1",
          "protein_id": "NP_001341144.1",
          "transcript_support_level": null,
          "aa_start": 901,
          "aa_end": null,
          "aa_length": 1230,
          "cds_start": 2702,
          "cds_end": null,
          "cds_length": 3693,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354215.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2702C>T",
          "hgvs_p": "p.Ala901Val",
          "transcript": "NM_001354216.2",
          "protein_id": "NP_001341145.1",
          "transcript_support_level": null,
          "aa_start": 901,
          "aa_end": null,
          "aa_length": 1230,
          "cds_start": 2702,
          "cds_end": null,
          "cds_length": 3693,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354216.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "NM_001142614.2",
          "protein_id": "NP_001136086.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001142614.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "NM_001354217.1",
          "protein_id": "NP_001341146.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354217.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "NM_001142615.3",
          "protein_id": "NP_001136087.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001142615.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "NM_001354218.1",
          "protein_id": "NP_001341147.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354218.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "ENST00000405015.7",
          "protein_id": "ENSP00000384143.3",
          "transcript_support_level": 2,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000405015.7"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "ENST00000861116.1",
          "protein_id": "ENSP00000531175.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861116.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "ENST00000861124.1",
          "protein_id": "ENSP00000531183.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861124.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "NM_001354219.2",
          "protein_id": "NP_001341148.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354219.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "NM_001354220.1",
          "protein_id": "NP_001341149.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354220.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "ENST00000861118.1",
          "protein_id": "ENSP00000531177.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861118.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2504C>T",
          "hgvs_p": "p.Ala835Val",
          "transcript": "ENST00000861122.1",
          "protein_id": "ENSP00000531181.1",
          "transcript_support_level": null,
          "aa_start": 835,
          "aa_end": null,
          "aa_length": 1128,
          "cds_start": 2504,
          "cds_end": null,
          "cds_length": 3387,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861122.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1859C>T",
          "hgvs_p": "p.Ala620Val",
          "transcript": "NM_001354221.2",
          "protein_id": "NP_001341150.1",
          "transcript_support_level": null,
          "aa_start": 620,
          "aa_end": null,
          "aa_length": 949,
          "cds_start": 1859,
          "cds_end": null,
          "cds_length": 2850,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354221.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1859C>T",
          "hgvs_p": "p.Ala620Val",
          "transcript": "ENST00000946019.1",
          "protein_id": "ENSP00000616078.1",
          "transcript_support_level": null,
          "aa_start": 620,
          "aa_end": null,
          "aa_length": 949,
          "cds_start": 1859,
          "cds_end": null,
          "cds_length": 2850,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000946019.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "ENST00000861117.1",
          "protein_id": "ENSP00000531176.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861117.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "ENST00000861120.1",
          "protein_id": "ENSP00000531179.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861120.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "ENST00000861126.1",
          "protein_id": "ENSP00000531185.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861126.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "ENST00000861121.1",
          "protein_id": "ENSP00000531180.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 893,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2682,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861121.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "NM_001354222.2",
          "protein_id": "NP_001341151.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 878,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2637,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354222.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "ENST00000861119.1",
          "protein_id": "ENSP00000531178.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 878,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2637,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861119.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "ENST00000861123.1",
          "protein_id": "ENSP00000531182.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 878,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2637,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861123.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1751C>T",
          "hgvs_p": "p.Ala584Val",
          "transcript": "ENST00000861127.1",
          "protein_id": "ENSP00000531186.1",
          "transcript_support_level": null,
          "aa_start": 584,
          "aa_end": null,
          "aa_length": 877,
          "cds_start": 1751,
          "cds_end": null,
          "cds_length": 2634,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861127.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1694C>T",
          "hgvs_p": "p.Ala565Val",
          "transcript": "ENST00000861128.1",
          "protein_id": "ENSP00000531187.1",
          "transcript_support_level": null,
          "aa_start": 565,
          "aa_end": null,
          "aa_length": 855,
          "cds_start": 1694,
          "cds_end": null,
          "cds_length": 2568,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000861128.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.182C>T",
          "hgvs_p": "p.Ala61Val",
          "transcript": "ENST00000422032.1",
          "protein_id": "ENSP00000388442.1",
          "transcript_support_level": 5,
          "aa_start": 61,
          "aa_end": null,
          "aa_length": 221,
          "cds_start": 182,
          "cds_end": null,
          "cds_length": 668,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000422032.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.377C>T",
          "hgvs_p": "p.Ala126Val",
          "transcript": "ENST00000444311.1",
          "protein_id": "ENSP00000399927.1",
          "transcript_support_level": 5,
          "aa_start": 126,
          "aa_end": null,
          "aa_length": 152,
          "cds_start": 377,
          "cds_end": null,
          "cds_length": 459,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000444311.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_005264226.4",
          "protein_id": "XP_005264283.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005264226.4"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_011532715.4",
          "protein_id": "XP_011531017.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011532715.4"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_047443744.1",
          "protein_id": "XP_047299700.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443744.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_047443745.1",
          "protein_id": "XP_047299701.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1231,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3696,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443745.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_005264227.2",
          "protein_id": "XP_005264284.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005264227.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443746.1",
          "protein_id": "XP_047299702.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443746.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443747.1",
          "protein_id": "XP_047299703.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443747.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443748.1",
          "protein_id": "XP_047299704.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443748.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443749.1",
          "protein_id": "XP_047299705.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443749.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_006711971.4",
          "protein_id": "XP_006712034.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_006711971.4"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_017003650.2",
          "protein_id": "XP_016859139.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017003650.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "XM_047443750.1",
          "protein_id": "XP_047299706.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443750.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "XM_047443751.1",
          "protein_id": "XP_047299707.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443751.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "XM_047443752.1",
          "protein_id": "XP_047299708.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443752.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "XM_047443753.1",
          "protein_id": "XP_047299709.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443753.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val",
          "transcript": "XM_047443754.1",
          "protein_id": "XP_047299710.1",
          "transcript_support_level": null,
          "aa_start": 902,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 2705,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443754.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2702C>T",
          "hgvs_p": "p.Ala901Val",
          "transcript": "XM_011532717.3",
          "protein_id": "XP_011531019.1",
          "transcript_support_level": null,
          "aa_start": 901,
          "aa_end": null,
          "aa_length": 1194,
          "cds_start": 2702,
          "cds_end": null,
          "cds_length": 3585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011532717.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443755.1",
          "protein_id": "XP_047299711.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443755.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443756.1",
          "protein_id": "XP_047299712.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443756.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2600C>T",
          "hgvs_p": "p.Ala867Val",
          "transcript": "XM_047443757.1",
          "protein_id": "XP_047299713.1",
          "transcript_support_level": null,
          "aa_start": 867,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 2600,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443757.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "XM_047443758.1",
          "protein_id": "XP_047299714.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443758.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2597C>T",
          "hgvs_p": "p.Ala866Val",
          "transcript": "XM_047443759.1",
          "protein_id": "XP_047299715.1",
          "transcript_support_level": null,
          "aa_start": 866,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 2597,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443759.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.2345C>T",
          "hgvs_p": "p.Ala782Val",
          "transcript": "XM_011532718.4",
          "protein_id": "XP_011531020.1",
          "transcript_support_level": null,
          "aa_start": 782,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 2345,
          "cds_end": null,
          "cds_length": 3336,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011532718.4"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1856C>T",
          "hgvs_p": "p.Ala619Val",
          "transcript": "XM_047443760.1",
          "protein_id": "XP_047299716.1",
          "transcript_support_level": null,
          "aa_start": 619,
          "aa_end": null,
          "aa_length": 948,
          "cds_start": 1856,
          "cds_end": null,
          "cds_length": 2847,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443760.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443761.1",
          "protein_id": "XP_047299717.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443761.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443762.1",
          "protein_id": "XP_047299718.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443762.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443763.1",
          "protein_id": "XP_047299719.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443763.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443764.1",
          "protein_id": "XP_047299720.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443764.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443765.1",
          "protein_id": "XP_047299721.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443765.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1751C>T",
          "hgvs_p": "p.Ala584Val",
          "transcript": "XM_047443766.1",
          "protein_id": "XP_047299722.1",
          "transcript_support_level": null,
          "aa_start": 584,
          "aa_end": null,
          "aa_length": 913,
          "cds_start": 1751,
          "cds_end": null,
          "cds_length": 2742,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443766.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1751C>T",
          "hgvs_p": "p.Ala584Val",
          "transcript": "XM_047443767.1",
          "protein_id": "XP_047299723.1",
          "transcript_support_level": null,
          "aa_start": 584,
          "aa_end": null,
          "aa_length": 913,
          "cds_start": 1751,
          "cds_end": null,
          "cds_length": 2742,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443767.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1859C>T",
          "hgvs_p": "p.Ala620Val",
          "transcript": "XM_047443768.1",
          "protein_id": "XP_047299724.1",
          "transcript_support_level": null,
          "aa_start": 620,
          "aa_end": null,
          "aa_length": 913,
          "cds_start": 1859,
          "cds_end": null,
          "cds_length": 2742,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443768.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1856C>T",
          "hgvs_p": "p.Ala619Val",
          "transcript": "XM_047443769.1",
          "protein_id": "XP_047299725.1",
          "transcript_support_level": null,
          "aa_start": 619,
          "aa_end": null,
          "aa_length": 912,
          "cds_start": 1856,
          "cds_end": null,
          "cds_length": 2739,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443769.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443770.1",
          "protein_id": "XP_047299726.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 878,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2637,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443770.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1754C>T",
          "hgvs_p": "p.Ala585Val",
          "transcript": "XM_047443771.1",
          "protein_id": "XP_047299727.1",
          "transcript_support_level": null,
          "aa_start": 585,
          "aa_end": null,
          "aa_length": 878,
          "cds_start": 1754,
          "cds_end": null,
          "cds_length": 2637,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443771.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1751C>T",
          "hgvs_p": "p.Ala584Val",
          "transcript": "XM_047443772.1",
          "protein_id": "XP_047299728.1",
          "transcript_support_level": null,
          "aa_start": 584,
          "aa_end": null,
          "aa_length": 877,
          "cds_start": 1751,
          "cds_end": null,
          "cds_length": 2634,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443772.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.1751C>T",
          "hgvs_p": "p.Ala584Val",
          "transcript": "XM_047443773.1",
          "protein_id": "XP_047299729.1",
          "transcript_support_level": null,
          "aa_start": 584,
          "aa_end": null,
          "aa_length": 877,
          "cds_start": 1751,
          "cds_end": null,
          "cds_length": 2634,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047443773.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "n.5C>T",
          "hgvs_p": null,
          "transcript": "ENST00000491965.1",
          "protein_id": null,
          "transcript_support_level": 2,
          "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": "ENST00000491965.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": 5,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1-AS1",
          "gene_hgnc_id": 55766,
          "hgvs_c": "n.573-21836G>A",
          "hgvs_p": null,
          "transcript": "ENST00000650490.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": "ENST00000650490.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": 4,
          "intron_rank": 3,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1-AS1",
          "gene_hgnc_id": 55766,
          "hgvs_c": "n.390-21836G>A",
          "hgvs_p": null,
          "transcript": "ENST00000766974.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": "ENST00000766974.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": 4,
          "intron_rank": 3,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1-AS1",
          "gene_hgnc_id": 55766,
          "hgvs_c": "n.567-21836G>A",
          "hgvs_p": null,
          "transcript": "ENST00000766975.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": "ENST00000766975.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": 4,
          "intron_rank": 3,
          "intron_rank_end": null,
          "gene_symbol": "EHBP1-AS1",
          "gene_hgnc_id": 55766,
          "hgvs_c": "n.380-21836G>A",
          "hgvs_p": null,
          "transcript": "ENST00000766976.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": "ENST00000766976.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "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": "EHBP1",
          "gene_hgnc_id": 29144,
          "hgvs_c": "c.*41C>T",
          "hgvs_p": null,
          "transcript": "ENST00000454124.1",
          "protein_id": "ENSP00000396186.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 108,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 327,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000454124.1"
        }
      ],
      "gene_symbol": "EHBP1",
      "gene_hgnc_id": 29144,
      "dbsnp": null,
      "frequency_reference_population": null,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 0,
      "gnomad_exomes_af": null,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": null,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": null,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.44798123836517334,
      "computational_prediction_selected": "Uncertain_significance",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.07000000029802322,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.316,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.183,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.18,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 6.817,
      "phylop100way_prediction": "Uncertain_significance",
      "spliceai_max_score": 0.07,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 2,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2",
      "acmg_by_gene": [
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PM2"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_015252.5",
          "gene_symbol": "EHBP1",
          "hgnc_id": 29144,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.2705C>T",
          "hgvs_p": "p.Ala902Val"
        },
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PM2"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000650490.1",
          "gene_symbol": "EHBP1-AS1",
          "hgnc_id": 55766,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.573-21836G>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
}