← 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: 1-23310702-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "1",
      "pos": 23310702,
      "ref": "G",
      "alt": "A",
      "effect": "stop_gained",
      "transcript": "ENST00000374616.7",
      "consequences": [
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1654C>T",
          "hgvs_p": "p.Gln552*",
          "transcript": "NM_005826.5",
          "protein_id": "NP_005817.1",
          "transcript_support_level": null,
          "aa_start": 552,
          "aa_end": null,
          "aa_length": 633,
          "cds_start": 1654,
          "cds_end": null,
          "cds_length": 1902,
          "cdna_start": 1737,
          "cdna_end": null,
          "cdna_length": 7751,
          "mane_select": "ENST00000302271.11",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1654C>T",
          "hgvs_p": "p.Gln552*",
          "transcript": "ENST00000302271.11",
          "protein_id": "ENSP00000304405.6",
          "transcript_support_level": 1,
          "aa_start": 552,
          "aa_end": null,
          "aa_length": 633,
          "cds_start": 1654,
          "cds_end": null,
          "cds_length": 1902,
          "cdna_start": 1737,
          "cdna_end": null,
          "cdna_length": 7751,
          "mane_select": "NM_005826.5",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1663C>T",
          "hgvs_p": "p.Gln555*",
          "transcript": "ENST00000374616.7",
          "protein_id": "ENSP00000363745.3",
          "transcript_support_level": 1,
          "aa_start": 555,
          "aa_end": null,
          "aa_length": 636,
          "cds_start": 1663,
          "cds_end": null,
          "cds_length": 1911,
          "cdna_start": 1772,
          "cdna_end": null,
          "cdna_length": 2691,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1360C>T",
          "hgvs_p": "p.Gln454*",
          "transcript": "ENST00000478691.5",
          "protein_id": "ENSP00000474437.1",
          "transcript_support_level": 1,
          "aa_start": 454,
          "aa_end": null,
          "aa_length": 535,
          "cds_start": 1360,
          "cds_end": null,
          "cds_length": 1608,
          "cdna_start": 1632,
          "cdna_end": null,
          "cdna_length": 7646,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "n.719C>T",
          "hgvs_p": null,
          "transcript": "ENST00000476660.1",
          "protein_id": null,
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1637,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1663C>T",
          "hgvs_p": "p.Gln555*",
          "transcript": "NM_001102398.3",
          "protein_id": "NP_001095868.1",
          "transcript_support_level": null,
          "aa_start": 555,
          "aa_end": null,
          "aa_length": 636,
          "cds_start": 1663,
          "cds_end": null,
          "cds_length": 1911,
          "cdna_start": 1746,
          "cdna_end": null,
          "cdna_length": 7760,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1654C>T",
          "hgvs_p": "p.Gln552*",
          "transcript": "NM_001438564.1",
          "protein_id": "NP_001425493.1",
          "transcript_support_level": null,
          "aa_start": 552,
          "aa_end": null,
          "aa_length": 633,
          "cds_start": 1654,
          "cds_end": null,
          "cds_length": 1902,
          "cdna_start": 1740,
          "cdna_end": null,
          "cdna_length": 7754,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1654C>T",
          "hgvs_p": "p.Gln552*",
          "transcript": "ENST00000374612.5",
          "protein_id": "ENSP00000363741.1",
          "transcript_support_level": 5,
          "aa_start": 552,
          "aa_end": null,
          "aa_length": 633,
          "cds_start": 1654,
          "cds_end": null,
          "cds_length": 1902,
          "cdna_start": 1778,
          "cdna_end": null,
          "cdna_length": 2694,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1540C>T",
          "hgvs_p": "p.Gln514*",
          "transcript": "NM_001297620.2",
          "protein_id": "NP_001284549.1",
          "transcript_support_level": null,
          "aa_start": 514,
          "aa_end": null,
          "aa_length": 595,
          "cds_start": 1540,
          "cds_end": null,
          "cds_length": 1788,
          "cdna_start": 1623,
          "cdna_end": null,
          "cdna_length": 7637,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1540C>T",
          "hgvs_p": "p.Gln514*",
          "transcript": "ENST00000463552.6",
          "protein_id": "ENSP00000502509.2",
          "transcript_support_level": 4,
          "aa_start": 514,
          "aa_end": null,
          "aa_length": 595,
          "cds_start": 1540,
          "cds_end": null,
          "cds_length": 1788,
          "cdna_start": 1669,
          "cdna_end": null,
          "cdna_length": 7683,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1477C>T",
          "hgvs_p": "p.Gln493*",
          "transcript": "NM_001437727.1",
          "protein_id": "NP_001424656.1",
          "transcript_support_level": null,
          "aa_start": 493,
          "aa_end": null,
          "aa_length": 574,
          "cds_start": 1477,
          "cds_end": null,
          "cds_length": 1725,
          "cdna_start": 1560,
          "cdna_end": null,
          "cdna_length": 7574,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1477C>T",
          "hgvs_p": "p.Gln493*",
          "transcript": "ENST00000470941.6",
          "protein_id": "ENSP00000502234.2",
          "transcript_support_level": 4,
          "aa_start": 493,
          "aa_end": null,
          "aa_length": 574,
          "cds_start": 1477,
          "cds_end": null,
          "cds_length": 1725,
          "cdna_start": 1560,
          "cdna_end": null,
          "cdna_length": 7574,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1360C>T",
          "hgvs_p": "p.Gln454*",
          "transcript": "NM_001102399.3",
          "protein_id": "NP_001095869.1",
          "transcript_support_level": null,
          "aa_start": 454,
          "aa_end": null,
          "aa_length": 535,
          "cds_start": 1360,
          "cds_end": null,
          "cds_length": 1608,
          "cdna_start": 1580,
          "cdna_end": null,
          "cdna_length": 7594,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1351C>T",
          "hgvs_p": "p.Gln451*",
          "transcript": "NM_001102397.3",
          "protein_id": "NP_001095867.1",
          "transcript_support_level": null,
          "aa_start": 451,
          "aa_end": null,
          "aa_length": 532,
          "cds_start": 1351,
          "cds_end": null,
          "cds_length": 1599,
          "cdna_start": 1571,
          "cdna_end": null,
          "cdna_length": 7585,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1351C>T",
          "hgvs_p": "p.Gln451*",
          "transcript": "ENST00000476451.3",
          "protein_id": "ENSP00000502301.2",
          "transcript_support_level": 4,
          "aa_start": 451,
          "aa_end": null,
          "aa_length": 532,
          "cds_start": 1351,
          "cds_end": null,
          "cds_length": 1599,
          "cdna_start": 1669,
          "cdna_end": null,
          "cdna_length": 2518,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1237C>T",
          "hgvs_p": "p.Gln413*",
          "transcript": "NM_001297622.2",
          "protein_id": "NP_001284551.1",
          "transcript_support_level": null,
          "aa_start": 413,
          "aa_end": null,
          "aa_length": 494,
          "cds_start": 1237,
          "cds_end": null,
          "cds_length": 1485,
          "cdna_start": 1457,
          "cdna_end": null,
          "cdna_length": 7471,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1237C>T",
          "hgvs_p": "p.Gln413*",
          "transcript": "ENST00000606561.5",
          "protein_id": "ENSP00000475760.1",
          "transcript_support_level": 2,
          "aa_start": 413,
          "aa_end": null,
          "aa_length": 494,
          "cds_start": 1237,
          "cds_end": null,
          "cds_length": 1485,
          "cdna_start": 1468,
          "cdna_end": null,
          "cdna_length": 1837,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1198C>T",
          "hgvs_p": "p.Gln400*",
          "transcript": "ENST00000675048.1",
          "protein_id": "ENSP00000502029.1",
          "transcript_support_level": null,
          "aa_start": 400,
          "aa_end": null,
          "aa_length": 481,
          "cds_start": 1198,
          "cds_end": null,
          "cds_length": 1446,
          "cdna_start": 1327,
          "cdna_end": null,
          "cdna_length": 2099,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1174C>T",
          "hgvs_p": "p.Gln392*",
          "transcript": "NM_001297621.2",
          "protein_id": "NP_001284550.1",
          "transcript_support_level": null,
          "aa_start": 392,
          "aa_end": null,
          "aa_length": 473,
          "cds_start": 1174,
          "cds_end": null,
          "cds_length": 1422,
          "cdna_start": 1394,
          "cdna_end": null,
          "cdna_length": 7408,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1738C>T",
          "hgvs_p": "p.Gln580*",
          "transcript": "XM_047424699.1",
          "protein_id": "XP_047280655.1",
          "transcript_support_level": null,
          "aa_start": 580,
          "aa_end": null,
          "aa_length": 661,
          "cds_start": 1738,
          "cds_end": null,
          "cds_length": 1986,
          "cdna_start": 2449,
          "cdna_end": null,
          "cdna_length": 8463,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1735C>T",
          "hgvs_p": "p.Gln579*",
          "transcript": "XM_047424712.1",
          "protein_id": "XP_047280668.1",
          "transcript_support_level": null,
          "aa_start": 579,
          "aa_end": null,
          "aa_length": 660,
          "cds_start": 1735,
          "cds_end": null,
          "cds_length": 1983,
          "cdna_start": 2446,
          "cdna_end": null,
          "cdna_length": 8460,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1729C>T",
          "hgvs_p": "p.Gln577*",
          "transcript": "XM_047424719.1",
          "protein_id": "XP_047280675.1",
          "transcript_support_level": null,
          "aa_start": 577,
          "aa_end": null,
          "aa_length": 658,
          "cds_start": 1729,
          "cds_end": null,
          "cds_length": 1977,
          "cdna_start": 2440,
          "cdna_end": null,
          "cdna_length": 8454,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1726C>T",
          "hgvs_p": "p.Gln576*",
          "transcript": "XM_047424758.1",
          "protein_id": "XP_047280714.1",
          "transcript_support_level": null,
          "aa_start": 576,
          "aa_end": null,
          "aa_length": 657,
          "cds_start": 1726,
          "cds_end": null,
          "cds_length": 1974,
          "cdna_start": 2437,
          "cdna_end": null,
          "cdna_length": 8451,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1663C>T",
          "hgvs_p": "p.Gln555*",
          "transcript": "XM_011540471.4",
          "protein_id": "XP_011538773.1",
          "transcript_support_level": null,
          "aa_start": 555,
          "aa_end": null,
          "aa_length": 636,
          "cds_start": 1663,
          "cds_end": null,
          "cds_length": 1911,
          "cdna_start": 1749,
          "cdna_end": null,
          "cdna_length": 7763,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1624C>T",
          "hgvs_p": "p.Gln542*",
          "transcript": "XM_047424843.1",
          "protein_id": "XP_047280799.1",
          "transcript_support_level": null,
          "aa_start": 542,
          "aa_end": null,
          "aa_length": 623,
          "cds_start": 1624,
          "cds_end": null,
          "cds_length": 1872,
          "cdna_start": 2335,
          "cdna_end": null,
          "cdna_length": 8349,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1615C>T",
          "hgvs_p": "p.Gln539*",
          "transcript": "XM_047424890.1",
          "protein_id": "XP_047280846.1",
          "transcript_support_level": null,
          "aa_start": 539,
          "aa_end": null,
          "aa_length": 620,
          "cds_start": 1615,
          "cds_end": null,
          "cds_length": 1863,
          "cdna_start": 2326,
          "cdna_end": null,
          "cdna_length": 8340,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1612C>T",
          "hgvs_p": "p.Gln538*",
          "transcript": "XM_047424931.1",
          "protein_id": "XP_047280887.1",
          "transcript_support_level": null,
          "aa_start": 538,
          "aa_end": null,
          "aa_length": 619,
          "cds_start": 1612,
          "cds_end": null,
          "cds_length": 1860,
          "cdna_start": 2323,
          "cdna_end": null,
          "cdna_length": 8337,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1561C>T",
          "hgvs_p": "p.Gln521*",
          "transcript": "XM_011540472.4",
          "protein_id": "XP_011538774.2",
          "transcript_support_level": null,
          "aa_start": 521,
          "aa_end": null,
          "aa_length": 602,
          "cds_start": 1561,
          "cds_end": null,
          "cds_length": 1809,
          "cdna_start": 2272,
          "cdna_end": null,
          "cdna_length": 8286,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1552C>T",
          "hgvs_p": "p.Gln518*",
          "transcript": "XM_047424994.1",
          "protein_id": "XP_047280950.1",
          "transcript_support_level": null,
          "aa_start": 518,
          "aa_end": null,
          "aa_length": 599,
          "cds_start": 1552,
          "cds_end": null,
          "cds_length": 1800,
          "cdna_start": 2263,
          "cdna_end": null,
          "cdna_length": 8277,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1549C>T",
          "hgvs_p": "p.Gln517*",
          "transcript": "XM_011540474.4",
          "protein_id": "XP_011538776.1",
          "transcript_support_level": null,
          "aa_start": 517,
          "aa_end": null,
          "aa_length": 598,
          "cds_start": 1549,
          "cds_end": null,
          "cds_length": 1797,
          "cdna_start": 1635,
          "cdna_end": null,
          "cdna_length": 7649,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1477C>T",
          "hgvs_p": "p.Gln493*",
          "transcript": "XM_017000009.3",
          "protein_id": "XP_016855498.1",
          "transcript_support_level": null,
          "aa_start": 493,
          "aa_end": null,
          "aa_length": 574,
          "cds_start": 1477,
          "cds_end": null,
          "cds_length": 1725,
          "cdna_start": 1563,
          "cdna_end": null,
          "cdna_length": 7577,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1246C>T",
          "hgvs_p": "p.Gln416*",
          "transcript": "XM_011540476.4",
          "protein_id": "XP_011538778.1",
          "transcript_support_level": null,
          "aa_start": 416,
          "aa_end": null,
          "aa_length": 497,
          "cds_start": 1246,
          "cds_end": null,
          "cds_length": 1494,
          "cdna_start": 1466,
          "cdna_end": null,
          "cdna_length": 7480,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "Q",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "c.1183C>T",
          "hgvs_p": "p.Gln395*",
          "transcript": "XM_011540477.4",
          "protein_id": "XP_011538779.1",
          "transcript_support_level": null,
          "aa_start": 395,
          "aa_end": null,
          "aa_length": 476,
          "cds_start": 1183,
          "cds_end": null,
          "cds_length": 1431,
          "cdna_start": 1403,
          "cdna_end": null,
          "cdna_length": 7417,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 3,
          "intron_rank_end": null,
          "gene_symbol": "HNRNPR",
          "gene_hgnc_id": 5047,
          "hgvs_c": "n.409+126C>T",
          "hgvs_p": null,
          "transcript": "ENST00000641107.1",
          "protein_id": "ENSP00000492909.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 646,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "HNRNPR",
      "gene_hgnc_id": 5047,
      "dbsnp": "rs1553153365",
      "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.5600000023841858,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "BayesDel_noAF",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": null,
      "revel_prediction": null,
      "alphamissense_score": null,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.56,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 7.827,
      "phylop100way_prediction": "Pathogenic",
      "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": 8,
      "acmg_classification": "Likely_pathogenic",
      "acmg_criteria": "PVS1_Strong,PM2,PP5_Moderate",
      "acmg_by_gene": [
        {
          "score": 8,
          "benign_score": 0,
          "pathogenic_score": 8,
          "criteria": [
            "PVS1_Strong",
            "PM2",
            "PP5_Moderate"
          ],
          "verdict": "Likely_pathogenic",
          "transcript": "ENST00000374616.7",
          "gene_symbol": "HNRNPR",
          "hgnc_id": 5047,
          "effects": [
            "stop_gained"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.1663C>T",
          "hgvs_p": "p.Gln555*"
        }
      ],
      "clinvar_disease": "Inborn genetic diseases,Neurodevelopmental disorder with dysmorphic facies and skeletal and brain abnormalities",
      "clinvar_classification": "Likely pathogenic",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "LP:1",
      "phenotype_combined": "Inborn genetic diseases|Neurodevelopmental disorder with dysmorphic facies and skeletal and brain abnormalities",
      "pathogenicity_classification_combined": "Likely pathogenic",
      "custom_annotations": null
    }
  ],
  "message": null
}