← Back to variant description

GeneBe API Showcase

This page demonstrates how to use the GeneBe API to query variant information. The API provides programmatic access to genomic annotations and variant data.

API presented here should be used for checking single variants. If you want to check many variants at once, please use other API endpoints that you will find in the documentation.

Documentation & Advanced Usage

Complete API documentation:docs.genebe.net/docs/api/overview/

Interactive endpoint tester:api.genebe.net/cloud/gb-api-doc/swagger-ui/

Python client for pandas:pypi.org/project/genebe/

Java CLI for VCF files:github.com/pstawinski/genebe-cli

All tools documented at:docs.genebe.net

API Request Examples for Variant: 5-150392717-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "5",
      "pos": 150392717,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001371623.1",
      "consequences": [
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu",
          "transcript": "NM_001371623.1",
          "protein_id": "NP_001358552.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1489,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 4470,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000643257.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001371623.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu",
          "transcript": "ENST00000643257.2",
          "protein_id": "ENSP00000493815.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1489,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 4470,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001371623.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000643257.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000504761.6",
          "protein_id": "ENSP00000421655.2",
          "transcript_support_level": 1,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1488,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000504761.6"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3296C>T",
          "hgvs_p": "p.Pro1099Leu",
          "transcript": "ENST00000323668.11",
          "protein_id": "ENSP00000325223.6",
          "transcript_support_level": 1,
          "aa_start": 1099,
          "aa_end": null,
          "aa_length": 1411,
          "cds_start": 3296,
          "cds_end": null,
          "cds_length": 4236,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000323668.11"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3737C>T",
          "hgvs_p": "p.Pro1246Leu",
          "transcript": "ENST00000930571.1",
          "protein_id": "ENSP00000600630.1",
          "transcript_support_level": null,
          "aa_start": 1246,
          "aa_end": null,
          "aa_length": 1558,
          "cds_start": 3737,
          "cds_end": null,
          "cds_length": 4677,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930571.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3638C>T",
          "hgvs_p": "p.Pro1213Leu",
          "transcript": "ENST00000930555.1",
          "protein_id": "ENSP00000600614.1",
          "transcript_support_level": null,
          "aa_start": 1213,
          "aa_end": null,
          "aa_length": 1525,
          "cds_start": 3638,
          "cds_end": null,
          "cds_length": 4578,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930555.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3638C>T",
          "hgvs_p": "p.Pro1213Leu",
          "transcript": "ENST00000930560.1",
          "protein_id": "ENSP00000600619.1",
          "transcript_support_level": null,
          "aa_start": 1213,
          "aa_end": null,
          "aa_length": 1525,
          "cds_start": 3638,
          "cds_end": null,
          "cds_length": 4578,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930560.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3635C>T",
          "hgvs_p": "p.Pro1212Leu",
          "transcript": "ENST00000930554.1",
          "protein_id": "ENSP00000600613.1",
          "transcript_support_level": null,
          "aa_start": 1212,
          "aa_end": null,
          "aa_length": 1524,
          "cds_start": 3635,
          "cds_end": null,
          "cds_length": 4575,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930554.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3605C>T",
          "hgvs_p": "p.Pro1202Leu",
          "transcript": "ENST00000930565.1",
          "protein_id": "ENSP00000600624.1",
          "transcript_support_level": null,
          "aa_start": 1202,
          "aa_end": null,
          "aa_length": 1514,
          "cds_start": 3605,
          "cds_end": null,
          "cds_length": 4545,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930565.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3641C>T",
          "hgvs_p": "p.Pro1214Leu",
          "transcript": "ENST00000930570.1",
          "protein_id": "ENSP00000600629.1",
          "transcript_support_level": null,
          "aa_start": 1214,
          "aa_end": null,
          "aa_length": 1509,
          "cds_start": 3641,
          "cds_end": null,
          "cds_length": 4530,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930570.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3587C>T",
          "hgvs_p": "p.Pro1196Leu",
          "transcript": "ENST00000930586.1",
          "protein_id": "ENSP00000600645.1",
          "transcript_support_level": null,
          "aa_start": 1196,
          "aa_end": null,
          "aa_length": 1508,
          "cds_start": 3587,
          "cds_end": null,
          "cds_length": 4527,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930586.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "NM_001135243.2",
          "protein_id": "NP_001128715.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1488,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001135243.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000377797.7",
          "protein_id": "ENSP00000367028.4",
          "transcript_support_level": 5,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1488,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000377797.7"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000513346.5",
          "protein_id": "ENSP00000427484.1",
          "transcript_support_level": 5,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1488,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000513346.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu",
          "transcript": "ENST00000930558.1",
          "protein_id": "ENSP00000600617.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1488,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 4467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930558.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3524C>T",
          "hgvs_p": "p.Pro1175Leu",
          "transcript": "ENST00000930544.1",
          "protein_id": "ENSP00000600603.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930544.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3524C>T",
          "hgvs_p": "p.Pro1175Leu",
          "transcript": "ENST00000930556.1",
          "protein_id": "ENSP00000600615.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930556.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu",
          "transcript": "ENST00000930557.1",
          "protein_id": "ENSP00000600616.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930557.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000930575.1",
          "protein_id": "ENSP00000600634.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930575.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu",
          "transcript": "ENST00000930576.1",
          "protein_id": "ENSP00000600635.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1472,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 4419,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930576.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000930562.1",
          "protein_id": "ENSP00000600621.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1470,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4413,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930562.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3461C>T",
          "hgvs_p": "p.Pro1154Leu",
          "transcript": "ENST00000930573.1",
          "protein_id": "ENSP00000600632.1",
          "transcript_support_level": null,
          "aa_start": 1154,
          "aa_end": null,
          "aa_length": 1466,
          "cds_start": 3461,
          "cds_end": null,
          "cds_length": 4401,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930573.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3458C>T",
          "hgvs_p": "p.Pro1153Leu",
          "transcript": "ENST00000930548.1",
          "protein_id": "ENSP00000600607.1",
          "transcript_support_level": null,
          "aa_start": 1153,
          "aa_end": null,
          "aa_length": 1465,
          "cds_start": 3458,
          "cds_end": null,
          "cds_length": 4398,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930548.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3458C>T",
          "hgvs_p": "p.Pro1153Leu",
          "transcript": "ENST00000930567.1",
          "protein_id": "ENSP00000600626.1",
          "transcript_support_level": null,
          "aa_start": 1153,
          "aa_end": null,
          "aa_length": 1465,
          "cds_start": 3458,
          "cds_end": null,
          "cds_length": 4398,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930567.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3416C>T",
          "hgvs_p": "p.Pro1139Leu",
          "transcript": "NM_001135244.2",
          "protein_id": "NP_001128716.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1451,
          "cds_start": 3416,
          "cds_end": null,
          "cds_length": 4356,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001135244.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3416C>T",
          "hgvs_p": "p.Pro1139Leu",
          "transcript": "ENST00000439160.6",
          "protein_id": "ENSP00000406888.2",
          "transcript_support_level": 5,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1451,
          "cds_start": 3416,
          "cds_end": null,
          "cds_length": 4356,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000439160.6"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3413C>T",
          "hgvs_p": "p.Pro1138Leu",
          "transcript": "NM_001195141.2",
          "protein_id": "NP_001182070.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1450,
          "cds_start": 3413,
          "cds_end": null,
          "cds_length": 4353,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001195141.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3413C>T",
          "hgvs_p": "p.Pro1138Leu",
          "transcript": "ENST00000427724.7",
          "protein_id": "ENSP00000390717.3",
          "transcript_support_level": 5,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1450,
          "cds_start": 3413,
          "cds_end": null,
          "cds_length": 4353,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000427724.7"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3416C>T",
          "hgvs_p": "p.Pro1139Leu",
          "transcript": "ENST00000930553.1",
          "protein_id": "ENSP00000600612.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1450,
          "cds_start": 3416,
          "cds_end": null,
          "cds_length": 4353,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930553.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3410C>T",
          "hgvs_p": "p.Pro1137Leu",
          "transcript": "ENST00000930543.1",
          "protein_id": "ENSP00000600602.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1449,
          "cds_start": 3410,
          "cds_end": null,
          "cds_length": 4350,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930543.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3407C>T",
          "hgvs_p": "p.Pro1136Leu",
          "transcript": "ENST00000930547.1",
          "protein_id": "ENSP00000600606.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1448,
          "cds_start": 3407,
          "cds_end": null,
          "cds_length": 4347,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930547.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3404C>T",
          "hgvs_p": "p.Pro1135Leu",
          "transcript": "ENST00000930577.1",
          "protein_id": "ENSP00000600636.1",
          "transcript_support_level": null,
          "aa_start": 1135,
          "aa_end": null,
          "aa_length": 1447,
          "cds_start": 3404,
          "cds_end": null,
          "cds_length": 4344,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930577.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3392C>T",
          "hgvs_p": "p.Pro1131Leu",
          "transcript": "ENST00000930561.1",
          "protein_id": "ENSP00000600620.1",
          "transcript_support_level": null,
          "aa_start": 1131,
          "aa_end": null,
          "aa_length": 1443,
          "cds_start": 3392,
          "cds_end": null,
          "cds_length": 4332,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930561.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3389C>T",
          "hgvs_p": "p.Pro1130Leu",
          "transcript": "ENST00000930578.1",
          "protein_id": "ENSP00000600637.1",
          "transcript_support_level": null,
          "aa_start": 1130,
          "aa_end": null,
          "aa_length": 1442,
          "cds_start": 3389,
          "cds_end": null,
          "cds_length": 4329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930578.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3416C>T",
          "hgvs_p": "p.Pro1139Leu",
          "transcript": "ENST00000930551.1",
          "protein_id": "ENSP00000600610.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1434,
          "cds_start": 3416,
          "cds_end": null,
          "cds_length": 4305,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930551.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3350C>T",
          "hgvs_p": "p.Pro1117Leu",
          "transcript": "ENST00000930540.1",
          "protein_id": "ENSP00000600599.1",
          "transcript_support_level": null,
          "aa_start": 1117,
          "aa_end": null,
          "aa_length": 1429,
          "cds_start": 3350,
          "cds_end": null,
          "cds_length": 4290,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930540.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3347C>T",
          "hgvs_p": "p.Pro1116Leu",
          "transcript": "ENST00000930559.1",
          "protein_id": "ENSP00000600618.1",
          "transcript_support_level": null,
          "aa_start": 1116,
          "aa_end": null,
          "aa_length": 1428,
          "cds_start": 3347,
          "cds_end": null,
          "cds_length": 4287,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930559.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3347C>T",
          "hgvs_p": "p.Pro1116Leu",
          "transcript": "ENST00000930572.1",
          "protein_id": "ENSP00000600631.1",
          "transcript_support_level": null,
          "aa_start": 1116,
          "aa_end": null,
          "aa_length": 1428,
          "cds_start": 3347,
          "cds_end": null,
          "cds_length": 4287,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930572.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3317C>T",
          "hgvs_p": "p.Pro1106Leu",
          "transcript": "ENST00000930585.1",
          "protein_id": "ENSP00000600644.1",
          "transcript_support_level": null,
          "aa_start": 1106,
          "aa_end": null,
          "aa_length": 1418,
          "cds_start": 3317,
          "cds_end": null,
          "cds_length": 4257,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930585.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3299C>T",
          "hgvs_p": "p.Pro1100Leu",
          "transcript": "NM_001135245.2",
          "protein_id": "NP_001128717.1",
          "transcript_support_level": null,
          "aa_start": 1100,
          "aa_end": null,
          "aa_length": 1412,
          "cds_start": 3299,
          "cds_end": null,
          "cds_length": 4239,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001135245.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3299C>T",
          "hgvs_p": "p.Pro1100Leu",
          "transcript": "ENST00000445265.6",
          "protein_id": "ENSP00000409944.2",
          "transcript_support_level": 5,
          "aa_start": 1100,
          "aa_end": null,
          "aa_length": 1412,
          "cds_start": 3299,
          "cds_end": null,
          "cds_length": 4239,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000445265.6"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3296C>T",
          "hgvs_p": "p.Pro1099Leu",
          "transcript": "NM_000356.4",
          "protein_id": "NP_000347.2",
          "transcript_support_level": null,
          "aa_start": 1099,
          "aa_end": null,
          "aa_length": 1411,
          "cds_start": 3296,
          "cds_end": null,
          "cds_length": 4236,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_000356.4"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3296C>T",
          "hgvs_p": "p.Pro1099Leu",
          "transcript": "NM_001437406.1",
          "protein_id": "NP_001424335.1",
          "transcript_support_level": null,
          "aa_start": 1099,
          "aa_end": null,
          "aa_length": 1411,
          "cds_start": 3296,
          "cds_end": null,
          "cds_length": 4236,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001437406.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3299C>T",
          "hgvs_p": "p.Pro1100Leu",
          "transcript": "ENST00000930580.1",
          "protein_id": "ENSP00000600639.1",
          "transcript_support_level": null,
          "aa_start": 1100,
          "aa_end": null,
          "aa_length": 1411,
          "cds_start": 3299,
          "cds_end": null,
          "cds_length": 4236,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930580.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3296C>T",
          "hgvs_p": "p.Pro1099Leu",
          "transcript": "ENST00000930542.1",
          "protein_id": "ENSP00000600601.1",
          "transcript_support_level": null,
          "aa_start": 1099,
          "aa_end": null,
          "aa_length": 1410,
          "cds_start": 3296,
          "cds_end": null,
          "cds_length": 4233,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930542.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3293C>T",
          "hgvs_p": "p.Pro1098Leu",
          "transcript": "ENST00000930566.1",
          "protein_id": "ENSP00000600625.1",
          "transcript_support_level": null,
          "aa_start": 1098,
          "aa_end": null,
          "aa_length": 1410,
          "cds_start": 3293,
          "cds_end": null,
          "cds_length": 4233,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930566.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3299C>T",
          "hgvs_p": "p.Pro1100Leu",
          "transcript": "ENST00000930552.1",
          "protein_id": "ENSP00000600611.1",
          "transcript_support_level": null,
          "aa_start": 1100,
          "aa_end": null,
          "aa_length": 1395,
          "cds_start": 3299,
          "cds_end": null,
          "cds_length": 4188,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930552.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3236C>T",
          "hgvs_p": "p.Pro1079Leu",
          "transcript": "ENST00000930564.1",
          "protein_id": "ENSP00000600623.1",
          "transcript_support_level": null,
          "aa_start": 1079,
          "aa_end": null,
          "aa_length": 1391,
          "cds_start": 3236,
          "cds_end": null,
          "cds_length": 4176,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930564.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3227C>T",
          "hgvs_p": "p.Pro1076Leu",
          "transcript": "ENST00000930568.1",
          "protein_id": "ENSP00000600627.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1388,
          "cds_start": 3227,
          "cds_end": null,
          "cds_length": 4167,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930568.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3236C>T",
          "hgvs_p": "p.Pro1079Leu",
          "transcript": "ENST00000930563.1",
          "protein_id": "ENSP00000600622.1",
          "transcript_support_level": null,
          "aa_start": 1079,
          "aa_end": null,
          "aa_length": 1374,
          "cds_start": 3236,
          "cds_end": null,
          "cds_length": 4125,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930563.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3182C>T",
          "hgvs_p": "p.Pro1061Leu",
          "transcript": "ENST00000930546.1",
          "protein_id": "ENSP00000600605.1",
          "transcript_support_level": null,
          "aa_start": 1061,
          "aa_end": null,
          "aa_length": 1373,
          "cds_start": 3182,
          "cds_end": null,
          "cds_length": 4122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930546.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3185C>T",
          "hgvs_p": "p.Pro1062Leu",
          "transcript": "ENST00000650162.1",
          "protein_id": "ENSP00000497075.1",
          "transcript_support_level": null,
          "aa_start": 1062,
          "aa_end": null,
          "aa_length": 1357,
          "cds_start": 3185,
          "cds_end": null,
          "cds_length": 4076,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000650162.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3119C>T",
          "hgvs_p": "p.Pro1040Leu",
          "transcript": "ENST00000930541.1",
          "protein_id": "ENSP00000600600.1",
          "transcript_support_level": null,
          "aa_start": 1040,
          "aa_end": null,
          "aa_length": 1352,
          "cds_start": 3119,
          "cds_end": null,
          "cds_length": 4059,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930541.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3116C>T",
          "hgvs_p": "p.Pro1039Leu",
          "transcript": "ENST00000930550.1",
          "protein_id": "ENSP00000600609.1",
          "transcript_support_level": null,
          "aa_start": 1039,
          "aa_end": null,
          "aa_length": 1351,
          "cds_start": 3116,
          "cds_end": null,
          "cds_length": 4056,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930550.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3116C>T",
          "hgvs_p": "p.Pro1039Leu",
          "transcript": "ENST00000930581.1",
          "protein_id": "ENSP00000600640.1",
          "transcript_support_level": null,
          "aa_start": 1039,
          "aa_end": null,
          "aa_length": 1350,
          "cds_start": 3116,
          "cds_end": null,
          "cds_length": 4053,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930581.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3089C>T",
          "hgvs_p": "p.Pro1030Leu",
          "transcript": "ENST00000930569.1",
          "protein_id": "ENSP00000600628.1",
          "transcript_support_level": null,
          "aa_start": 1030,
          "aa_end": null,
          "aa_length": 1342,
          "cds_start": 3089,
          "cds_end": null,
          "cds_length": 4029,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930569.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.2975C>T",
          "hgvs_p": "p.Pro992Leu",
          "transcript": "ENST00000930574.1",
          "protein_id": "ENSP00000600633.1",
          "transcript_support_level": null,
          "aa_start": 992,
          "aa_end": null,
          "aa_length": 1304,
          "cds_start": 2975,
          "cds_end": null,
          "cds_length": 3915,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930574.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu",
          "transcript": "ENST00000930545.1",
          "protein_id": "ENSP00000600604.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1302,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3909,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930545.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000930549.1",
          "protein_id": "ENSP00000600608.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1301,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 3906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930549.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "ENST00000930579.1",
          "protein_id": "ENSP00000600638.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1301,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 3906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930579.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3410C>T",
          "hgvs_p": "p.Pro1137Leu",
          "transcript": "ENST00000930584.1",
          "protein_id": "ENSP00000600643.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1262,
          "cds_start": 3410,
          "cds_end": null,
          "cds_length": 3789,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930584.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.2927C>T",
          "hgvs_p": "p.Pro976Leu",
          "transcript": "ENST00000674413.1",
          "protein_id": "ENSP00000501343.1",
          "transcript_support_level": null,
          "aa_start": 976,
          "aa_end": null,
          "aa_length": 1238,
          "cds_start": 2927,
          "cds_end": null,
          "cds_length": 3719,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000674413.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3299C>T",
          "hgvs_p": "p.Pro1100Leu",
          "transcript": "ENST00000930582.1",
          "protein_id": "ENSP00000600641.1",
          "transcript_support_level": null,
          "aa_start": 1100,
          "aa_end": null,
          "aa_length": 1225,
          "cds_start": 3299,
          "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": "ENST00000930582.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3641C>T",
          "hgvs_p": "p.Pro1214Leu",
          "transcript": "XM_005268502.5",
          "protein_id": "XP_005268559.1",
          "transcript_support_level": null,
          "aa_start": 1214,
          "aa_end": null,
          "aa_length": 1526,
          "cds_start": 3641,
          "cds_end": null,
          "cds_length": 4581,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005268502.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3638C>T",
          "hgvs_p": "p.Pro1213Leu",
          "transcript": "XM_005268503.5",
          "protein_id": "XP_005268560.1",
          "transcript_support_level": null,
          "aa_start": 1213,
          "aa_end": null,
          "aa_length": 1525,
          "cds_start": 3638,
          "cds_end": null,
          "cds_length": 4578,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005268503.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3638C>T",
          "hgvs_p": "p.Pro1213Leu",
          "transcript": "XM_005268504.5",
          "protein_id": "XP_005268561.1",
          "transcript_support_level": null,
          "aa_start": 1213,
          "aa_end": null,
          "aa_length": 1525,
          "cds_start": 3638,
          "cds_end": null,
          "cds_length": 4578,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005268504.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3635C>T",
          "hgvs_p": "p.Pro1212Leu",
          "transcript": "XM_047417645.1",
          "protein_id": "XP_047273601.1",
          "transcript_support_level": null,
          "aa_start": 1212,
          "aa_end": null,
          "aa_length": 1524,
          "cds_start": 3635,
          "cds_end": null,
          "cds_length": 4575,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417645.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3527C>T",
          "hgvs_p": "p.Pro1176Leu",
          "transcript": "XM_005268506.5",
          "protein_id": "XP_005268563.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1488,
          "cds_start": 3527,
          "cds_end": null,
          "cds_length": 4467,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005268506.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3524C>T",
          "hgvs_p": "p.Pro1175Leu",
          "transcript": "XM_017009792.3",
          "protein_id": "XP_016865281.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017009792.3"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3524C>T",
          "hgvs_p": "p.Pro1175Leu",
          "transcript": "XM_047417646.1",
          "protein_id": "XP_047273602.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417646.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3521C>T",
          "hgvs_p": "p.Pro1174Leu",
          "transcript": "XM_047417647.1",
          "protein_id": "XP_047273603.1",
          "transcript_support_level": null,
          "aa_start": 1174,
          "aa_end": null,
          "aa_length": 1486,
          "cds_start": 3521,
          "cds_end": null,
          "cds_length": 4461,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417647.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3461C>T",
          "hgvs_p": "p.Pro1154Leu",
          "transcript": "XM_011537678.4",
          "protein_id": "XP_011535980.1",
          "transcript_support_level": null,
          "aa_start": 1154,
          "aa_end": null,
          "aa_length": 1466,
          "cds_start": 3461,
          "cds_end": null,
          "cds_length": 4401,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011537678.4"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3458C>T",
          "hgvs_p": "p.Pro1153Leu",
          "transcript": "XM_047417648.1",
          "protein_id": "XP_047273604.1",
          "transcript_support_level": null,
          "aa_start": 1153,
          "aa_end": null,
          "aa_length": 1465,
          "cds_start": 3458,
          "cds_end": null,
          "cds_length": 4398,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417648.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3458C>T",
          "hgvs_p": "p.Pro1153Leu",
          "transcript": "XM_047417649.1",
          "protein_id": "XP_047273605.1",
          "transcript_support_level": null,
          "aa_start": 1153,
          "aa_end": null,
          "aa_length": 1465,
          "cds_start": 3458,
          "cds_end": null,
          "cds_length": 4398,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417649.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3455C>T",
          "hgvs_p": "p.Pro1152Leu",
          "transcript": "XM_047417650.1",
          "protein_id": "XP_047273606.1",
          "transcript_support_level": null,
          "aa_start": 1152,
          "aa_end": null,
          "aa_length": 1464,
          "cds_start": 3455,
          "cds_end": null,
          "cds_length": 4395,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417650.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3410C>T",
          "hgvs_p": "p.Pro1137Leu",
          "transcript": "XM_005268507.5",
          "protein_id": "XP_005268564.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1449,
          "cds_start": 3410,
          "cds_end": null,
          "cds_length": 4350,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005268507.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3407C>T",
          "hgvs_p": "p.Pro1136Leu",
          "transcript": "XM_047417651.1",
          "protein_id": "XP_047273607.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1448,
          "cds_start": 3407,
          "cds_end": null,
          "cds_length": 4347,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417651.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3407C>T",
          "hgvs_p": "p.Pro1136Leu",
          "transcript": "XM_047417652.1",
          "protein_id": "XP_047273608.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1448,
          "cds_start": 3407,
          "cds_end": null,
          "cds_length": 4347,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417652.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3404C>T",
          "hgvs_p": "p.Pro1135Leu",
          "transcript": "XM_047417653.1",
          "protein_id": "XP_047273609.1",
          "transcript_support_level": null,
          "aa_start": 1135,
          "aa_end": null,
          "aa_length": 1447,
          "cds_start": 3404,
          "cds_end": null,
          "cds_length": 4344,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417653.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3350C>T",
          "hgvs_p": "p.Pro1117Leu",
          "transcript": "XM_017009793.3",
          "protein_id": "XP_016865282.1",
          "transcript_support_level": null,
          "aa_start": 1117,
          "aa_end": null,
          "aa_length": 1429,
          "cds_start": 3350,
          "cds_end": null,
          "cds_length": 4290,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017009793.3"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3347C>T",
          "hgvs_p": "p.Pro1116Leu",
          "transcript": "XM_047417654.1",
          "protein_id": "XP_047273610.1",
          "transcript_support_level": null,
          "aa_start": 1116,
          "aa_end": null,
          "aa_length": 1428,
          "cds_start": 3347,
          "cds_end": null,
          "cds_length": 4287,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417654.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3347C>T",
          "hgvs_p": "p.Pro1116Leu",
          "transcript": "XM_047417655.1",
          "protein_id": "XP_047273611.1",
          "transcript_support_level": null,
          "aa_start": 1116,
          "aa_end": null,
          "aa_length": 1428,
          "cds_start": 3347,
          "cds_end": null,
          "cds_length": 4287,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417655.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3344C>T",
          "hgvs_p": "p.Pro1115Leu",
          "transcript": "XM_047417656.1",
          "protein_id": "XP_047273612.1",
          "transcript_support_level": null,
          "aa_start": 1115,
          "aa_end": null,
          "aa_length": 1427,
          "cds_start": 3344,
          "cds_end": null,
          "cds_length": 4284,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417656.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3293C>T",
          "hgvs_p": "p.Pro1098Leu",
          "transcript": "XM_047417658.1",
          "protein_id": "XP_047273614.1",
          "transcript_support_level": null,
          "aa_start": 1098,
          "aa_end": null,
          "aa_length": 1410,
          "cds_start": 3293,
          "cds_end": null,
          "cds_length": 4233,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417658.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3293C>T",
          "hgvs_p": "p.Pro1098Leu",
          "transcript": "XM_047417659.1",
          "protein_id": "XP_047273615.1",
          "transcript_support_level": null,
          "aa_start": 1098,
          "aa_end": null,
          "aa_length": 1410,
          "cds_start": 3293,
          "cds_end": null,
          "cds_length": 4233,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417659.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3290C>T",
          "hgvs_p": "p.Pro1097Leu",
          "transcript": "XM_047417660.1",
          "protein_id": "XP_047273616.1",
          "transcript_support_level": null,
          "aa_start": 1097,
          "aa_end": null,
          "aa_length": 1409,
          "cds_start": 3290,
          "cds_end": null,
          "cds_length": 4230,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417660.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3236C>T",
          "hgvs_p": "p.Pro1079Leu",
          "transcript": "XM_017009794.3",
          "protein_id": "XP_016865283.1",
          "transcript_support_level": null,
          "aa_start": 1079,
          "aa_end": null,
          "aa_length": 1391,
          "cds_start": 3236,
          "cds_end": null,
          "cds_length": 4176,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017009794.3"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3233C>T",
          "hgvs_p": "p.Pro1078Leu",
          "transcript": "XM_047417661.1",
          "protein_id": "XP_047273617.1",
          "transcript_support_level": null,
          "aa_start": 1078,
          "aa_end": null,
          "aa_length": 1390,
          "cds_start": 3233,
          "cds_end": null,
          "cds_length": 4173,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417661.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3230C>T",
          "hgvs_p": "p.Pro1077Leu",
          "transcript": "XM_047417662.1",
          "protein_id": "XP_047273618.1",
          "transcript_support_level": null,
          "aa_start": 1077,
          "aa_end": null,
          "aa_length": 1389,
          "cds_start": 3230,
          "cds_end": null,
          "cds_length": 4170,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417662.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3227C>T",
          "hgvs_p": "p.Pro1076Leu",
          "transcript": "XM_047417663.1",
          "protein_id": "XP_047273619.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1388,
          "cds_start": 3227,
          "cds_end": null,
          "cds_length": 4167,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417663.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3185C>T",
          "hgvs_p": "p.Pro1062Leu",
          "transcript": "XM_047417664.1",
          "protein_id": "XP_047273620.1",
          "transcript_support_level": null,
          "aa_start": 1062,
          "aa_end": null,
          "aa_length": 1374,
          "cds_start": 3185,
          "cds_end": null,
          "cds_length": 4125,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417664.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3182C>T",
          "hgvs_p": "p.Pro1061Leu",
          "transcript": "XM_047417665.1",
          "protein_id": "XP_047273621.1",
          "transcript_support_level": null,
          "aa_start": 1061,
          "aa_end": null,
          "aa_length": 1373,
          "cds_start": 3182,
          "cds_end": null,
          "cds_length": 4122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417665.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3119C>T",
          "hgvs_p": "p.Pro1040Leu",
          "transcript": "XM_047417666.1",
          "protein_id": "XP_047273622.1",
          "transcript_support_level": null,
          "aa_start": 1040,
          "aa_end": null,
          "aa_length": 1352,
          "cds_start": 3119,
          "cds_end": null,
          "cds_length": 4059,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417666.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3116C>T",
          "hgvs_p": "p.Pro1039Leu",
          "transcript": "XM_047417667.1",
          "protein_id": "XP_047273623.1",
          "transcript_support_level": null,
          "aa_start": 1039,
          "aa_end": null,
          "aa_length": 1351,
          "cds_start": 3116,
          "cds_end": null,
          "cds_length": 4056,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417667.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3113C>T",
          "hgvs_p": "p.Pro1038Leu",
          "transcript": "XM_047417668.1",
          "protein_id": "XP_047273624.1",
          "transcript_support_level": null,
          "aa_start": 1038,
          "aa_end": null,
          "aa_length": 1350,
          "cds_start": 3113,
          "cds_end": null,
          "cds_length": 4053,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417668.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3113C>T",
          "hgvs_p": "p.Pro1038Leu",
          "transcript": "XM_047417669.1",
          "protein_id": "XP_047273625.1",
          "transcript_support_level": null,
          "aa_start": 1038,
          "aa_end": null,
          "aa_length": 1350,
          "cds_start": 3113,
          "cds_end": null,
          "cds_length": 4053,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417669.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3005C>T",
          "hgvs_p": "p.Pro1002Leu",
          "transcript": "XM_047417670.1",
          "protein_id": "XP_047273626.1",
          "transcript_support_level": null,
          "aa_start": 1002,
          "aa_end": null,
          "aa_length": 1314,
          "cds_start": 3005,
          "cds_end": null,
          "cds_length": 3945,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417670.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3002C>T",
          "hgvs_p": "p.Pro1001Leu",
          "transcript": "XM_047417671.1",
          "protein_id": "XP_047273627.1",
          "transcript_support_level": null,
          "aa_start": 1001,
          "aa_end": null,
          "aa_length": 1313,
          "cds_start": 3002,
          "cds_end": null,
          "cds_length": 3942,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047417671.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": 20,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.3298-655C>T",
          "hgvs_p": null,
          "transcript": "ENST00000930583.1",
          "protein_id": "ENSP00000600642.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 1387,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 4164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930583.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "c.343-4026C>T",
          "hgvs_p": null,
          "transcript": "ENST00000515516.1",
          "protein_id": "ENSP00000426471.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 188,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000515516.1"
        },
        {
          "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": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "n.723C>T",
          "hgvs_p": null,
          "transcript": "ENST00000506630.1",
          "protein_id": null,
          "transcript_support_level": 5,
          "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": "ENST00000506630.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TCOF1",
          "gene_hgnc_id": 11654,
          "hgvs_c": "n.2996C>T",
          "hgvs_p": null,
          "transcript": "ENST00000514442.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": "ENST00000514442.5"
        }
      ],
      "gene_symbol": "TCOF1",
      "gene_hgnc_id": 11654,
      "dbsnp": "rs1136103",
      "frequency_reference_population": 0.0000047890426,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 7,
      "gnomad_exomes_af": 0.00000478904,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 7,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.09084212779998779,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.069,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1034,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.45,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.751,
      "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": -6,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "BP4_Moderate,BS2",
      "acmg_by_gene": [
        {
          "score": -6,
          "benign_score": 6,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Moderate",
            "BS2"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001371623.1",
          "gene_symbol": "TCOF1",
          "hgnc_id": 11654,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.3530C>T",
          "hgvs_p": "p.Pro1177Leu"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}