← 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: 4-38137235-G-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "4",
      "pos": 38137235,
      "ref": "G",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "NM_001396959.1",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3689G>C",
          "hgvs_p": "p.Arg1230Pro",
          "transcript": "NM_001396959.1",
          "protein_id": "NP_001383888.1",
          "transcript_support_level": null,
          "aa_start": 1230,
          "aa_end": null,
          "aa_length": 1262,
          "cds_start": 3689,
          "cds_end": null,
          "cds_length": 3789,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000698857.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001396959.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3689G>C",
          "hgvs_p": "p.Arg1230Pro",
          "transcript": "ENST00000698857.1",
          "protein_id": "ENSP00000513987.1",
          "transcript_support_level": null,
          "aa_start": 1230,
          "aa_end": null,
          "aa_length": 1262,
          "cds_start": 3689,
          "cds_end": null,
          "cds_length": 3789,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001396959.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698857.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3407G>C",
          "hgvs_p": "p.Arg1136Pro",
          "transcript": "ENST00000261439.9",
          "protein_id": "ENSP00000261439.4",
          "transcript_support_level": 1,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1168,
          "cds_start": 3407,
          "cds_end": null,
          "cds_length": 3507,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000261439.9"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3728G>C",
          "hgvs_p": "p.Arg1243Pro",
          "transcript": "ENST00000961338.1",
          "protein_id": "ENSP00000631397.1",
          "transcript_support_level": null,
          "aa_start": 1243,
          "aa_end": null,
          "aa_length": 1275,
          "cds_start": 3728,
          "cds_end": null,
          "cds_length": 3828,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961338.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3710G>C",
          "hgvs_p": "p.Arg1237Pro",
          "transcript": "ENST00000859648.1",
          "protein_id": "ENSP00000529707.1",
          "transcript_support_level": null,
          "aa_start": 1237,
          "aa_end": null,
          "aa_length": 1269,
          "cds_start": 3710,
          "cds_end": null,
          "cds_length": 3810,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859648.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3650G>C",
          "hgvs_p": "p.Arg1217Pro",
          "transcript": "ENST00000859644.1",
          "protein_id": "ENSP00000529703.1",
          "transcript_support_level": null,
          "aa_start": 1217,
          "aa_end": null,
          "aa_length": 1249,
          "cds_start": 3650,
          "cds_end": null,
          "cds_length": 3750,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859644.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3599G>C",
          "hgvs_p": "p.Arg1200Pro",
          "transcript": "ENST00000859649.1",
          "protein_id": "ENSP00000529708.1",
          "transcript_support_level": null,
          "aa_start": 1200,
          "aa_end": null,
          "aa_length": 1232,
          "cds_start": 3599,
          "cds_end": null,
          "cds_length": 3699,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859649.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3578G>C",
          "hgvs_p": "p.Arg1193Pro",
          "transcript": "ENST00000961343.1",
          "protein_id": "ENSP00000631402.1",
          "transcript_support_level": null,
          "aa_start": 1193,
          "aa_end": null,
          "aa_length": 1225,
          "cds_start": 3578,
          "cds_end": null,
          "cds_length": 3678,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961343.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3566G>C",
          "hgvs_p": "p.Arg1189Pro",
          "transcript": "ENST00000961337.1",
          "protein_id": "ENSP00000631396.1",
          "transcript_support_level": null,
          "aa_start": 1189,
          "aa_end": null,
          "aa_length": 1221,
          "cds_start": 3566,
          "cds_end": null,
          "cds_length": 3666,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961337.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3560G>C",
          "hgvs_p": "p.Arg1187Pro",
          "transcript": "ENST00000859650.1",
          "protein_id": "ENSP00000529709.1",
          "transcript_support_level": null,
          "aa_start": 1187,
          "aa_end": null,
          "aa_length": 1219,
          "cds_start": 3560,
          "cds_end": null,
          "cds_length": 3660,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859650.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3530G>C",
          "hgvs_p": "p.Arg1177Pro",
          "transcript": "ENST00000936241.1",
          "protein_id": "ENSP00000606300.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1209,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3630,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000936241.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3488G>C",
          "hgvs_p": "p.Arg1163Pro",
          "transcript": "ENST00000859647.1",
          "protein_id": "ENSP00000529706.1",
          "transcript_support_level": null,
          "aa_start": 1163,
          "aa_end": null,
          "aa_length": 1195,
          "cds_start": 3488,
          "cds_end": null,
          "cds_length": 3588,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859647.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3473G>C",
          "hgvs_p": "p.Arg1158Pro",
          "transcript": "ENST00000961340.1",
          "protein_id": "ENSP00000631399.1",
          "transcript_support_level": null,
          "aa_start": 1158,
          "aa_end": null,
          "aa_length": 1190,
          "cds_start": 3473,
          "cds_end": null,
          "cds_length": 3573,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961340.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3467G>C",
          "hgvs_p": "p.Arg1156Pro",
          "transcript": "ENST00000859651.1",
          "protein_id": "ENSP00000529710.1",
          "transcript_support_level": null,
          "aa_start": 1156,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3467,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859651.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3407G>C",
          "hgvs_p": "p.Arg1136Pro",
          "transcript": "NM_015173.4",
          "protein_id": "NP_055988.2",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1168,
          "cds_start": 3407,
          "cds_end": null,
          "cds_length": 3507,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_015173.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3380G>C",
          "hgvs_p": "p.Arg1127Pro",
          "transcript": "NM_001253912.2",
          "protein_id": "NP_001240841.1",
          "transcript_support_level": null,
          "aa_start": 1127,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3380,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001253912.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3380G>C",
          "hgvs_p": "p.Arg1127Pro",
          "transcript": "ENST00000508802.5",
          "protein_id": "ENSP00000423651.1",
          "transcript_support_level": 2,
          "aa_start": 1127,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3380,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000508802.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3368G>C",
          "hgvs_p": "p.Arg1123Pro",
          "transcript": "ENST00000859645.1",
          "protein_id": "ENSP00000529704.1",
          "transcript_support_level": null,
          "aa_start": 1123,
          "aa_end": null,
          "aa_length": 1155,
          "cds_start": 3368,
          "cds_end": null,
          "cds_length": 3468,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859645.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3296G>C",
          "hgvs_p": "p.Arg1099Pro",
          "transcript": "ENST00000936240.1",
          "protein_id": "ENSP00000606299.1",
          "transcript_support_level": null,
          "aa_start": 1099,
          "aa_end": null,
          "aa_length": 1131,
          "cds_start": 3296,
          "cds_end": null,
          "cds_length": 3396,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000936240.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3284G>C",
          "hgvs_p": "p.Arg1095Pro",
          "transcript": "ENST00000961339.1",
          "protein_id": "ENSP00000631398.1",
          "transcript_support_level": null,
          "aa_start": 1095,
          "aa_end": null,
          "aa_length": 1127,
          "cds_start": 3284,
          "cds_end": null,
          "cds_length": 3384,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961339.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3245G>C",
          "hgvs_p": "p.Arg1082Pro",
          "transcript": "ENST00000961341.1",
          "protein_id": "ENSP00000631400.1",
          "transcript_support_level": null,
          "aa_start": 1082,
          "aa_end": null,
          "aa_length": 1114,
          "cds_start": 3245,
          "cds_end": null,
          "cds_length": 3345,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961341.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3083G>C",
          "hgvs_p": "p.Arg1028Pro",
          "transcript": "ENST00000961342.1",
          "protein_id": "ENSP00000631401.1",
          "transcript_support_level": null,
          "aa_start": 1028,
          "aa_end": null,
          "aa_length": 1060,
          "cds_start": 3083,
          "cds_end": null,
          "cds_length": 3183,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000961342.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3002G>C",
          "hgvs_p": "p.Arg1001Pro",
          "transcript": "ENST00000859646.1",
          "protein_id": "ENSP00000529705.1",
          "transcript_support_level": null,
          "aa_start": 1001,
          "aa_end": null,
          "aa_length": 1033,
          "cds_start": 3002,
          "cds_end": null,
          "cds_length": 3102,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000859646.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.2468G>C",
          "hgvs_p": "p.Arg823Pro",
          "transcript": "ENST00000510573.6",
          "protein_id": "ENSP00000421641.3",
          "transcript_support_level": 5,
          "aa_start": 823,
          "aa_end": null,
          "aa_length": 855,
          "cds_start": 2468,
          "cds_end": null,
          "cds_length": 2568,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000510573.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.698G>C",
          "hgvs_p": "p.Arg233Pro",
          "transcript": "NM_001253913.2",
          "protein_id": "NP_001240842.1",
          "transcript_support_level": null,
          "aa_start": 233,
          "aa_end": null,
          "aa_length": 265,
          "cds_start": 698,
          "cds_end": null,
          "cds_length": 798,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001253913.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.698G>C",
          "hgvs_p": "p.Arg233Pro",
          "transcript": "NM_001253914.2",
          "protein_id": "NP_001240843.1",
          "transcript_support_level": null,
          "aa_start": 233,
          "aa_end": null,
          "aa_length": 265,
          "cds_start": 698,
          "cds_end": null,
          "cds_length": 798,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001253914.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.443G>C",
          "hgvs_p": "p.Arg148Pro",
          "transcript": "NM_001253915.2",
          "protein_id": "NP_001240844.1",
          "transcript_support_level": null,
          "aa_start": 148,
          "aa_end": null,
          "aa_length": 180,
          "cds_start": 443,
          "cds_end": null,
          "cds_length": 543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001253915.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3788G>C",
          "hgvs_p": "p.Arg1263Pro",
          "transcript": "XM_011513659.3",
          "protein_id": "XP_011511961.1",
          "transcript_support_level": null,
          "aa_start": 1263,
          "aa_end": null,
          "aa_length": 1295,
          "cds_start": 3788,
          "cds_end": null,
          "cds_length": 3888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513659.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3749G>C",
          "hgvs_p": "p.Arg1250Pro",
          "transcript": "XM_011513660.4",
          "protein_id": "XP_011511962.1",
          "transcript_support_level": null,
          "aa_start": 1250,
          "aa_end": null,
          "aa_length": 1282,
          "cds_start": 3749,
          "cds_end": null,
          "cds_length": 3849,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513660.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3728G>C",
          "hgvs_p": "p.Arg1243Pro",
          "transcript": "XM_005262646.4",
          "protein_id": "XP_005262703.1",
          "transcript_support_level": null,
          "aa_start": 1243,
          "aa_end": null,
          "aa_length": 1275,
          "cds_start": 3728,
          "cds_end": null,
          "cds_length": 3828,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005262646.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3668G>C",
          "hgvs_p": "p.Arg1223Pro",
          "transcript": "XM_011513662.4",
          "protein_id": "XP_011511964.1",
          "transcript_support_level": null,
          "aa_start": 1223,
          "aa_end": null,
          "aa_length": 1255,
          "cds_start": 3668,
          "cds_end": null,
          "cds_length": 3768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513662.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3629G>C",
          "hgvs_p": "p.Arg1210Pro",
          "transcript": "XM_011513663.4",
          "protein_id": "XP_011511965.1",
          "transcript_support_level": null,
          "aa_start": 1210,
          "aa_end": null,
          "aa_length": 1242,
          "cds_start": 3629,
          "cds_end": null,
          "cds_length": 3729,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513663.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3626G>C",
          "hgvs_p": "p.Arg1209Pro",
          "transcript": "XM_011513664.4",
          "protein_id": "XP_011511966.1",
          "transcript_support_level": null,
          "aa_start": 1209,
          "aa_end": null,
          "aa_length": 1241,
          "cds_start": 3626,
          "cds_end": null,
          "cds_length": 3726,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513664.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3608G>C",
          "hgvs_p": "p.Arg1203Pro",
          "transcript": "XM_047449888.1",
          "protein_id": "XP_047305844.1",
          "transcript_support_level": null,
          "aa_start": 1203,
          "aa_end": null,
          "aa_length": 1235,
          "cds_start": 3608,
          "cds_end": null,
          "cds_length": 3708,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449888.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3587G>C",
          "hgvs_p": "p.Arg1196Pro",
          "transcript": "XM_017007918.3",
          "protein_id": "XP_016863407.1",
          "transcript_support_level": null,
          "aa_start": 1196,
          "aa_end": null,
          "aa_length": 1228,
          "cds_start": 3587,
          "cds_end": null,
          "cds_length": 3687,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017007918.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3569G>C",
          "hgvs_p": "p.Arg1190Pro",
          "transcript": "XM_017007919.3",
          "protein_id": "XP_016863408.1",
          "transcript_support_level": null,
          "aa_start": 1190,
          "aa_end": null,
          "aa_length": 1222,
          "cds_start": 3569,
          "cds_end": null,
          "cds_length": 3669,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017007919.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3527G>C",
          "hgvs_p": "p.Arg1176Pro",
          "transcript": "XM_047449889.1",
          "protein_id": "XP_047305845.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1208,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 3627,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449889.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3506G>C",
          "hgvs_p": "p.Arg1169Pro",
          "transcript": "XM_011513665.4",
          "protein_id": "XP_011511967.1",
          "transcript_support_level": null,
          "aa_start": 1169,
          "aa_end": null,
          "aa_length": 1201,
          "cds_start": 3506,
          "cds_end": null,
          "cds_length": 3606,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513665.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3467G>C",
          "hgvs_p": "p.Arg1156Pro",
          "transcript": "XM_011513666.4",
          "protein_id": "XP_011511968.1",
          "transcript_support_level": null,
          "aa_start": 1156,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3467,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513666.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3446G>C",
          "hgvs_p": "p.Arg1149Pro",
          "transcript": "XM_017007920.3",
          "protein_id": "XP_016863409.1",
          "transcript_support_level": null,
          "aa_start": 1149,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3446,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017007920.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3407G>C",
          "hgvs_p": "p.Arg1136Pro",
          "transcript": "XM_047449890.1",
          "protein_id": "XP_047305846.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1168,
          "cds_start": 3407,
          "cds_end": null,
          "cds_length": 3507,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449890.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3401G>C",
          "hgvs_p": "p.Arg1134Pro",
          "transcript": "XM_047449891.1",
          "protein_id": "XP_047305847.1",
          "transcript_support_level": null,
          "aa_start": 1134,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3401,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449891.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3341G>C",
          "hgvs_p": "p.Arg1114Pro",
          "transcript": "XM_005262649.4",
          "protein_id": "XP_005262706.1",
          "transcript_support_level": null,
          "aa_start": 1114,
          "aa_end": null,
          "aa_length": 1146,
          "cds_start": 3341,
          "cds_end": null,
          "cds_length": 3441,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005262649.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3302G>C",
          "hgvs_p": "p.Arg1101Pro",
          "transcript": "XM_047449892.1",
          "protein_id": "XP_047305848.1",
          "transcript_support_level": null,
          "aa_start": 1101,
          "aa_end": null,
          "aa_length": 1133,
          "cds_start": 3302,
          "cds_end": null,
          "cds_length": 3402,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449892.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3221G>C",
          "hgvs_p": "p.Arg1074Pro",
          "transcript": "XM_047449893.1",
          "protein_id": "XP_047305849.1",
          "transcript_support_level": null,
          "aa_start": 1074,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3221,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449893.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3182G>C",
          "hgvs_p": "p.Arg1061Pro",
          "transcript": "XM_047449894.1",
          "protein_id": "XP_047305850.1",
          "transcript_support_level": null,
          "aa_start": 1061,
          "aa_end": null,
          "aa_length": 1093,
          "cds_start": 3182,
          "cds_end": null,
          "cds_length": 3282,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449894.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3140G>C",
          "hgvs_p": "p.Arg1047Pro",
          "transcript": "XM_047449895.1",
          "protein_id": "XP_047305851.1",
          "transcript_support_level": null,
          "aa_start": 1047,
          "aa_end": null,
          "aa_length": 1079,
          "cds_start": 3140,
          "cds_end": null,
          "cds_length": 3240,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449895.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3059G>C",
          "hgvs_p": "p.Arg1020Pro",
          "transcript": "XM_047449896.1",
          "protein_id": "XP_047305852.1",
          "transcript_support_level": null,
          "aa_start": 1020,
          "aa_end": null,
          "aa_length": 1052,
          "cds_start": 3059,
          "cds_end": null,
          "cds_length": 3159,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449896.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3035G>C",
          "hgvs_p": "p.Arg1012Pro",
          "transcript": "XM_047449897.1",
          "protein_id": "XP_047305853.1",
          "transcript_support_level": null,
          "aa_start": 1012,
          "aa_end": null,
          "aa_length": 1044,
          "cds_start": 3035,
          "cds_end": null,
          "cds_length": 3135,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449897.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.3020G>C",
          "hgvs_p": "p.Arg1007Pro",
          "transcript": "XM_017007921.3",
          "protein_id": "XP_016863410.1",
          "transcript_support_level": null,
          "aa_start": 1007,
          "aa_end": null,
          "aa_length": 1039,
          "cds_start": 3020,
          "cds_end": null,
          "cds_length": 3120,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017007921.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.1385G>C",
          "hgvs_p": "p.Arg462Pro",
          "transcript": "XM_011513670.4",
          "protein_id": "XP_011511972.1",
          "transcript_support_level": null,
          "aa_start": 462,
          "aa_end": null,
          "aa_length": 494,
          "cds_start": 1385,
          "cds_end": null,
          "cds_length": 1485,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011513670.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "c.698G>C",
          "hgvs_p": "p.Arg233Pro",
          "transcript": "XM_047449898.1",
          "protein_id": "XP_047305854.1",
          "transcript_support_level": null,
          "aa_start": 233,
          "aa_end": null,
          "aa_length": 265,
          "cds_start": 698,
          "cds_end": null,
          "cds_length": 798,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047449898.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "n.1404G>C",
          "hgvs_p": null,
          "transcript": "ENST00000401554.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": "pseudogene",
          "feature": "ENST00000401554.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "n.399G>C",
          "hgvs_p": null,
          "transcript": "ENST00000405444.3",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": "ENST00000405444.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "n.600G>C",
          "hgvs_p": null,
          "transcript": "ENST00000406664.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": "pseudogene",
          "feature": "ENST00000406664.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "n.1050G>C",
          "hgvs_p": null,
          "transcript": "ENST00000407365.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": "pseudogene",
          "feature": "ENST00000407365.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "n.599G>C",
          "hgvs_p": null,
          "transcript": "ENST00000492180.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": "ENST00000492180.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TBC1D1",
          "gene_hgnc_id": 11578,
          "hgvs_c": "n.3636G>C",
          "hgvs_p": null,
          "transcript": "ENST00000698858.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": "ENST00000698858.1"
        }
      ],
      "gene_symbol": "TBC1D1",
      "gene_hgnc_id": 11578,
      "dbsnp": "rs13110318",
      "frequency_reference_population": 0.0000065690074,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": null,
      "gnomad_genomes_af": 0.00000656901,
      "gnomad_exomes_ac": null,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": null,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.6573307514190674,
      "computational_prediction_selected": "Uncertain_significance",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.25,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.9698,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.01,
      "bayesdelnoaf_prediction": "Uncertain_significance",
      "phylop100way_score": 3.244,
      "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": 2,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2",
      "acmg_by_gene": [
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PM2"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001396959.1",
          "gene_symbol": "TBC1D1",
          "hgnc_id": 11578,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.3689G>C",
          "hgvs_p": "p.Arg1230Pro"
        }
      ],
      "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.