← 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: 9-79709677-A-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "9",
      "pos": 79709677,
      "ref": "A",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001282748.2",
      "consequences": [
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1318A>T",
          "hgvs_p": "p.Thr440Ser",
          "transcript": "NM_007005.6",
          "protein_id": "NP_008936.2",
          "transcript_support_level": null,
          "aa_start": 440,
          "aa_end": null,
          "aa_length": 773,
          "cds_start": 1318,
          "cds_end": null,
          "cds_length": 2322,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000376552.8",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_007005.6"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1318A>T",
          "hgvs_p": "p.Thr440Ser",
          "transcript": "ENST00000376552.8",
          "protein_id": "ENSP00000365735.2",
          "transcript_support_level": 1,
          "aa_start": 440,
          "aa_end": null,
          "aa_length": 773,
          "cds_start": 1318,
          "cds_end": null,
          "cds_length": 2322,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_007005.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000376552.8"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1414A>T",
          "hgvs_p": "p.Thr472Ser",
          "transcript": "ENST00000376537.8",
          "protein_id": "ENSP00000365720.4",
          "transcript_support_level": 1,
          "aa_start": 472,
          "aa_end": null,
          "aa_length": 805,
          "cds_start": 1414,
          "cds_end": null,
          "cds_length": 2418,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000376537.8"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1111A>T",
          "hgvs_p": "p.Thr371Ser",
          "transcript": "ENST00000376544.7",
          "protein_id": "ENSP00000365727.4",
          "transcript_support_level": 1,
          "aa_start": 371,
          "aa_end": null,
          "aa_length": 704,
          "cds_start": 1111,
          "cds_end": null,
          "cds_length": 2115,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000376544.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "n.*1140A>T",
          "hgvs_p": null,
          "transcript": "ENST00000470872.5",
          "protein_id": "ENSP00000417245.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000470872.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "n.*1140A>T",
          "hgvs_p": null,
          "transcript": "ENST00000470872.5",
          "protein_id": "ENSP00000417245.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000470872.5"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1414A>T",
          "hgvs_p": "p.Thr472Ser",
          "transcript": "NM_001282748.2",
          "protein_id": "NP_001269677.1",
          "transcript_support_level": null,
          "aa_start": 472,
          "aa_end": null,
          "aa_length": 805,
          "cds_start": 1414,
          "cds_end": null,
          "cds_length": 2418,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001282748.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1357A>T",
          "hgvs_p": "p.Thr453Ser",
          "transcript": "NM_001351541.2",
          "protein_id": "NP_001338470.1",
          "transcript_support_level": null,
          "aa_start": 453,
          "aa_end": null,
          "aa_length": 786,
          "cds_start": 1357,
          "cds_end": null,
          "cds_length": 2361,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351541.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1357A>T",
          "hgvs_p": "p.Thr453Ser",
          "transcript": "ENST00000965889.1",
          "protein_id": "ENSP00000635948.1",
          "transcript_support_level": null,
          "aa_start": 453,
          "aa_end": null,
          "aa_length": 786,
          "cds_start": 1357,
          "cds_end": null,
          "cds_length": 2361,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000965889.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1321A>T",
          "hgvs_p": "p.Thr441Ser",
          "transcript": "NM_001351542.2",
          "protein_id": "NP_001338471.1",
          "transcript_support_level": null,
          "aa_start": 441,
          "aa_end": null,
          "aa_length": 774,
          "cds_start": 1321,
          "cds_end": null,
          "cds_length": 2325,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351542.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1315A>T",
          "hgvs_p": "p.Thr439Ser",
          "transcript": "NM_001351543.2",
          "protein_id": "NP_001338472.1",
          "transcript_support_level": null,
          "aa_start": 439,
          "aa_end": null,
          "aa_length": 772,
          "cds_start": 1315,
          "cds_end": null,
          "cds_length": 2319,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351543.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1315A>T",
          "hgvs_p": "p.Thr439Ser",
          "transcript": "ENST00000706431.1",
          "protein_id": "ENSP00000516378.1",
          "transcript_support_level": null,
          "aa_start": 439,
          "aa_end": null,
          "aa_length": 772,
          "cds_start": 1315,
          "cds_end": null,
          "cds_length": 2319,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000706431.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1312A>T",
          "hgvs_p": "p.Thr438Ser",
          "transcript": "NM_001351546.2",
          "protein_id": "NP_001338475.1",
          "transcript_support_level": null,
          "aa_start": 438,
          "aa_end": null,
          "aa_length": 771,
          "cds_start": 1312,
          "cds_end": null,
          "cds_length": 2316,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351546.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1267A>T",
          "hgvs_p": "p.Thr423Ser",
          "transcript": "NM_001351547.2",
          "protein_id": "NP_001338476.1",
          "transcript_support_level": null,
          "aa_start": 423,
          "aa_end": null,
          "aa_length": 756,
          "cds_start": 1267,
          "cds_end": null,
          "cds_length": 2271,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351547.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1264A>T",
          "hgvs_p": "p.Thr422Ser",
          "transcript": "ENST00000965887.1",
          "protein_id": "ENSP00000635946.1",
          "transcript_support_level": null,
          "aa_start": 422,
          "aa_end": null,
          "aa_length": 755,
          "cds_start": 1264,
          "cds_end": null,
          "cds_length": 2268,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000965887.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1258A>T",
          "hgvs_p": "p.Thr420Ser",
          "transcript": "NM_001351550.2",
          "protein_id": "NP_001338479.1",
          "transcript_support_level": null,
          "aa_start": 420,
          "aa_end": null,
          "aa_length": 753,
          "cds_start": 1258,
          "cds_end": null,
          "cds_length": 2262,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351550.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1255A>T",
          "hgvs_p": "p.Thr419Ser",
          "transcript": "NM_001351552.2",
          "protein_id": "NP_001338481.1",
          "transcript_support_level": null,
          "aa_start": 419,
          "aa_end": null,
          "aa_length": 752,
          "cds_start": 1255,
          "cds_end": null,
          "cds_length": 2259,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351552.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1255A>T",
          "hgvs_p": "p.Thr419Ser",
          "transcript": "ENST00000965888.1",
          "protein_id": "ENSP00000635947.1",
          "transcript_support_level": null,
          "aa_start": 419,
          "aa_end": null,
          "aa_length": 752,
          "cds_start": 1255,
          "cds_end": null,
          "cds_length": 2259,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000965888.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1249A>T",
          "hgvs_p": "p.Thr417Ser",
          "transcript": "NM_001351556.2",
          "protein_id": "NP_001338485.1",
          "transcript_support_level": null,
          "aa_start": 417,
          "aa_end": null,
          "aa_length": 750,
          "cds_start": 1249,
          "cds_end": null,
          "cds_length": 2253,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351556.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1246A>T",
          "hgvs_p": "p.Thr416Ser",
          "transcript": "NM_001351558.2",
          "protein_id": "NP_001338487.1",
          "transcript_support_level": null,
          "aa_start": 416,
          "aa_end": null,
          "aa_length": 749,
          "cds_start": 1246,
          "cds_end": null,
          "cds_length": 2250,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351558.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1243A>T",
          "hgvs_p": "p.Thr415Ser",
          "transcript": "NM_001282749.2",
          "protein_id": "NP_001269678.1",
          "transcript_support_level": null,
          "aa_start": 415,
          "aa_end": null,
          "aa_length": 748,
          "cds_start": 1243,
          "cds_end": null,
          "cds_length": 2247,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001282749.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1243A>T",
          "hgvs_p": "p.Thr415Ser",
          "transcript": "ENST00000265284.10",
          "protein_id": "ENSP00000265284.6",
          "transcript_support_level": 2,
          "aa_start": 415,
          "aa_end": null,
          "aa_length": 748,
          "cds_start": 1243,
          "cds_end": null,
          "cds_length": 2247,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000265284.10"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1240A>T",
          "hgvs_p": "p.Thr414Ser",
          "transcript": "NM_001351560.2",
          "protein_id": "NP_001338489.1",
          "transcript_support_level": null,
          "aa_start": 414,
          "aa_end": null,
          "aa_length": 747,
          "cds_start": 1240,
          "cds_end": null,
          "cds_length": 2244,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351560.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1111A>T",
          "hgvs_p": "p.Thr371Ser",
          "transcript": "NM_001282753.2",
          "protein_id": "NP_001269682.1",
          "transcript_support_level": null,
          "aa_start": 371,
          "aa_end": null,
          "aa_length": 704,
          "cds_start": 1111,
          "cds_end": null,
          "cds_length": 2115,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001282753.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1090A>T",
          "hgvs_p": "p.Thr364Ser",
          "transcript": "NM_001351562.2",
          "protein_id": "NP_001338491.1",
          "transcript_support_level": null,
          "aa_start": 364,
          "aa_end": null,
          "aa_length": 697,
          "cds_start": 1090,
          "cds_end": null,
          "cds_length": 2094,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351562.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1084A>T",
          "hgvs_p": "p.Thr362Ser",
          "transcript": "NM_001351563.2",
          "protein_id": "NP_001338492.1",
          "transcript_support_level": null,
          "aa_start": 362,
          "aa_end": null,
          "aa_length": 695,
          "cds_start": 1084,
          "cds_end": null,
          "cds_length": 2088,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351563.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1036A>T",
          "hgvs_p": "p.Thr346Ser",
          "transcript": "NM_001351564.2",
          "protein_id": "NP_001338493.1",
          "transcript_support_level": null,
          "aa_start": 346,
          "aa_end": null,
          "aa_length": 679,
          "cds_start": 1036,
          "cds_end": null,
          "cds_length": 2040,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001351564.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.955A>T",
          "hgvs_p": "p.Thr319Ser",
          "transcript": "NM_001282760.2",
          "protein_id": "NP_001269689.1",
          "transcript_support_level": null,
          "aa_start": 319,
          "aa_end": null,
          "aa_length": 652,
          "cds_start": 955,
          "cds_end": null,
          "cds_length": 1959,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001282760.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.688A>T",
          "hgvs_p": "p.Thr230Ser",
          "transcript": "ENST00000496114.5",
          "protein_id": "ENSP00000417102.1",
          "transcript_support_level": 5,
          "aa_start": 230,
          "aa_end": null,
          "aa_length": 341,
          "cds_start": 688,
          "cds_end": null,
          "cds_length": 1027,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000496114.5"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.610A>T",
          "hgvs_p": "p.Thr204Ser",
          "transcript": "ENST00000417836.1",
          "protein_id": "ENSP00000400334.1",
          "transcript_support_level": 3,
          "aa_start": 204,
          "aa_end": null,
          "aa_length": 209,
          "cds_start": 610,
          "cds_end": null,
          "cds_length": 630,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000417836.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1540A>T",
          "hgvs_p": "p.Thr514Ser",
          "transcript": "XM_011518952.2",
          "protein_id": "XP_011517254.1",
          "transcript_support_level": null,
          "aa_start": 514,
          "aa_end": null,
          "aa_length": 872,
          "cds_start": 1540,
          "cds_end": null,
          "cds_length": 2619,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518952.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1534A>T",
          "hgvs_p": "p.Thr512Ser",
          "transcript": "XM_011518953.3",
          "protein_id": "XP_011517255.1",
          "transcript_support_level": null,
          "aa_start": 512,
          "aa_end": null,
          "aa_length": 870,
          "cds_start": 1534,
          "cds_end": null,
          "cds_length": 2613,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518953.3"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1495A>T",
          "hgvs_p": "p.Thr499Ser",
          "transcript": "XM_011518954.2",
          "protein_id": "XP_011517256.1",
          "transcript_support_level": null,
          "aa_start": 499,
          "aa_end": null,
          "aa_length": 857,
          "cds_start": 1495,
          "cds_end": null,
          "cds_length": 2574,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518954.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1477A>T",
          "hgvs_p": "p.Thr493Ser",
          "transcript": "XM_011518955.2",
          "protein_id": "XP_011517257.1",
          "transcript_support_level": null,
          "aa_start": 493,
          "aa_end": null,
          "aa_length": 851,
          "cds_start": 1477,
          "cds_end": null,
          "cds_length": 2556,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518955.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1540A>T",
          "hgvs_p": "p.Thr514Ser",
          "transcript": "XM_006717264.2",
          "protein_id": "XP_006717327.1",
          "transcript_support_level": null,
          "aa_start": 514,
          "aa_end": null,
          "aa_length": 847,
          "cds_start": 1540,
          "cds_end": null,
          "cds_length": 2544,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_006717264.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1456A>T",
          "hgvs_p": "p.Thr486Ser",
          "transcript": "XM_011518956.2",
          "protein_id": "XP_011517258.1",
          "transcript_support_level": null,
          "aa_start": 486,
          "aa_end": null,
          "aa_length": 844,
          "cds_start": 1456,
          "cds_end": null,
          "cds_length": 2535,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518956.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1453A>T",
          "hgvs_p": "p.Thr485Ser",
          "transcript": "XM_011518957.2",
          "protein_id": "XP_011517259.1",
          "transcript_support_level": null,
          "aa_start": 485,
          "aa_end": null,
          "aa_length": 843,
          "cds_start": 1453,
          "cds_end": null,
          "cds_length": 2532,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518957.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1444A>T",
          "hgvs_p": "p.Thr482Ser",
          "transcript": "XM_011518958.2",
          "protein_id": "XP_011517260.1",
          "transcript_support_level": null,
          "aa_start": 482,
          "aa_end": null,
          "aa_length": 840,
          "cds_start": 1444,
          "cds_end": null,
          "cds_length": 2523,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518958.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1417A>T",
          "hgvs_p": "p.Thr473Ser",
          "transcript": "XM_011518959.2",
          "protein_id": "XP_011517261.1",
          "transcript_support_level": null,
          "aa_start": 473,
          "aa_end": null,
          "aa_length": 831,
          "cds_start": 1417,
          "cds_end": null,
          "cds_length": 2496,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518959.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1414A>T",
          "hgvs_p": "p.Thr472Ser",
          "transcript": "XM_011518960.2",
          "protein_id": "XP_011517262.1",
          "transcript_support_level": null,
          "aa_start": 472,
          "aa_end": null,
          "aa_length": 830,
          "cds_start": 1414,
          "cds_end": null,
          "cds_length": 2493,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518960.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1411A>T",
          "hgvs_p": "p.Thr471Ser",
          "transcript": "XM_017015067.2",
          "protein_id": "XP_016870556.1",
          "transcript_support_level": null,
          "aa_start": 471,
          "aa_end": null,
          "aa_length": 829,
          "cds_start": 1411,
          "cds_end": null,
          "cds_length": 2490,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017015067.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1372A>T",
          "hgvs_p": "p.Thr458Ser",
          "transcript": "XM_017015068.2",
          "protein_id": "XP_016870557.1",
          "transcript_support_level": null,
          "aa_start": 458,
          "aa_end": null,
          "aa_length": 816,
          "cds_start": 1372,
          "cds_end": null,
          "cds_length": 2451,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017015068.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1444A>T",
          "hgvs_p": "p.Thr482Ser",
          "transcript": "XM_006717268.2",
          "protein_id": "XP_006717331.1",
          "transcript_support_level": null,
          "aa_start": 482,
          "aa_end": null,
          "aa_length": 815,
          "cds_start": 1444,
          "cds_end": null,
          "cds_length": 2448,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_006717268.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1354A>T",
          "hgvs_p": "p.Thr452Ser",
          "transcript": "XM_011518961.2",
          "protein_id": "XP_011517263.1",
          "transcript_support_level": null,
          "aa_start": 452,
          "aa_end": null,
          "aa_length": 810,
          "cds_start": 1354,
          "cds_end": null,
          "cds_length": 2433,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518961.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1351A>T",
          "hgvs_p": "p.Thr451Ser",
          "transcript": "XM_011518962.2",
          "protein_id": "XP_011517264.1",
          "transcript_support_level": null,
          "aa_start": 451,
          "aa_end": null,
          "aa_length": 809,
          "cds_start": 1351,
          "cds_end": null,
          "cds_length": 2430,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518962.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1342A>T",
          "hgvs_p": "p.Thr448Ser",
          "transcript": "XM_011518963.2",
          "protein_id": "XP_011517265.1",
          "transcript_support_level": null,
          "aa_start": 448,
          "aa_end": null,
          "aa_length": 806,
          "cds_start": 1342,
          "cds_end": null,
          "cds_length": 2421,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518963.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1339A>T",
          "hgvs_p": "p.Thr447Ser",
          "transcript": "XM_011518964.2",
          "protein_id": "XP_011517266.1",
          "transcript_support_level": null,
          "aa_start": 447,
          "aa_end": null,
          "aa_length": 805,
          "cds_start": 1339,
          "cds_end": null,
          "cds_length": 2418,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518964.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1321A>T",
          "hgvs_p": "p.Thr441Ser",
          "transcript": "XM_011518965.2",
          "protein_id": "XP_011517267.1",
          "transcript_support_level": null,
          "aa_start": 441,
          "aa_end": null,
          "aa_length": 799,
          "cds_start": 1321,
          "cds_end": null,
          "cds_length": 2400,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518965.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1318A>T",
          "hgvs_p": "p.Thr440Ser",
          "transcript": "XM_011518966.2",
          "protein_id": "XP_011517268.1",
          "transcript_support_level": null,
          "aa_start": 440,
          "aa_end": null,
          "aa_length": 798,
          "cds_start": 1318,
          "cds_end": null,
          "cds_length": 2397,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518966.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1291A>T",
          "hgvs_p": "p.Thr431Ser",
          "transcript": "XM_011518967.2",
          "protein_id": "XP_011517269.1",
          "transcript_support_level": null,
          "aa_start": 431,
          "aa_end": null,
          "aa_length": 789,
          "cds_start": 1291,
          "cds_end": null,
          "cds_length": 2370,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518967.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1360A>T",
          "hgvs_p": "p.Thr454Ser",
          "transcript": "XM_047423819.1",
          "protein_id": "XP_047279775.1",
          "transcript_support_level": null,
          "aa_start": 454,
          "aa_end": null,
          "aa_length": 787,
          "cds_start": 1360,
          "cds_end": null,
          "cds_length": 2364,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047423819.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1279A>T",
          "hgvs_p": "p.Thr427Ser",
          "transcript": "XM_011518968.2",
          "protein_id": "XP_011517270.1",
          "transcript_support_level": null,
          "aa_start": 427,
          "aa_end": null,
          "aa_length": 785,
          "cds_start": 1279,
          "cds_end": null,
          "cds_length": 2358,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518968.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1237A>T",
          "hgvs_p": "p.Thr413Ser",
          "transcript": "XM_011518969.2",
          "protein_id": "XP_011517271.1",
          "transcript_support_level": null,
          "aa_start": 413,
          "aa_end": null,
          "aa_length": 771,
          "cds_start": 1237,
          "cds_end": null,
          "cds_length": 2316,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518969.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1291A>T",
          "hgvs_p": "p.Thr431Ser",
          "transcript": "XM_017015074.2",
          "protein_id": "XP_016870563.1",
          "transcript_support_level": null,
          "aa_start": 431,
          "aa_end": null,
          "aa_length": 764,
          "cds_start": 1291,
          "cds_end": null,
          "cds_length": 2295,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017015074.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1237A>T",
          "hgvs_p": "p.Thr413Ser",
          "transcript": "XM_047423820.1",
          "protein_id": "XP_047279776.1",
          "transcript_support_level": null,
          "aa_start": 413,
          "aa_end": null,
          "aa_length": 746,
          "cds_start": 1237,
          "cds_end": null,
          "cds_length": 2241,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047423820.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1183A>T",
          "hgvs_p": "p.Thr395Ser",
          "transcript": "XM_047423821.1",
          "protein_id": "XP_047279777.1",
          "transcript_support_level": null,
          "aa_start": 395,
          "aa_end": null,
          "aa_length": 728,
          "cds_start": 1183,
          "cds_end": null,
          "cds_length": 2187,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047423821.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1177A>T",
          "hgvs_p": "p.Thr393Ser",
          "transcript": "XM_047423822.1",
          "protein_id": "XP_047279778.1",
          "transcript_support_level": null,
          "aa_start": 393,
          "aa_end": null,
          "aa_length": 726,
          "cds_start": 1177,
          "cds_end": null,
          "cds_length": 2181,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047423822.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1168A>T",
          "hgvs_p": "p.Thr390Ser",
          "transcript": "XM_047423823.1",
          "protein_id": "XP_047279779.1",
          "transcript_support_level": null,
          "aa_start": 390,
          "aa_end": null,
          "aa_length": 723,
          "cds_start": 1168,
          "cds_end": null,
          "cds_length": 2172,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047423823.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1165A>T",
          "hgvs_p": "p.Thr389Ser",
          "transcript": "XM_017015083.2",
          "protein_id": "XP_016870572.1",
          "transcript_support_level": null,
          "aa_start": 389,
          "aa_end": null,
          "aa_length": 722,
          "cds_start": 1165,
          "cds_end": null,
          "cds_length": 2169,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017015083.2"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1540A>T",
          "hgvs_p": "p.Thr514Ser",
          "transcript": "XM_011518970.4",
          "protein_id": "XP_011517272.1",
          "transcript_support_level": null,
          "aa_start": 514,
          "aa_end": null,
          "aa_length": 650,
          "cds_start": 1540,
          "cds_end": null,
          "cds_length": 1953,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518970.4"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.1540A>T",
          "hgvs_p": "p.Thr514Ser",
          "transcript": "XM_047423824.1",
          "protein_id": "XP_047279780.1",
          "transcript_support_level": null,
          "aa_start": 514,
          "aa_end": null,
          "aa_length": 576,
          "cds_start": 1540,
          "cds_end": null,
          "cds_length": 1731,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047423824.1"
        },
        {
          "aa_ref": "T",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.469A>T",
          "hgvs_p": "p.Thr157Ser",
          "transcript": "XM_011518972.4",
          "protein_id": "XP_011517274.1",
          "transcript_support_level": null,
          "aa_start": 157,
          "aa_end": null,
          "aa_length": 515,
          "cds_start": 469,
          "cds_end": null,
          "cds_length": 1548,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011518972.4"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "n.*668A>T",
          "hgvs_p": null,
          "transcript": "ENST00000462803.5",
          "protein_id": "ENSP00000417715.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000462803.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "n.249A>T",
          "hgvs_p": null,
          "transcript": "ENST00000478290.2",
          "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": "pseudogene",
          "feature": "ENST00000478290.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "n.2277A>T",
          "hgvs_p": null,
          "transcript": "NR_104239.2",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "NR_104239.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "n.*668A>T",
          "hgvs_p": null,
          "transcript": "ENST00000462803.5",
          "protein_id": "ENSP00000417715.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000462803.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TLE4",
          "gene_hgnc_id": 11840,
          "hgvs_c": "c.*5A>T",
          "hgvs_p": null,
          "transcript": "ENST00000467142.5",
          "protein_id": "ENSP00000418409.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 164,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 497,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000467142.5"
        }
      ],
      "gene_symbol": "TLE4",
      "gene_hgnc_id": 11840,
      "dbsnp": "rs201703349",
      "frequency_reference_population": 6.840975e-7,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": 6.84097e-7,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 1,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.13357022404670715,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.072,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0678,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.58,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 2.3,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 0,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001282748.2",
          "gene_symbol": "TLE4",
          "hgnc_id": 11840,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.1414A>T",
          "hgvs_p": "p.Thr472Ser"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.