← 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: 5-69175443-C-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "5",
      "pos": 69175443,
      "ref": "C",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "NM_031966.4",
      "consequences": [
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser",
          "transcript": "NM_031966.4",
          "protein_id": "NP_114172.1",
          "transcript_support_level": null,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 433,
          "cds_start": 989,
          "cds_end": null,
          "cds_length": 1302,
          "cdna_start": 1102,
          "cdna_end": null,
          "cdna_length": 2029,
          "mane_select": "ENST00000256442.10",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_031966.4"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser",
          "transcript": "ENST00000256442.10",
          "protein_id": "ENSP00000256442.5",
          "transcript_support_level": 1,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 433,
          "cds_start": 989,
          "cds_end": null,
          "cds_length": 1302,
          "cdna_start": 1102,
          "cdna_end": null,
          "cdna_length": 2029,
          "mane_select": "NM_031966.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000256442.10"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser",
          "transcript": "ENST00000506572.5",
          "protein_id": "ENSP00000423387.1",
          "transcript_support_level": 1,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 400,
          "cds_start": 989,
          "cds_end": null,
          "cds_length": 1203,
          "cdna_start": 1117,
          "cdna_end": null,
          "cdna_length": 1331,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000506572.5"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser",
          "transcript": "ENST00000505500.5",
          "protein_id": "ENSP00000424588.1",
          "transcript_support_level": 1,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 395,
          "cds_start": 989,
          "cds_end": null,
          "cds_length": 1190,
          "cdna_start": 989,
          "cdna_end": null,
          "cdna_length": 1190,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000505500.5"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.1007C>G",
          "hgvs_p": "p.Thr336Ser",
          "transcript": "ENST00000870642.1",
          "protein_id": "ENSP00000540701.1",
          "transcript_support_level": null,
          "aa_start": 336,
          "aa_end": null,
          "aa_length": 439,
          "cds_start": 1007,
          "cds_end": null,
          "cds_length": 1320,
          "cdna_start": 1141,
          "cdna_end": null,
          "cdna_length": 1517,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000870642.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.1004C>G",
          "hgvs_p": "p.Thr335Ser",
          "transcript": "ENST00000924410.1",
          "protein_id": "ENSP00000594469.1",
          "transcript_support_level": null,
          "aa_start": 335,
          "aa_end": null,
          "aa_length": 438,
          "cds_start": 1004,
          "cds_end": null,
          "cds_length": 1317,
          "cdna_start": 1138,
          "cdna_end": null,
          "cdna_length": 2065,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924410.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.995C>G",
          "hgvs_p": "p.Thr332Ser",
          "transcript": "ENST00000924409.1",
          "protein_id": "ENSP00000594468.1",
          "transcript_support_level": null,
          "aa_start": 332,
          "aa_end": null,
          "aa_length": 435,
          "cds_start": 995,
          "cds_end": null,
          "cds_length": 1308,
          "cdna_start": 1135,
          "cdna_end": null,
          "cdna_length": 2063,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924409.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser",
          "transcript": "ENST00000924413.1",
          "protein_id": "ENSP00000594472.1",
          "transcript_support_level": null,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 433,
          "cds_start": 989,
          "cds_end": null,
          "cds_length": 1302,
          "cdna_start": 1091,
          "cdna_end": null,
          "cdna_length": 1470,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924413.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.983C>G",
          "hgvs_p": "p.Thr328Ser",
          "transcript": "ENST00000924408.1",
          "protein_id": "ENSP00000594467.1",
          "transcript_support_level": null,
          "aa_start": 328,
          "aa_end": null,
          "aa_length": 431,
          "cds_start": 983,
          "cds_end": null,
          "cds_length": 1296,
          "cdna_start": 1129,
          "cdna_end": null,
          "cdna_length": 2056,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924408.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.917C>G",
          "hgvs_p": "p.Thr306Ser",
          "transcript": "ENST00000924422.1",
          "protein_id": "ENSP00000594481.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 409,
          "cds_start": 917,
          "cds_end": null,
          "cds_length": 1230,
          "cdna_start": 1025,
          "cdna_end": null,
          "cdna_length": 1400,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924422.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.881C>G",
          "hgvs_p": "p.Thr294Ser",
          "transcript": "ENST00000924407.1",
          "protein_id": "ENSP00000594466.1",
          "transcript_support_level": null,
          "aa_start": 294,
          "aa_end": null,
          "aa_length": 397,
          "cds_start": 881,
          "cds_end": null,
          "cds_length": 1194,
          "cdna_start": 1140,
          "cdna_end": null,
          "cdna_length": 2194,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924407.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser",
          "transcript": "NM_001354844.2",
          "protein_id": "NP_001341773.1",
          "transcript_support_level": null,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 396,
          "cds_start": 989,
          "cds_end": null,
          "cds_length": 1191,
          "cdna_start": 1102,
          "cdna_end": null,
          "cdna_length": 1918,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354844.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.848C>G",
          "hgvs_p": "p.Thr283Ser",
          "transcript": "ENST00000924420.1",
          "protein_id": "ENSP00000594479.1",
          "transcript_support_level": null,
          "aa_start": 283,
          "aa_end": null,
          "aa_length": 386,
          "cds_start": 848,
          "cds_end": null,
          "cds_length": 1161,
          "cdna_start": 961,
          "cdna_end": null,
          "cdna_length": 1343,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924420.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.830C>G",
          "hgvs_p": "p.Thr277Ser",
          "transcript": "NM_001354845.2",
          "protein_id": "NP_001341774.1",
          "transcript_support_level": null,
          "aa_start": 277,
          "aa_end": null,
          "aa_length": 380,
          "cds_start": 830,
          "cds_end": null,
          "cds_length": 1143,
          "cdna_start": 943,
          "cdna_end": null,
          "cdna_length": 1870,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354845.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.818C>G",
          "hgvs_p": "p.Thr273Ser",
          "transcript": "ENST00000924416.1",
          "protein_id": "ENSP00000594475.1",
          "transcript_support_level": null,
          "aa_start": 273,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 818,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": 930,
          "cdna_end": null,
          "cdna_length": 1368,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924416.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.728C>G",
          "hgvs_p": "p.Thr243Ser",
          "transcript": "ENST00000924418.1",
          "protein_id": "ENSP00000594477.1",
          "transcript_support_level": null,
          "aa_start": 243,
          "aa_end": null,
          "aa_length": 346,
          "cds_start": 728,
          "cds_end": null,
          "cds_length": 1041,
          "cdna_start": 842,
          "cdna_end": null,
          "cdna_length": 1270,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924418.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.647C>G",
          "hgvs_p": "p.Thr216Ser",
          "transcript": "ENST00000924417.1",
          "protein_id": "ENSP00000594476.1",
          "transcript_support_level": null,
          "aa_start": 216,
          "aa_end": null,
          "aa_length": 319,
          "cds_start": 647,
          "cds_end": null,
          "cds_length": 960,
          "cdna_start": 760,
          "cdna_end": null,
          "cdna_length": 1194,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924417.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.593C>G",
          "hgvs_p": "p.Thr198Ser",
          "transcript": "ENST00000924415.1",
          "protein_id": "ENSP00000594474.1",
          "transcript_support_level": null,
          "aa_start": 198,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 593,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": 726,
          "cdna_end": null,
          "cdna_length": 1161,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924415.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.539C>G",
          "hgvs_p": "p.Thr180Ser",
          "transcript": "ENST00000960692.1",
          "protein_id": "ENSP00000630751.1",
          "transcript_support_level": null,
          "aa_start": 180,
          "aa_end": null,
          "aa_length": 283,
          "cds_start": 539,
          "cds_end": null,
          "cds_length": 852,
          "cdna_start": 551,
          "cdna_end": null,
          "cdna_length": 930,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000960692.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.410C>G",
          "hgvs_p": "p.Thr137Ser",
          "transcript": "ENST00000924412.1",
          "protein_id": "ENSP00000594471.1",
          "transcript_support_level": null,
          "aa_start": 137,
          "aa_end": null,
          "aa_length": 240,
          "cds_start": 410,
          "cds_end": null,
          "cds_length": 723,
          "cdna_start": 525,
          "cdna_end": null,
          "cdna_length": 1446,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924412.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.437C>G",
          "hgvs_p": "p.Thr146Ser",
          "transcript": "ENST00000507798.1",
          "protein_id": "ENSP00000426230.1",
          "transcript_support_level": 3,
          "aa_start": 146,
          "aa_end": null,
          "aa_length": 185,
          "cds_start": 437,
          "cds_end": null,
          "cds_length": 558,
          "cdna_start": 437,
          "cdna_end": null,
          "cdna_length": 767,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000507798.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.942+330C>G",
          "hgvs_p": null,
          "transcript": "ENST00000924414.1",
          "protein_id": "ENSP00000594473.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 386,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1161,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1444,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924414.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.799+473C>G",
          "hgvs_p": null,
          "transcript": "ENST00000924423.1",
          "protein_id": "ENSP00000594482.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": 1115,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924423.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.705+1034C>G",
          "hgvs_p": null,
          "transcript": "ENST00000924411.1",
          "protein_id": "ENSP00000594470.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 307,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 924,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1661,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924411.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.547-2081C>G",
          "hgvs_p": null,
          "transcript": "ENST00000924419.1",
          "protein_id": "ENSP00000594478.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 217,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 654,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 877,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924419.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "CCNB1",
          "gene_hgnc_id": 1579,
          "hgvs_c": "c.439-2081C>G",
          "hgvs_p": null,
          "transcript": "ENST00000924421.1",
          "protein_id": "ENSP00000594480.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 723,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000924421.1"
        }
      ],
      "gene_symbol": "CCNB1",
      "gene_hgnc_id": 1579,
      "dbsnp": "rs756777624",
      "frequency_reference_population": 6.8422383e-7,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": 6.84224e-7,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 1,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.22943639755249023,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.05000000074505806,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.124,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0724,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.5,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 3.193,
      "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": 0,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_031966.4",
          "gene_symbol": "CCNB1",
          "hgnc_id": 1579,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.989C>G",
          "hgvs_p": "p.Thr330Ser"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.