← 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: 12-94333529-G-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "12",
      "pos": 94333529,
      "ref": "G",
      "alt": "T",
      "effect": "stop_gained",
      "transcript": "ENST00000397809.10",
      "consequences": [
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "NM_016122.3",
          "protein_id": "NP_057206.2",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1995,
          "cdna_end": null,
          "cdna_length": 3686,
          "mane_select": "ENST00000397809.10",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "ENST00000397809.10",
          "protein_id": "ENSP00000380911.4",
          "transcript_support_level": 1,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1995,
          "cdna_end": null,
          "cdna_length": 3686,
          "mane_select": "NM_016122.3",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "ENST00000339839.9",
          "protein_id": "ENSP00000344655.5",
          "transcript_support_level": 1,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 2021,
          "cdna_end": null,
          "cdna_length": 3130,
          "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": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1431C>A",
          "hgvs_p": null,
          "transcript": "ENST00000547232.5",
          "protein_id": "ENSP00000447783.1",
          "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": 2166,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "NM_001042399.2",
          "protein_id": "NP_001035858.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1942,
          "cdna_end": null,
          "cdna_length": 3633,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "NM_001346457.2",
          "protein_id": "NP_001333386.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1942,
          "cdna_end": null,
          "cdna_length": 2781,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "NM_001368037.1",
          "protein_id": "NP_001354966.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1939,
          "cdna_end": null,
          "cdna_length": 3048,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "NM_001368038.1",
          "protein_id": "NP_001354967.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1886,
          "cdna_end": null,
          "cdna_length": 2995,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1305C>A",
          "hgvs_p": "p.Cys435*",
          "transcript": "NM_001368041.1",
          "protein_id": "NP_001354970.1",
          "transcript_support_level": null,
          "aa_start": 435,
          "aa_end": null,
          "aa_length": 626,
          "cds_start": 1305,
          "cds_end": null,
          "cds_length": 1881,
          "cdna_start": 1717,
          "cdna_end": null,
          "cdna_length": 2826,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1218C>A",
          "hgvs_p": "p.Cys406*",
          "transcript": "NM_001346458.2",
          "protein_id": "NP_001333387.1",
          "transcript_support_level": null,
          "aa_start": 406,
          "aa_end": null,
          "aa_length": 597,
          "cds_start": 1218,
          "cds_end": null,
          "cds_length": 1794,
          "cdna_start": 1796,
          "cdna_end": null,
          "cdna_length": 3487,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1218C>A",
          "hgvs_p": "p.Cys406*",
          "transcript": "NM_001346459.2",
          "protein_id": "NP_001333388.1",
          "transcript_support_level": null,
          "aa_start": 406,
          "aa_end": null,
          "aa_length": 597,
          "cds_start": 1218,
          "cds_end": null,
          "cds_length": 1794,
          "cdna_start": 1743,
          "cdna_end": null,
          "cdna_length": 3434,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1218C>A",
          "hgvs_p": "p.Cys406*",
          "transcript": "NM_001368039.1",
          "protein_id": "NP_001354968.1",
          "transcript_support_level": null,
          "aa_start": 406,
          "aa_end": null,
          "aa_length": 597,
          "cds_start": 1218,
          "cds_end": null,
          "cds_length": 1794,
          "cdna_start": 1740,
          "cdna_end": null,
          "cdna_length": 2849,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1218C>A",
          "hgvs_p": "p.Cys406*",
          "transcript": "NM_001368040.1",
          "protein_id": "NP_001354969.1",
          "transcript_support_level": null,
          "aa_start": 406,
          "aa_end": null,
          "aa_length": 597,
          "cds_start": 1218,
          "cds_end": null,
          "cds_length": 1794,
          "cdna_start": 1687,
          "cdna_end": null,
          "cdna_length": 2796,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "XM_011538424.3",
          "protein_id": "XP_011536726.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 2046,
          "cdna_end": null,
          "cdna_length": 3737,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "XM_017019385.3",
          "protein_id": "XP_016874874.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1995,
          "cdna_end": null,
          "cdna_length": 2834,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "XM_017019386.3",
          "protein_id": "XP_016874875.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1995,
          "cdna_end": null,
          "cdna_length": 6469,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "XM_047428922.1",
          "protein_id": "XP_047284878.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1942,
          "cdna_end": null,
          "cdna_length": 6416,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "XM_047428923.1",
          "protein_id": "XP_047284879.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 701,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 2106,
          "cdna_start": 1942,
          "cdna_end": null,
          "cdna_length": 8030,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1143C>A",
          "hgvs_p": "p.Cys381*",
          "transcript": "XM_017019389.3",
          "protein_id": "XP_016874878.1",
          "transcript_support_level": null,
          "aa_start": 381,
          "aa_end": null,
          "aa_length": 572,
          "cds_start": 1143,
          "cds_end": null,
          "cds_length": 1719,
          "cdna_start": 1855,
          "cdna_end": null,
          "cdna_length": 3546,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1116C>A",
          "hgvs_p": "p.Cys372*",
          "transcript": "XM_024449005.2",
          "protein_id": "XP_024304773.1",
          "transcript_support_level": null,
          "aa_start": 372,
          "aa_end": null,
          "aa_length": 563,
          "cds_start": 1116,
          "cds_end": null,
          "cds_length": 1692,
          "cdna_start": 2016,
          "cdna_end": null,
          "cdna_length": 3707,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1116C>A",
          "hgvs_p": "p.Cys372*",
          "transcript": "XM_047428925.1",
          "protein_id": "XP_047284881.1",
          "transcript_support_level": null,
          "aa_start": 372,
          "aa_end": null,
          "aa_length": 563,
          "cds_start": 1116,
          "cds_end": null,
          "cds_length": 1692,
          "cdna_start": 2985,
          "cdna_end": null,
          "cdna_length": 4676,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1116C>A",
          "hgvs_p": "p.Cys372*",
          "transcript": "XM_047428926.1",
          "protein_id": "XP_047284882.1",
          "transcript_support_level": null,
          "aa_start": 372,
          "aa_end": null,
          "aa_length": 563,
          "cds_start": 1116,
          "cds_end": null,
          "cds_length": 1692,
          "cdna_start": 2985,
          "cdna_end": null,
          "cdna_length": 3824,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1116C>A",
          "hgvs_p": "p.Cys372*",
          "transcript": "XM_047428927.1",
          "protein_id": "XP_047284883.1",
          "transcript_support_level": null,
          "aa_start": 372,
          "aa_end": null,
          "aa_length": 563,
          "cds_start": 1116,
          "cds_end": null,
          "cds_length": 1692,
          "cdna_start": 2398,
          "cdna_end": null,
          "cdna_length": 4089,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*",
          "transcript": "XM_047428928.1",
          "protein_id": "XP_047284884.1",
          "transcript_support_level": null,
          "aa_start": 510,
          "aa_end": null,
          "aa_length": 526,
          "cds_start": 1530,
          "cds_end": null,
          "cds_length": 1581,
          "cdna_start": 1942,
          "cdna_end": null,
          "cdna_length": 2137,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "C",
          "aa_alt": "*",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "stop_gained"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "c.756C>A",
          "hgvs_p": "p.Cys252*",
          "transcript": "XM_024449007.2",
          "protein_id": "XP_024304775.1",
          "transcript_support_level": null,
          "aa_start": 252,
          "aa_end": null,
          "aa_length": 443,
          "cds_start": 756,
          "cds_end": null,
          "cds_length": 1332,
          "cdna_start": 1939,
          "cdna_end": null,
          "cdna_length": 3630,
          "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": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.406C>A",
          "hgvs_p": null,
          "transcript": "ENST00000546587.1",
          "protein_id": null,
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 597,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1254C>A",
          "hgvs_p": null,
          "transcript": "NR_160431.1",
          "protein_id": null,
          "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": 2363,
          "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": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.2275C>A",
          "hgvs_p": null,
          "transcript": "NR_160432.1",
          "protein_id": null,
          "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": 3384,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1942C>A",
          "hgvs_p": null,
          "transcript": "XR_007063080.1",
          "protein_id": null,
          "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": 3809,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1942C>A",
          "hgvs_p": null,
          "transcript": "XR_007063081.1",
          "protein_id": null,
          "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": 3505,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1942C>A",
          "hgvs_p": null,
          "transcript": "XR_007063082.1",
          "protein_id": null,
          "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": 5280,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1942C>A",
          "hgvs_p": null,
          "transcript": "XR_007063083.1",
          "protein_id": null,
          "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": 3555,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CEP83",
          "gene_hgnc_id": 17966,
          "hgvs_c": "n.1942C>A",
          "hgvs_p": null,
          "transcript": "XR_007063084.1",
          "protein_id": null,
          "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": 2465,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "CEP83",
      "gene_hgnc_id": 17966,
      "dbsnp": "rs587777488",
      "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.6000000238418579,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "BayesDel_noAF",
      "splice_score_selected": 0.05000000074505806,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": null,
      "revel_prediction": null,
      "alphamissense_score": null,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.6,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 2.372,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.05,
      "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": 11,
      "acmg_classification": "Pathogenic",
      "acmg_criteria": "PVS1,PM2,PP5",
      "acmg_by_gene": [
        {
          "score": 11,
          "benign_score": 0,
          "pathogenic_score": 11,
          "criteria": [
            "PVS1",
            "PM2",
            "PP5"
          ],
          "verdict": "Pathogenic",
          "transcript": "ENST00000397809.10",
          "gene_symbol": "CEP83",
          "hgnc_id": 17966,
          "effects": [
            "stop_gained"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.1530C>A",
          "hgvs_p": "p.Cys510*"
        }
      ],
      "clinvar_disease": "Nephronophthisis 18",
      "clinvar_classification": "Pathogenic",
      "clinvar_review_status": "no assertion criteria provided",
      "clinvar_submissions_summary": "null",
      "phenotype_combined": "Nephronophthisis 18",
      "pathogenicity_classification_combined": "Pathogenic",
      "custom_annotations": null
    }
  ],
  "message": null
}