← 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: 17-78191028-C-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "17",
      "pos": 78191028,
      "ref": "C",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_001145526.3",
      "consequences": [
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001010982.5",
          "protein_id": "NP_001010982.2",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 303,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 912,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000409257.10",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001010982.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000409257.10",
          "protein_id": "ENSP00000386890.4",
          "transcript_support_level": 1,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 303,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 912,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001010982.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000409257.10"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000327898.9",
          "protein_id": "ENSP00000328938.5",
          "transcript_support_level": 1,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 308,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 927,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000327898.9"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000589256.5",
          "protein_id": "ENSP00000466859.1",
          "transcript_support_level": 1,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 57,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 174,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000589256.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.215C>A",
          "hgvs_p": "p.Ala72Asp",
          "transcript": "ENST00000857474.1",
          "protein_id": "ENSP00000527533.1",
          "transcript_support_level": null,
          "aa_start": 72,
          "aa_end": null,
          "aa_length": 334,
          "cds_start": 215,
          "cds_end": null,
          "cds_length": 1005,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857474.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857484.1",
          "protein_id": "ENSP00000527543.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 332,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 999,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857484.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000965675.1",
          "protein_id": "ENSP00000635734.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 327,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 984,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000965675.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857463.1",
          "protein_id": "ENSP00000527522.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 322,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 969,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857463.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857469.1",
          "protein_id": "ENSP00000527528.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 320,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 963,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857469.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857477.1",
          "protein_id": "ENSP00000527536.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 314,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 945,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857477.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857470.1",
          "protein_id": "ENSP00000527529.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 309,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 930,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857470.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001145526.3",
          "protein_id": "NP_001138998.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 308,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 927,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001145526.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857478.1",
          "protein_id": "ENSP00000527537.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 305,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 918,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857478.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857464.1",
          "protein_id": "ENSP00000527523.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 304,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 915,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857464.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857480.1",
          "protein_id": "ENSP00000527539.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 273,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 822,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857480.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857481.1",
          "protein_id": "ENSP00000527540.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 273,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 822,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857481.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857465.1",
          "protein_id": "ENSP00000527524.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 268,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 807,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857465.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857479.1",
          "protein_id": "ENSP00000527538.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 255,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857479.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857483.1",
          "protein_id": "ENSP00000527542.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 250,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 753,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857483.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001391999.1",
          "protein_id": "NP_001378928.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 240,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 723,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001391999.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857466.1",
          "protein_id": "ENSP00000527525.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 226,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 681,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857466.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857485.1",
          "protein_id": "ENSP00000527544.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 223,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 672,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857485.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000591256.5",
          "protein_id": "ENSP00000466515.1",
          "transcript_support_level": 4,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 205,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000591256.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392000.1",
          "protein_id": "NP_001378929.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 191,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 576,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392000.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857468.1",
          "protein_id": "ENSP00000527527.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 191,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 576,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857468.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000586542.5",
          "protein_id": "ENSP00000466566.1",
          "transcript_support_level": 4,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 186,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 562,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000586542.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392001.1",
          "protein_id": "NP_001378930.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392001.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392002.1",
          "protein_id": "NP_001378931.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 170,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 513,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392002.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857472.1",
          "protein_id": "ENSP00000527531.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 166,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857472.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392003.1",
          "protein_id": "NP_001378932.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 148,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392003.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857473.1",
          "protein_id": "ENSP00000527532.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 148,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857473.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392004.1",
          "protein_id": "NP_001378933.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 135,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 408,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392004.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392005.1",
          "protein_id": "NP_001378934.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 135,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 408,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392005.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857467.1",
          "protein_id": "ENSP00000527526.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 135,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 408,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857467.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857471.1",
          "protein_id": "ENSP00000527530.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 135,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 408,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857471.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "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": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "NM_001392006.1",
          "protein_id": "NP_001378935.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 128,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 387,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392006.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000857475.1",
          "protein_id": "ENSP00000527534.1",
          "transcript_support_level": null,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 113,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 342,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857475.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000588800.5",
          "protein_id": "ENSP00000464929.1",
          "transcript_support_level": 2,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 93,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 282,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000588800.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp",
          "transcript": "ENST00000591952.5",
          "protein_id": "ENSP00000467365.1",
          "transcript_support_level": 2,
          "aa_start": 41,
          "aa_end": null,
          "aa_length": 84,
          "cds_start": 122,
          "cds_end": null,
          "cds_length": 255,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000591952.5"
        },
        {
          "aa_ref": "A",
          "aa_alt": "D",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.71C>A",
          "hgvs_p": "p.Ala24Asp",
          "transcript": "ENST00000586731.1",
          "protein_id": "ENSP00000466241.1",
          "transcript_support_level": 3,
          "aa_start": 24,
          "aa_end": null,
          "aa_length": 37,
          "cds_start": 71,
          "cds_end": null,
          "cds_length": 114,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000586731.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.63+3595C>A",
          "hgvs_p": null,
          "transcript": "ENST00000857482.1",
          "protein_id": "ENSP00000527541.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 249,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 750,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857482.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.63+3595C>A",
          "hgvs_p": null,
          "transcript": "ENST00000857476.1",
          "protein_id": "ENSP00000527535.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 244,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 735,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000857476.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.63+3595C>A",
          "hgvs_p": null,
          "transcript": "NM_001392007.1",
          "protein_id": "NP_001378936.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 124,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001392007.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "c.63+3595C>A",
          "hgvs_p": null,
          "transcript": "ENST00000912342.1",
          "protein_id": "ENSP00000582401.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 29,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 90,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000912342.1"
        },
        {
          "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": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.122C>A",
          "hgvs_p": null,
          "transcript": "ENST00000588199.5",
          "protein_id": "ENSP00000465406.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000588199.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": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.122C>A",
          "hgvs_p": null,
          "transcript": "ENST00000589107.5",
          "protein_id": "ENSP00000467869.1",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000589107.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.318C>A",
          "hgvs_p": null,
          "transcript": "ENST00000591538.1",
          "protein_id": null,
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000591538.1"
        },
        {
          "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": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.131C>A",
          "hgvs_p": null,
          "transcript": "ENST00000592988.5",
          "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": "ENST00000592988.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": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.131C>A",
          "hgvs_p": null,
          "transcript": "NR_027083.2",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "NR_027083.2"
        },
        {
          "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": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.131C>A",
          "hgvs_p": null,
          "transcript": "XR_007065262.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": "XR_007065262.1"
        },
        {
          "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": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AFMID",
          "gene_hgnc_id": 20910,
          "hgvs_c": "n.131C>A",
          "hgvs_p": null,
          "transcript": "XR_934369.2",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "XR_934369.2"
        }
      ],
      "gene_symbol": "AFMID",
      "gene_hgnc_id": 20910,
      "dbsnp": "rs758457659",
      "frequency_reference_population": 0.0000068408062,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 10,
      "gnomad_exomes_af": 0.00000684081,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 10,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.33420372009277344,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.063,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.4707,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.54,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.778,
      "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": 1,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4",
      "acmg_by_gene": [
        {
          "score": 1,
          "benign_score": 1,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001145526.3",
          "gene_symbol": "AFMID",
          "hgnc_id": 20910,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.122C>A",
          "hgvs_p": "p.Ala41Asp"
        }
      ],
      "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
}