← 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: 10-95038992-T-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "10",
      "pos": 95038992,
      "ref": "T",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "NM_000770.3",
      "consequences": [
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1196A>C",
          "hgvs_p": "p.Lys399Thr",
          "transcript": "NM_000770.3",
          "protein_id": "NP_000761.3",
          "transcript_support_level": null,
          "aa_start": 399,
          "aa_end": null,
          "aa_length": 490,
          "cds_start": 1196,
          "cds_end": null,
          "cds_length": 1473,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000371270.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_000770.3"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1196A>C",
          "hgvs_p": "p.Lys399Thr",
          "transcript": "ENST00000371270.6",
          "protein_id": "ENSP00000360317.3",
          "transcript_support_level": 1,
          "aa_start": 399,
          "aa_end": null,
          "aa_length": 490,
          "cds_start": 1196,
          "cds_end": null,
          "cds_length": 1473,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_000770.3",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000371270.6"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1277A>C",
          "hgvs_p": "p.Lys426Thr",
          "transcript": "ENST00000854622.1",
          "protein_id": "ENSP00000524681.1",
          "transcript_support_level": null,
          "aa_start": 426,
          "aa_end": null,
          "aa_length": 517,
          "cds_start": 1277,
          "cds_end": null,
          "cds_length": 1554,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854622.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1232A>C",
          "hgvs_p": "p.Lys411Thr",
          "transcript": "ENST00000854631.1",
          "protein_id": "ENSP00000524690.1",
          "transcript_support_level": null,
          "aa_start": 411,
          "aa_end": null,
          "aa_length": 502,
          "cds_start": 1232,
          "cds_end": null,
          "cds_length": 1509,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854631.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1217A>C",
          "hgvs_p": "p.Lys406Thr",
          "transcript": "ENST00000854618.1",
          "protein_id": "ENSP00000524677.1",
          "transcript_support_level": null,
          "aa_start": 406,
          "aa_end": null,
          "aa_length": 497,
          "cds_start": 1217,
          "cds_end": null,
          "cds_length": 1494,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854618.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1190A>C",
          "hgvs_p": "p.Lys397Thr",
          "transcript": "ENST00000854621.1",
          "protein_id": "ENSP00000524680.1",
          "transcript_support_level": null,
          "aa_start": 397,
          "aa_end": null,
          "aa_length": 488,
          "cds_start": 1190,
          "cds_end": null,
          "cds_length": 1467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854621.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1190A>C",
          "hgvs_p": "p.Lys397Thr",
          "transcript": "ENST00000854623.1",
          "protein_id": "ENSP00000524682.1",
          "transcript_support_level": null,
          "aa_start": 397,
          "aa_end": null,
          "aa_length": 488,
          "cds_start": 1190,
          "cds_end": null,
          "cds_length": 1467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854623.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1196A>C",
          "hgvs_p": "p.Lys399Thr",
          "transcript": "ENST00000854627.1",
          "protein_id": "ENSP00000524686.1",
          "transcript_support_level": null,
          "aa_start": 399,
          "aa_end": null,
          "aa_length": 484,
          "cds_start": 1196,
          "cds_end": null,
          "cds_length": 1455,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854627.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1196A>C",
          "hgvs_p": "p.Lys399Thr",
          "transcript": "ENST00000854634.1",
          "protein_id": "ENSP00000524693.1",
          "transcript_support_level": null,
          "aa_start": 399,
          "aa_end": null,
          "aa_length": 481,
          "cds_start": 1196,
          "cds_end": null,
          "cds_length": 1446,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854634.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1058A>C",
          "hgvs_p": "p.Lys353Thr",
          "transcript": "ENST00000854626.1",
          "protein_id": "ENSP00000524685.1",
          "transcript_support_level": null,
          "aa_start": 353,
          "aa_end": null,
          "aa_length": 444,
          "cds_start": 1058,
          "cds_end": null,
          "cds_length": 1335,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854626.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1055A>C",
          "hgvs_p": "p.Lys352Thr",
          "transcript": "ENST00000854619.1",
          "protein_id": "ENSP00000524678.1",
          "transcript_support_level": null,
          "aa_start": 352,
          "aa_end": null,
          "aa_length": 443,
          "cds_start": 1055,
          "cds_end": null,
          "cds_length": 1332,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854619.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.1046A>C",
          "hgvs_p": "p.Lys349Thr",
          "transcript": "ENST00000854617.1",
          "protein_id": "ENSP00000524676.1",
          "transcript_support_level": null,
          "aa_start": 349,
          "aa_end": null,
          "aa_length": 440,
          "cds_start": 1046,
          "cds_end": null,
          "cds_length": 1323,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854617.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.995A>C",
          "hgvs_p": "p.Lys332Thr",
          "transcript": "ENST00000854629.1",
          "protein_id": "ENSP00000524688.1",
          "transcript_support_level": null,
          "aa_start": 332,
          "aa_end": null,
          "aa_length": 423,
          "cds_start": 995,
          "cds_end": null,
          "cds_length": 1272,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854629.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.986A>C",
          "hgvs_p": "p.Lys329Thr",
          "transcript": "NM_001198853.1",
          "protein_id": "NP_001185782.1",
          "transcript_support_level": null,
          "aa_start": 329,
          "aa_end": null,
          "aa_length": 420,
          "cds_start": 986,
          "cds_end": null,
          "cds_length": 1263,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001198853.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.986A>C",
          "hgvs_p": "p.Lys329Thr",
          "transcript": "NM_001198855.1",
          "protein_id": "NP_001185784.1",
          "transcript_support_level": null,
          "aa_start": 329,
          "aa_end": null,
          "aa_length": 420,
          "cds_start": 986,
          "cds_end": null,
          "cds_length": 1263,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001198855.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.986A>C",
          "hgvs_p": "p.Lys329Thr",
          "transcript": "ENST00000623108.3",
          "protein_id": "ENSP00000485110.1",
          "transcript_support_level": 2,
          "aa_start": 329,
          "aa_end": null,
          "aa_length": 420,
          "cds_start": 986,
          "cds_end": null,
          "cds_length": 1263,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000623108.3"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.890A>C",
          "hgvs_p": "p.Lys297Thr",
          "transcript": "NM_001198854.1",
          "protein_id": "NP_001185783.1",
          "transcript_support_level": null,
          "aa_start": 297,
          "aa_end": null,
          "aa_length": 388,
          "cds_start": 890,
          "cds_end": null,
          "cds_length": 1167,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001198854.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.890A>C",
          "hgvs_p": "p.Lys297Thr",
          "transcript": "ENST00000535898.5",
          "protein_id": "ENSP00000445062.1",
          "transcript_support_level": 2,
          "aa_start": 297,
          "aa_end": null,
          "aa_length": 388,
          "cds_start": 890,
          "cds_end": null,
          "cds_length": 1167,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000535898.5"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.866A>C",
          "hgvs_p": "p.Lys289Thr",
          "transcript": "ENST00000854625.1",
          "protein_id": "ENSP00000524684.1",
          "transcript_support_level": null,
          "aa_start": 289,
          "aa_end": null,
          "aa_length": 380,
          "cds_start": 866,
          "cds_end": null,
          "cds_length": 1143,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854625.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.812A>C",
          "hgvs_p": "p.Lys271Thr",
          "transcript": "ENST00000854633.1",
          "protein_id": "ENSP00000524692.1",
          "transcript_support_level": null,
          "aa_start": 271,
          "aa_end": null,
          "aa_length": 362,
          "cds_start": 812,
          "cds_end": null,
          "cds_length": 1089,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854633.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.722A>C",
          "hgvs_p": "p.Lys241Thr",
          "transcript": "ENST00000854624.1",
          "protein_id": "ENSP00000524683.1",
          "transcript_support_level": null,
          "aa_start": 241,
          "aa_end": null,
          "aa_length": 332,
          "cds_start": 722,
          "cds_end": null,
          "cds_length": 999,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854624.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.566A>C",
          "hgvs_p": "p.Lys189Thr",
          "transcript": "ENST00000854630.1",
          "protein_id": "ENSP00000524689.1",
          "transcript_support_level": null,
          "aa_start": 189,
          "aa_end": null,
          "aa_length": 280,
          "cds_start": 566,
          "cds_end": null,
          "cds_length": 843,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854630.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.545A>C",
          "hgvs_p": "p.Lys182Thr",
          "transcript": "ENST00000854616.1",
          "protein_id": "ENSP00000524675.1",
          "transcript_support_level": null,
          "aa_start": 182,
          "aa_end": null,
          "aa_length": 273,
          "cds_start": 545,
          "cds_end": null,
          "cds_length": 822,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854616.1"
        },
        {
          "aa_ref": "K",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.215A>C",
          "hgvs_p": "p.Lys72Thr",
          "transcript": "ENST00000854620.1",
          "protein_id": "ENSP00000524679.1",
          "transcript_support_level": null,
          "aa_start": 72,
          "aa_end": null,
          "aa_length": 163,
          "cds_start": 215,
          "cds_end": null,
          "cds_length": 492,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854620.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": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.962-1683A>C",
          "hgvs_p": null,
          "transcript": "ENST00000854628.1",
          "protein_id": "ENSP00000524687.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 380,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1143,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854628.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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "c.332-1683A>C",
          "hgvs_p": null,
          "transcript": "ENST00000854632.1",
          "protein_id": "ENSP00000524691.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 170,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 513,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854632.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.1539A>C",
          "hgvs_p": null,
          "transcript": "ENST00000479946.2",
          "protein_id": null,
          "transcript_support_level": 2,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000479946.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.*982A>C",
          "hgvs_p": null,
          "transcript": "ENST00000490994.6",
          "protein_id": "ENSP00000433314.1",
          "transcript_support_level": 2,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000490994.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.*771A>C",
          "hgvs_p": null,
          "transcript": "ENST00000525991.5",
          "protein_id": "ENSP00000433842.1",
          "transcript_support_level": 2,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000525991.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.1451A>C",
          "hgvs_p": null,
          "transcript": "ENST00000526814.5",
          "protein_id": null,
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000526814.5"
        },
        {
          "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": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.*53A>C",
          "hgvs_p": null,
          "transcript": "ENST00000527420.5",
          "protein_id": "ENSP00000433191.1",
          "transcript_support_level": 2,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000527420.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.1490A>C",
          "hgvs_p": null,
          "transcript": "ENST00000527953.5",
          "protein_id": null,
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000527953.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.384A>C",
          "hgvs_p": null,
          "transcript": "ENST00000531714.1",
          "protein_id": null,
          "transcript_support_level": 2,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000531714.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.1430A>C",
          "hgvs_p": null,
          "transcript": "ENST00000533320.5",
          "protein_id": null,
          "transcript_support_level": 2,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000533320.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.*982A>C",
          "hgvs_p": null,
          "transcript": "ENST00000490994.6",
          "protein_id": "ENSP00000433314.1",
          "transcript_support_level": 2,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000490994.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.*771A>C",
          "hgvs_p": null,
          "transcript": "ENST00000525991.5",
          "protein_id": "ENSP00000433842.1",
          "transcript_support_level": 2,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000525991.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP2C8",
          "gene_hgnc_id": 2622,
          "hgvs_c": "n.*53A>C",
          "hgvs_p": null,
          "transcript": "ENST00000527420.5",
          "protein_id": "ENSP00000433191.1",
          "transcript_support_level": 2,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000527420.5"
        }
      ],
      "gene_symbol": "CYP2C8",
      "gene_hgnc_id": 2622,
      "dbsnp": "rs10509681",
      "frequency_reference_population": 6.842875e-7,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": 6.84288e-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.23669210076332092,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.062,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1312,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.42,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.323,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 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_000770.3",
          "gene_symbol": "CYP2C8",
          "hgnc_id": 2622,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD,AR",
          "hgvs_c": "c.1196A>C",
          "hgvs_p": "p.Lys399Thr"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}