← 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: 19-5208004-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "19",
      "pos": 5208004,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_002850.4",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 37,
          "exon_rank_end": null,
          "exon_count": 38,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5696G>A",
          "hgvs_p": "p.Arg1899Gln",
          "transcript": "NM_002850.4",
          "protein_id": "NP_002841.3",
          "transcript_support_level": null,
          "aa_start": 1899,
          "aa_end": null,
          "aa_length": 1948,
          "cds_start": 5696,
          "cds_end": null,
          "cds_length": 5847,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000262963.11",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_002850.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 37,
          "exon_rank_end": null,
          "exon_count": 38,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5696G>A",
          "hgvs_p": "p.Arg1899Gln",
          "transcript": "ENST00000262963.11",
          "protein_id": "ENSP00000262963.8",
          "transcript_support_level": 5,
          "aa_start": 1899,
          "aa_end": null,
          "aa_length": 1948,
          "cds_start": 5696,
          "cds_end": null,
          "cds_length": 5847,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_002850.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000262963.11"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 36,
          "exon_rank_end": null,
          "exon_count": 37,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5696G>A",
          "hgvs_p": "p.Arg1899Gln",
          "transcript": "ENST00000587303.5",
          "protein_id": "ENSP00000467537.1",
          "transcript_support_level": 1,
          "aa_start": 1899,
          "aa_end": null,
          "aa_length": 1948,
          "cds_start": 5696,
          "cds_end": null,
          "cds_length": 5847,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000587303.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 31,
          "exon_rank_end": null,
          "exon_count": 32,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5582G>A",
          "hgvs_p": "p.Arg1861Gln",
          "transcript": "ENST00000588012.5",
          "protein_id": "ENSP00000465443.1",
          "transcript_support_level": 1,
          "aa_start": 1861,
          "aa_end": null,
          "aa_length": 1910,
          "cds_start": 5582,
          "cds_end": null,
          "cds_length": 5733,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000588012.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4355G>A",
          "hgvs_p": "p.Arg1452Gln",
          "transcript": "ENST00000592099.5",
          "protein_id": "ENSP00000467398.1",
          "transcript_support_level": 1,
          "aa_start": 1452,
          "aa_end": null,
          "aa_length": 1501,
          "cds_start": 4355,
          "cds_end": null,
          "cds_length": 4506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000592099.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 31,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "n.4637G>A",
          "hgvs_p": null,
          "transcript": "ENST00000588552.5",
          "protein_id": null,
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000588552.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 34,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5630G>A",
          "hgvs_p": "p.Arg1877Gln",
          "transcript": "NM_001394011.1",
          "protein_id": "NP_001380940.1",
          "transcript_support_level": null,
          "aa_start": 1877,
          "aa_end": null,
          "aa_length": 1926,
          "cds_start": 5630,
          "cds_end": null,
          "cds_length": 5781,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394011.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 34,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5609G>A",
          "hgvs_p": "p.Arg1870Gln",
          "transcript": "NM_001394012.1",
          "protein_id": "NP_001380941.1",
          "transcript_support_level": null,
          "aa_start": 1870,
          "aa_end": null,
          "aa_length": 1919,
          "cds_start": 5609,
          "cds_end": null,
          "cds_length": 5760,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394012.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 32,
          "exon_rank_end": null,
          "exon_count": 33,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5582G>A",
          "hgvs_p": "p.Arg1861Gln",
          "transcript": "NM_130854.3",
          "protein_id": "NP_570924.2",
          "transcript_support_level": null,
          "aa_start": 1861,
          "aa_end": null,
          "aa_length": 1910,
          "cds_start": 5582,
          "cds_end": null,
          "cds_length": 5733,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_130854.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 31,
          "exon_rank_end": null,
          "exon_count": 32,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5570G>A",
          "hgvs_p": "p.Arg1857Gln",
          "transcript": "NM_001394013.1",
          "protein_id": "NP_001380942.1",
          "transcript_support_level": null,
          "aa_start": 1857,
          "aa_end": null,
          "aa_length": 1906,
          "cds_start": 5570,
          "cds_end": null,
          "cds_length": 5721,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394013.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 31,
          "exon_rank_end": null,
          "exon_count": 32,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5570G>A",
          "hgvs_p": "p.Arg1857Gln",
          "transcript": "ENST00000919618.1",
          "protein_id": "ENSP00000589677.1",
          "transcript_support_level": null,
          "aa_start": 1857,
          "aa_end": null,
          "aa_length": 1906,
          "cds_start": 5570,
          "cds_end": null,
          "cds_length": 5721,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919618.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4868G>A",
          "hgvs_p": "p.Arg1623Gln",
          "transcript": "ENST00000850941.1",
          "protein_id": "ENSP00000521026.1",
          "transcript_support_level": null,
          "aa_start": 1623,
          "aa_end": null,
          "aa_length": 1672,
          "cds_start": 4868,
          "cds_end": null,
          "cds_length": 5019,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000850941.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4391G>A",
          "hgvs_p": "p.Arg1464Gln",
          "transcript": "ENST00000919619.1",
          "protein_id": "ENSP00000589678.1",
          "transcript_support_level": null,
          "aa_start": 1464,
          "aa_end": null,
          "aa_length": 1513,
          "cds_start": 4391,
          "cds_end": null,
          "cds_length": 4542,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919619.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4367G>A",
          "hgvs_p": "p.Arg1456Gln",
          "transcript": "NM_130855.3",
          "protein_id": "NP_570925.2",
          "transcript_support_level": null,
          "aa_start": 1456,
          "aa_end": null,
          "aa_length": 1505,
          "cds_start": 4367,
          "cds_end": null,
          "cds_length": 4518,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_130855.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4355G>A",
          "hgvs_p": "p.Arg1452Gln",
          "transcript": "NM_130853.3",
          "protein_id": "NP_570923.2",
          "transcript_support_level": null,
          "aa_start": 1452,
          "aa_end": null,
          "aa_length": 1501,
          "cds_start": 4355,
          "cds_end": null,
          "cds_length": 4506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_130853.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 35,
          "exon_rank_end": null,
          "exon_count": 36,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5669G>A",
          "hgvs_p": "p.Arg1890Gln",
          "transcript": "XM_017027065.2",
          "protein_id": "XP_016882554.1",
          "transcript_support_level": null,
          "aa_start": 1890,
          "aa_end": null,
          "aa_length": 1939,
          "cds_start": 5669,
          "cds_end": null,
          "cds_length": 5820,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027065.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 35,
          "exon_rank_end": null,
          "exon_count": 36,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5669G>A",
          "hgvs_p": "p.Arg1890Gln",
          "transcript": "XM_017027066.2",
          "protein_id": "XP_016882555.1",
          "transcript_support_level": null,
          "aa_start": 1890,
          "aa_end": null,
          "aa_length": 1939,
          "cds_start": 5669,
          "cds_end": null,
          "cds_length": 5820,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027066.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 35,
          "exon_rank_end": null,
          "exon_count": 36,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5669G>A",
          "hgvs_p": "p.Arg1890Gln",
          "transcript": "XM_017027067.2",
          "protein_id": "XP_016882556.1",
          "transcript_support_level": null,
          "aa_start": 1890,
          "aa_end": null,
          "aa_length": 1939,
          "cds_start": 5669,
          "cds_end": null,
          "cds_length": 5820,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027067.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5657G>A",
          "hgvs_p": "p.Arg1886Gln",
          "transcript": "XM_005259600.3",
          "protein_id": "XP_005259657.1",
          "transcript_support_level": null,
          "aa_start": 1886,
          "aa_end": null,
          "aa_length": 1935,
          "cds_start": 5657,
          "cds_end": null,
          "cds_length": 5808,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005259600.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5657G>A",
          "hgvs_p": "p.Arg1886Gln",
          "transcript": "XM_017027068.2",
          "protein_id": "XP_016882557.1",
          "transcript_support_level": null,
          "aa_start": 1886,
          "aa_end": null,
          "aa_length": 1935,
          "cds_start": 5657,
          "cds_end": null,
          "cds_length": 5808,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027068.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5657G>A",
          "hgvs_p": "p.Arg1886Gln",
          "transcript": "XM_047439155.1",
          "protein_id": "XP_047295111.1",
          "transcript_support_level": null,
          "aa_start": 1886,
          "aa_end": null,
          "aa_length": 1935,
          "cds_start": 5657,
          "cds_end": null,
          "cds_length": 5808,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439155.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5657G>A",
          "hgvs_p": "p.Arg1886Gln",
          "transcript": "XM_047439156.1",
          "protein_id": "XP_047295112.1",
          "transcript_support_level": null,
          "aa_start": 1886,
          "aa_end": null,
          "aa_length": 1935,
          "cds_start": 5657,
          "cds_end": null,
          "cds_length": 5808,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439156.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 34,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5645G>A",
          "hgvs_p": "p.Arg1882Gln",
          "transcript": "XM_047439157.1",
          "protein_id": "XP_047295113.1",
          "transcript_support_level": null,
          "aa_start": 1882,
          "aa_end": null,
          "aa_length": 1931,
          "cds_start": 5645,
          "cds_end": null,
          "cds_length": 5796,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439157.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5642G>A",
          "hgvs_p": "p.Arg1881Gln",
          "transcript": "XM_017027069.2",
          "protein_id": "XP_016882558.1",
          "transcript_support_level": null,
          "aa_start": 1881,
          "aa_end": null,
          "aa_length": 1930,
          "cds_start": 5642,
          "cds_end": null,
          "cds_length": 5793,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027069.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 34,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5630G>A",
          "hgvs_p": "p.Arg1877Gln",
          "transcript": "XM_047439158.1",
          "protein_id": "XP_047295114.1",
          "transcript_support_level": null,
          "aa_start": 1877,
          "aa_end": null,
          "aa_length": 1926,
          "cds_start": 5630,
          "cds_end": null,
          "cds_length": 5781,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439158.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 34,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5630G>A",
          "hgvs_p": "p.Arg1877Gln",
          "transcript": "XM_047439159.1",
          "protein_id": "XP_047295115.1",
          "transcript_support_level": null,
          "aa_start": 1877,
          "aa_end": null,
          "aa_length": 1926,
          "cds_start": 5630,
          "cds_end": null,
          "cds_length": 5781,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439159.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5621G>A",
          "hgvs_p": "p.Arg1874Gln",
          "transcript": "XM_017027070.2",
          "protein_id": "XP_016882559.1",
          "transcript_support_level": null,
          "aa_start": 1874,
          "aa_end": null,
          "aa_length": 1923,
          "cds_start": 5621,
          "cds_end": null,
          "cds_length": 5772,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027070.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 32,
          "exon_rank_end": null,
          "exon_count": 33,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5618G>A",
          "hgvs_p": "p.Arg1873Gln",
          "transcript": "XM_047439160.1",
          "protein_id": "XP_047295116.1",
          "transcript_support_level": null,
          "aa_start": 1873,
          "aa_end": null,
          "aa_length": 1922,
          "cds_start": 5618,
          "cds_end": null,
          "cds_length": 5769,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439160.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 32,
          "exon_rank_end": null,
          "exon_count": 33,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5618G>A",
          "hgvs_p": "p.Arg1873Gln",
          "transcript": "XM_047439161.1",
          "protein_id": "XP_047295117.1",
          "transcript_support_level": null,
          "aa_start": 1873,
          "aa_end": null,
          "aa_length": 1922,
          "cds_start": 5618,
          "cds_end": null,
          "cds_length": 5769,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439161.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 34,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5609G>A",
          "hgvs_p": "p.Arg1870Gln",
          "transcript": "XM_017027071.2",
          "protein_id": "XP_016882560.1",
          "transcript_support_level": null,
          "aa_start": 1870,
          "aa_end": null,
          "aa_length": 1919,
          "cds_start": 5609,
          "cds_end": null,
          "cds_length": 5760,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027071.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 32,
          "exon_rank_end": null,
          "exon_count": 33,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5582G>A",
          "hgvs_p": "p.Arg1861Gln",
          "transcript": "XM_017027072.2",
          "protein_id": "XP_016882561.1",
          "transcript_support_level": null,
          "aa_start": 1861,
          "aa_end": null,
          "aa_length": 1910,
          "cds_start": 5582,
          "cds_end": null,
          "cds_length": 5733,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027072.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 31,
          "exon_rank_end": null,
          "exon_count": 32,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.5570G>A",
          "hgvs_p": "p.Arg1857Gln",
          "transcript": "XM_005259607.3",
          "protein_id": "XP_005259664.1",
          "transcript_support_level": null,
          "aa_start": 1857,
          "aa_end": null,
          "aa_length": 1906,
          "cds_start": 5570,
          "cds_end": null,
          "cds_length": 5721,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005259607.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4943G>A",
          "hgvs_p": "p.Arg1648Gln",
          "transcript": "XM_017027073.2",
          "protein_id": "XP_016882562.1",
          "transcript_support_level": null,
          "aa_start": 1648,
          "aa_end": null,
          "aa_length": 1697,
          "cds_start": 4943,
          "cds_end": null,
          "cds_length": 5094,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027073.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 30,
          "exon_rank_end": null,
          "exon_count": 31,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4415G>A",
          "hgvs_p": "p.Arg1472Gln",
          "transcript": "XM_017027074.2",
          "protein_id": "XP_016882563.1",
          "transcript_support_level": null,
          "aa_start": 1472,
          "aa_end": null,
          "aa_length": 1521,
          "cds_start": 4415,
          "cds_end": null,
          "cds_length": 4566,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027074.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4403G>A",
          "hgvs_p": "p.Arg1468Gln",
          "transcript": "XM_017027075.2",
          "protein_id": "XP_016882564.1",
          "transcript_support_level": null,
          "aa_start": 1468,
          "aa_end": null,
          "aa_length": 1517,
          "cds_start": 4403,
          "cds_end": null,
          "cds_length": 4554,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017027075.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4403G>A",
          "hgvs_p": "p.Arg1468Gln",
          "transcript": "XM_047439162.1",
          "protein_id": "XP_047295118.1",
          "transcript_support_level": null,
          "aa_start": 1468,
          "aa_end": null,
          "aa_length": 1517,
          "cds_start": 4403,
          "cds_end": null,
          "cds_length": 4554,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439162.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4403G>A",
          "hgvs_p": "p.Arg1468Gln",
          "transcript": "XM_047439163.1",
          "protein_id": "XP_047295119.1",
          "transcript_support_level": null,
          "aa_start": 1468,
          "aa_end": null,
          "aa_length": 1517,
          "cds_start": 4403,
          "cds_end": null,
          "cds_length": 4554,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439163.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4391G>A",
          "hgvs_p": "p.Arg1464Gln",
          "transcript": "XM_047439164.1",
          "protein_id": "XP_047295120.1",
          "transcript_support_level": null,
          "aa_start": 1464,
          "aa_end": null,
          "aa_length": 1513,
          "cds_start": 4391,
          "cds_end": null,
          "cds_length": 4542,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439164.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4355G>A",
          "hgvs_p": "p.Arg1452Gln",
          "transcript": "XM_047439165.1",
          "protein_id": "XP_047295121.1",
          "transcript_support_level": null,
          "aa_start": 1452,
          "aa_end": null,
          "aa_length": 1501,
          "cds_start": 4355,
          "cds_end": null,
          "cds_length": 4506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439165.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4343G>A",
          "hgvs_p": "p.Arg1448Gln",
          "transcript": "XM_005259610.2",
          "protein_id": "XP_005259667.1",
          "transcript_support_level": null,
          "aa_start": 1448,
          "aa_end": null,
          "aa_length": 1497,
          "cds_start": 4343,
          "cds_end": null,
          "cds_length": 4494,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005259610.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.4343G>A",
          "hgvs_p": "p.Arg1448Gln",
          "transcript": "XM_047439166.1",
          "protein_id": "XP_047295122.1",
          "transcript_support_level": null,
          "aa_start": 1448,
          "aa_end": null,
          "aa_length": 1497,
          "cds_start": 4343,
          "cds_end": null,
          "cds_length": 4494,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439166.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.3323G>A",
          "hgvs_p": "p.Arg1108Gln",
          "transcript": "XM_011528158.3",
          "protein_id": "XP_011526460.1",
          "transcript_support_level": null,
          "aa_start": 1108,
          "aa_end": null,
          "aa_length": 1157,
          "cds_start": 3323,
          "cds_end": null,
          "cds_length": 3474,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011528158.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "c.3263G>A",
          "hgvs_p": "p.Arg1088Gln",
          "transcript": "XM_047439167.1",
          "protein_id": "XP_047295123.1",
          "transcript_support_level": null,
          "aa_start": 1088,
          "aa_end": null,
          "aa_length": 1137,
          "cds_start": 3263,
          "cds_end": null,
          "cds_length": 3414,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047439167.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "n.1006G>A",
          "hgvs_p": null,
          "transcript": "ENST00000706768.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": "retained_intron",
          "feature": "ENST00000706768.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PTPRS",
          "gene_hgnc_id": 9681,
          "hgvs_c": "n.*165G>A",
          "hgvs_p": null,
          "transcript": "ENST00000706769.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": "retained_intron",
          "feature": "ENST00000706769.1"
        }
      ],
      "gene_symbol": "PTPRS",
      "gene_hgnc_id": 9681,
      "dbsnp": "rs752031088",
      "frequency_reference_population": 0.0000075255457,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 11,
      "gnomad_exomes_af": 0.00000752555,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 11,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.838343620300293,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.019999999552965164,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.334,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.8401,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.33,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 7.809,
      "phylop100way_prediction": "Pathogenic",
      "spliceai_max_score": 0.02,
      "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": -3,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "PP3,BS2",
      "acmg_by_gene": [
        {
          "score": -3,
          "benign_score": 4,
          "pathogenic_score": 1,
          "criteria": [
            "PP3",
            "BS2"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_002850.4",
          "gene_symbol": "PTPRS",
          "hgnc_id": 9681,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.5696G>A",
          "hgvs_p": "p.Arg1899Gln"
        }
      ],
      "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
}