← 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: 3-52096608-C-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "3",
      "pos": 52096608,
      "ref": "C",
      "alt": "A",
      "effect": "synonymous_variant",
      "transcript": "NM_015426.5",
      "consequences": [
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.1086G>T",
          "hgvs_p": "p.Thr362Thr",
          "transcript": "NM_015426.5",
          "protein_id": "NP_056241.3",
          "transcript_support_level": null,
          "aa_start": 362,
          "aa_end": null,
          "aa_length": 407,
          "cds_start": 1086,
          "cds_end": null,
          "cds_length": 1224,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000296484.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_015426.5"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.1086G>T",
          "hgvs_p": "p.Thr362Thr",
          "transcript": "ENST00000296484.7",
          "protein_id": "ENSP00000296484.2",
          "transcript_support_level": 1,
          "aa_start": 362,
          "aa_end": null,
          "aa_length": 407,
          "cds_start": 1086,
          "cds_end": null,
          "cds_length": 1224,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_015426.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000296484.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.982-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000394970.6",
          "protein_id": "ENSP00000378421.2",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000394970.6"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.1050G>T",
          "hgvs_p": "p.Thr350Thr",
          "transcript": "ENST00000939755.1",
          "protein_id": "ENSP00000609814.1",
          "transcript_support_level": null,
          "aa_start": 350,
          "aa_end": null,
          "aa_length": 395,
          "cds_start": 1050,
          "cds_end": null,
          "cds_length": 1188,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939755.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.1023G>T",
          "hgvs_p": "p.Thr341Thr",
          "transcript": "ENST00000939751.1",
          "protein_id": "ENSP00000609810.1",
          "transcript_support_level": null,
          "aa_start": 341,
          "aa_end": null,
          "aa_length": 386,
          "cds_start": 1023,
          "cds_end": null,
          "cds_length": 1161,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939751.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.987G>T",
          "hgvs_p": "p.Thr329Thr",
          "transcript": "ENST00000939749.1",
          "protein_id": "ENSP00000609808.1",
          "transcript_support_level": null,
          "aa_start": 329,
          "aa_end": null,
          "aa_length": 374,
          "cds_start": 987,
          "cds_end": null,
          "cds_length": 1125,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939749.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.972G>T",
          "hgvs_p": "p.Thr324Thr",
          "transcript": "NM_001161581.2",
          "protein_id": "NP_001155053.1",
          "transcript_support_level": null,
          "aa_start": 324,
          "aa_end": null,
          "aa_length": 369,
          "cds_start": 972,
          "cds_end": null,
          "cds_length": 1110,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001161581.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.972G>T",
          "hgvs_p": "p.Thr324Thr",
          "transcript": "ENST00000474012.1",
          "protein_id": "ENSP00000418968.1",
          "transcript_support_level": 2,
          "aa_start": 324,
          "aa_end": null,
          "aa_length": 369,
          "cds_start": 972,
          "cds_end": null,
          "cds_length": 1110,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000474012.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.918G>T",
          "hgvs_p": "p.Thr306Thr",
          "transcript": "ENST00000939761.1",
          "protein_id": "ENSP00000609820.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 351,
          "cds_start": 918,
          "cds_end": null,
          "cds_length": 1056,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939761.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.510G>T",
          "hgvs_p": "p.Thr170Thr",
          "transcript": "ENST00000939762.1",
          "protein_id": "ENSP00000609821.1",
          "transcript_support_level": null,
          "aa_start": 170,
          "aa_end": null,
          "aa_length": 215,
          "cds_start": 510,
          "cds_end": null,
          "cds_length": 648,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939762.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.291G>T",
          "hgvs_p": "p.Thr97Thr",
          "transcript": "ENST00000939752.1",
          "protein_id": "ENSP00000609811.1",
          "transcript_support_level": null,
          "aa_start": 97,
          "aa_end": null,
          "aa_length": 142,
          "cds_start": 291,
          "cds_end": null,
          "cds_length": 429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939752.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.192G>T",
          "hgvs_p": "p.Thr64Thr",
          "transcript": "ENST00000939756.1",
          "protein_id": "ENSP00000609815.1",
          "transcript_support_level": null,
          "aa_start": 64,
          "aa_end": null,
          "aa_length": 109,
          "cds_start": 192,
          "cds_end": null,
          "cds_length": 330,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939756.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.987G>T",
          "hgvs_p": "p.Thr329Thr",
          "transcript": "XM_011533560.2",
          "protein_id": "XP_011531862.1",
          "transcript_support_level": null,
          "aa_start": 329,
          "aa_end": null,
          "aa_length": 374,
          "cds_start": 987,
          "cds_end": null,
          "cds_length": 1125,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011533560.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.873G>T",
          "hgvs_p": "p.Thr291Thr",
          "transcript": "XM_047447907.1",
          "protein_id": "XP_047303863.1",
          "transcript_support_level": null,
          "aa_start": 291,
          "aa_end": null,
          "aa_length": 336,
          "cds_start": 873,
          "cds_end": null,
          "cds_length": 1011,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047447907.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.982-20623G>T",
          "hgvs_p": null,
          "transcript": "NM_001161580.2",
          "protein_id": "NP_001155052.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001161580.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.982-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939750.1",
          "protein_id": "ENSP00000609809.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939750.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.970-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939764.1",
          "protein_id": "ENSP00000609823.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 355,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1068,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939764.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.952-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939760.1",
          "protein_id": "ENSP00000609819.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 349,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1050,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939760.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 8,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.874-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939765.1",
          "protein_id": "ENSP00000609824.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 323,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 972,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939765.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 8,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.847-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939757.1",
          "protein_id": "ENSP00000609816.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 314,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 945,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939757.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.814-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939759.1",
          "protein_id": "ENSP00000609818.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 303,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 912,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939759.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.680-20627G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939758.1",
          "protein_id": "ENSP00000609817.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 257,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 774,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939758.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.406-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939753.1",
          "protein_id": "ENSP00000609812.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 167,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 504,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939753.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.307-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939763.1",
          "protein_id": "ENSP00000609822.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 134,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 405,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939763.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": 3,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.187-20623G>T",
          "hgvs_p": null,
          "transcript": "ENST00000939754.1",
          "protein_id": "ENSP00000609813.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 94,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 285,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000939754.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 8,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.883-20623G>T",
          "hgvs_p": null,
          "transcript": "XM_011533561.2",
          "protein_id": "XP_011531863.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011533561.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.868-20623G>T",
          "hgvs_p": null,
          "transcript": "XM_017006104.2",
          "protein_id": "XP_016861593.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 321,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 966,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017006104.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 8,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.769-20623G>T",
          "hgvs_p": null,
          "transcript": "XM_047447908.1",
          "protein_id": "XP_047303864.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 288,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 867,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047447908.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "c.*112G>T",
          "hgvs_p": null,
          "transcript": "XM_011533563.2",
          "protein_id": "XP_011531865.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 246,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 741,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011533563.2"
        },
        {
          "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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "POC1A",
          "gene_hgnc_id": 24488,
          "hgvs_c": "n.*89G>T",
          "hgvs_p": null,
          "transcript": "XR_007095660.1",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "XR_007095660.1"
        }
      ],
      "gene_symbol": "POC1A",
      "gene_hgnc_id": 24488,
      "dbsnp": "rs570298576",
      "frequency_reference_population": 0.0000031093523,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 5,
      "gnomad_exomes_af": 0.00000274761,
      "gnomad_genomes_af": 0.00000656858,
      "gnomad_exomes_ac": 4,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": -0.7099999785423279,
      "computational_prediction_selected": "Benign",
      "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.71,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -4.577,
      "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": -3,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "PM2,BP4_Strong,BP7",
      "acmg_by_gene": [
        {
          "score": -3,
          "benign_score": 5,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Strong",
            "BP7"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_015426.5",
          "gene_symbol": "POC1A",
          "hgnc_id": 24488,
          "effects": [
            "synonymous_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.1086G>T",
          "hgvs_p": "p.Thr362Thr"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}