← 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: 1-30936663-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "1",
      "pos": 30936663,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_001020658.2",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3415C>T",
          "hgvs_p": "p.Arg1139Trp",
          "transcript": "NM_001020658.2",
          "protein_id": "NP_001018494.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3415,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000426105.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001020658.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3415C>T",
          "hgvs_p": "p.Arg1139Trp",
          "transcript": "ENST00000426105.7",
          "protein_id": "ENSP00000391723.2",
          "transcript_support_level": 1,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3415,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001020658.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000426105.7"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3523C>T",
          "hgvs_p": "p.Arg1175Trp",
          "transcript": "ENST00000373741.8",
          "protein_id": "ENSP00000362846.4",
          "transcript_support_level": 1,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1224,
          "cds_start": 3523,
          "cds_end": null,
          "cds_length": 3675,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000373741.8"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000257075.9",
          "protein_id": "ENSP00000257075.5",
          "transcript_support_level": 1,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000257075.9"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3337C>T",
          "hgvs_p": "p.Arg1113Trp",
          "transcript": "ENST00000440538.6",
          "protein_id": "ENSP00000401777.2",
          "transcript_support_level": 1,
          "aa_start": 1113,
          "aa_end": null,
          "aa_length": 1162,
          "cds_start": 3337,
          "cds_end": null,
          "cds_length": 3489,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000440538.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3601C>T",
          "hgvs_p": "p.Arg1201Trp",
          "transcript": "ENST00000883126.1",
          "protein_id": "ENSP00000553185.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1250,
          "cds_start": 3601,
          "cds_end": null,
          "cds_length": 3753,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883126.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3502C>T",
          "hgvs_p": "p.Arg1168Trp",
          "transcript": "ENST00000883151.1",
          "protein_id": "ENSP00000553210.1",
          "transcript_support_level": null,
          "aa_start": 1168,
          "aa_end": null,
          "aa_length": 1250,
          "cds_start": 3502,
          "cds_end": null,
          "cds_length": 3753,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883151.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3547C>T",
          "hgvs_p": "p.Arg1183Trp",
          "transcript": "ENST00000963563.1",
          "protein_id": "ENSP00000633622.1",
          "transcript_support_level": null,
          "aa_start": 1183,
          "aa_end": null,
          "aa_length": 1232,
          "cds_start": 3547,
          "cds_end": null,
          "cds_length": 3699,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963563.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3541C>T",
          "hgvs_p": "p.Arg1181Trp",
          "transcript": "ENST00000883144.1",
          "protein_id": "ENSP00000553203.1",
          "transcript_support_level": null,
          "aa_start": 1181,
          "aa_end": null,
          "aa_length": 1230,
          "cds_start": 3541,
          "cds_end": null,
          "cds_length": 3693,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883144.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3535C>T",
          "hgvs_p": "p.Arg1179Trp",
          "transcript": "ENST00000883086.1",
          "protein_id": "ENSP00000553145.1",
          "transcript_support_level": null,
          "aa_start": 1179,
          "aa_end": null,
          "aa_length": 1228,
          "cds_start": 3535,
          "cds_end": null,
          "cds_length": 3687,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883086.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3532C>T",
          "hgvs_p": "p.Arg1178Trp",
          "transcript": "ENST00000883102.1",
          "protein_id": "ENSP00000553161.1",
          "transcript_support_level": null,
          "aa_start": 1178,
          "aa_end": null,
          "aa_length": 1227,
          "cds_start": 3532,
          "cds_end": null,
          "cds_length": 3684,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883102.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3532C>T",
          "hgvs_p": "p.Arg1178Trp",
          "transcript": "ENST00000883143.1",
          "protein_id": "ENSP00000553202.1",
          "transcript_support_level": null,
          "aa_start": 1178,
          "aa_end": null,
          "aa_length": 1227,
          "cds_start": 3532,
          "cds_end": null,
          "cds_length": 3684,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883143.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3532C>T",
          "hgvs_p": "p.Arg1178Trp",
          "transcript": "ENST00000918939.1",
          "protein_id": "ENSP00000588998.1",
          "transcript_support_level": null,
          "aa_start": 1178,
          "aa_end": null,
          "aa_length": 1227,
          "cds_start": 3532,
          "cds_end": null,
          "cds_length": 3684,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918939.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3529C>T",
          "hgvs_p": "p.Arg1177Trp",
          "transcript": "ENST00000883115.1",
          "protein_id": "ENSP00000553174.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1226,
          "cds_start": 3529,
          "cds_end": null,
          "cds_length": 3681,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883115.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3526C>T",
          "hgvs_p": "p.Arg1176Trp",
          "transcript": "ENST00000883140.1",
          "protein_id": "ENSP00000553199.1",
          "transcript_support_level": null,
          "aa_start": 1176,
          "aa_end": null,
          "aa_length": 1225,
          "cds_start": 3526,
          "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": "ENST00000883140.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3523C>T",
          "hgvs_p": "p.Arg1175Trp",
          "transcript": "ENST00000918952.1",
          "protein_id": "ENSP00000589011.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1224,
          "cds_start": 3523,
          "cds_end": null,
          "cds_length": 3675,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918952.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3505C>T",
          "hgvs_p": "p.Arg1169Trp",
          "transcript": "ENST00000918946.1",
          "protein_id": "ENSP00000589005.1",
          "transcript_support_level": null,
          "aa_start": 1169,
          "aa_end": null,
          "aa_length": 1218,
          "cds_start": 3505,
          "cds_end": null,
          "cds_length": 3657,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918946.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3496C>T",
          "hgvs_p": "p.Arg1166Trp",
          "transcript": "ENST00000883157.1",
          "protein_id": "ENSP00000553216.1",
          "transcript_support_level": null,
          "aa_start": 1166,
          "aa_end": null,
          "aa_length": 1215,
          "cds_start": 3496,
          "cds_end": null,
          "cds_length": 3648,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883157.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3490C>T",
          "hgvs_p": "p.Arg1164Trp",
          "transcript": "ENST00000883111.1",
          "protein_id": "ENSP00000553170.1",
          "transcript_support_level": null,
          "aa_start": 1164,
          "aa_end": null,
          "aa_length": 1213,
          "cds_start": 3490,
          "cds_end": null,
          "cds_length": 3642,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883111.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3487C>T",
          "hgvs_p": "p.Arg1163Trp",
          "transcript": "ENST00000883092.1",
          "protein_id": "ENSP00000553151.1",
          "transcript_support_level": null,
          "aa_start": 1163,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3487,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883092.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3487C>T",
          "hgvs_p": "p.Arg1163Trp",
          "transcript": "ENST00000918981.1",
          "protein_id": "ENSP00000589040.1",
          "transcript_support_level": null,
          "aa_start": 1163,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3487,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918981.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3484C>T",
          "hgvs_p": "p.Arg1162Trp",
          "transcript": "ENST00000883123.1",
          "protein_id": "ENSP00000553182.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1211,
          "cds_start": 3484,
          "cds_end": null,
          "cds_length": 3636,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883123.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3484C>T",
          "hgvs_p": "p.Arg1162Trp",
          "transcript": "ENST00000963527.1",
          "protein_id": "ENSP00000633586.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1211,
          "cds_start": 3484,
          "cds_end": null,
          "cds_length": 3636,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963527.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3481C>T",
          "hgvs_p": "p.Arg1161Trp",
          "transcript": "ENST00000883085.1",
          "protein_id": "ENSP00000553144.1",
          "transcript_support_level": null,
          "aa_start": 1161,
          "aa_end": null,
          "aa_length": 1210,
          "cds_start": 3481,
          "cds_end": null,
          "cds_length": 3633,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883085.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3478C>T",
          "hgvs_p": "p.Arg1160Trp",
          "transcript": "ENST00000883131.1",
          "protein_id": "ENSP00000553190.1",
          "transcript_support_level": null,
          "aa_start": 1160,
          "aa_end": null,
          "aa_length": 1209,
          "cds_start": 3478,
          "cds_end": null,
          "cds_length": 3630,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883131.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3460C>T",
          "hgvs_p": "p.Arg1154Trp",
          "transcript": "ENST00000918964.1",
          "protein_id": "ENSP00000589023.1",
          "transcript_support_level": null,
          "aa_start": 1154,
          "aa_end": null,
          "aa_length": 1203,
          "cds_start": 3460,
          "cds_end": null,
          "cds_length": 3612,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918964.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3454C>T",
          "hgvs_p": "p.Arg1152Trp",
          "transcript": "ENST00000918938.1",
          "protein_id": "ENSP00000588997.1",
          "transcript_support_level": null,
          "aa_start": 1152,
          "aa_end": null,
          "aa_length": 1201,
          "cds_start": 3454,
          "cds_end": null,
          "cds_length": 3606,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918938.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3451C>T",
          "hgvs_p": "p.Arg1151Trp",
          "transcript": "ENST00000918962.1",
          "protein_id": "ENSP00000589021.1",
          "transcript_support_level": null,
          "aa_start": 1151,
          "aa_end": null,
          "aa_length": 1200,
          "cds_start": 3451,
          "cds_end": null,
          "cds_length": 3603,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918962.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3448C>T",
          "hgvs_p": "p.Arg1150Trp",
          "transcript": "ENST00000963534.1",
          "protein_id": "ENSP00000633593.1",
          "transcript_support_level": null,
          "aa_start": 1150,
          "aa_end": null,
          "aa_length": 1199,
          "cds_start": 3448,
          "cds_end": null,
          "cds_length": 3600,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963534.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3430C>T",
          "hgvs_p": "p.Arg1144Trp",
          "transcript": "ENST00000963559.1",
          "protein_id": "ENSP00000633618.1",
          "transcript_support_level": null,
          "aa_start": 1144,
          "aa_end": null,
          "aa_length": 1199,
          "cds_start": 3430,
          "cds_end": null,
          "cds_length": 3600,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963559.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3445C>T",
          "hgvs_p": "p.Arg1149Trp",
          "transcript": "ENST00000918947.1",
          "protein_id": "ENSP00000589006.1",
          "transcript_support_level": null,
          "aa_start": 1149,
          "aa_end": null,
          "aa_length": 1198,
          "cds_start": 3445,
          "cds_end": null,
          "cds_length": 3597,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918947.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3424C>T",
          "hgvs_p": "p.Arg1142Trp",
          "transcript": "ENST00000883070.1",
          "protein_id": "ENSP00000553129.1",
          "transcript_support_level": null,
          "aa_start": 1142,
          "aa_end": null,
          "aa_length": 1191,
          "cds_start": 3424,
          "cds_end": null,
          "cds_length": 3576,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883070.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3424C>T",
          "hgvs_p": "p.Arg1142Trp",
          "transcript": "ENST00000883080.1",
          "protein_id": "ENSP00000553139.1",
          "transcript_support_level": null,
          "aa_start": 1142,
          "aa_end": null,
          "aa_length": 1191,
          "cds_start": 3424,
          "cds_end": null,
          "cds_length": 3576,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883080.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3421C>T",
          "hgvs_p": "p.Arg1141Trp",
          "transcript": "ENST00000883122.1",
          "protein_id": "ENSP00000553181.1",
          "transcript_support_level": null,
          "aa_start": 1141,
          "aa_end": null,
          "aa_length": 1190,
          "cds_start": 3421,
          "cds_end": null,
          "cds_length": 3573,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883122.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3421C>T",
          "hgvs_p": "p.Arg1141Trp",
          "transcript": "ENST00000883129.1",
          "protein_id": "ENSP00000553188.1",
          "transcript_support_level": null,
          "aa_start": 1141,
          "aa_end": null,
          "aa_length": 1190,
          "cds_start": 3421,
          "cds_end": null,
          "cds_length": 3573,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883129.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3418C>T",
          "hgvs_p": "p.Arg1140Trp",
          "transcript": "ENST00000373747.7",
          "protein_id": "ENSP00000362852.3",
          "transcript_support_level": 5,
          "aa_start": 1140,
          "aa_end": null,
          "aa_length": 1189,
          "cds_start": 3418,
          "cds_end": null,
          "cds_length": 3570,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000373747.7"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3418C>T",
          "hgvs_p": "p.Arg1140Trp",
          "transcript": "ENST00000883066.1",
          "protein_id": "ENSP00000553125.1",
          "transcript_support_level": null,
          "aa_start": 1140,
          "aa_end": null,
          "aa_length": 1189,
          "cds_start": 3418,
          "cds_end": null,
          "cds_length": 3570,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883066.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3415C>T",
          "hgvs_p": "p.Arg1139Trp",
          "transcript": "ENST00000883082.1",
          "protein_id": "ENSP00000553141.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3415,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883082.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3415C>T",
          "hgvs_p": "p.Arg1139Trp",
          "transcript": "ENST00000883180.1",
          "protein_id": "ENSP00000553239.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3415,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883180.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3415C>T",
          "hgvs_p": "p.Arg1139Trp",
          "transcript": "ENST00000918972.1",
          "protein_id": "ENSP00000589031.1",
          "transcript_support_level": null,
          "aa_start": 1139,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3415,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918972.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3412C>T",
          "hgvs_p": "p.Arg1138Trp",
          "transcript": "ENST00000883073.1",
          "protein_id": "ENSP00000553132.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1187,
          "cds_start": 3412,
          "cds_end": null,
          "cds_length": 3564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883073.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3412C>T",
          "hgvs_p": "p.Arg1138Trp",
          "transcript": "ENST00000883076.1",
          "protein_id": "ENSP00000553135.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1187,
          "cds_start": 3412,
          "cds_end": null,
          "cds_length": 3564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883076.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3412C>T",
          "hgvs_p": "p.Arg1138Trp",
          "transcript": "ENST00000883093.1",
          "protein_id": "ENSP00000553152.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1187,
          "cds_start": 3412,
          "cds_end": null,
          "cds_length": 3564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883093.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3412C>T",
          "hgvs_p": "p.Arg1138Trp",
          "transcript": "ENST00000883109.1",
          "protein_id": "ENSP00000553168.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1187,
          "cds_start": 3412,
          "cds_end": null,
          "cds_length": 3564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883109.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3412C>T",
          "hgvs_p": "p.Arg1138Trp",
          "transcript": "ENST00000883130.1",
          "protein_id": "ENSP00000553189.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1187,
          "cds_start": 3412,
          "cds_end": null,
          "cds_length": 3564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883130.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3412C>T",
          "hgvs_p": "p.Arg1138Trp",
          "transcript": "ENST00000883177.1",
          "protein_id": "ENSP00000553236.1",
          "transcript_support_level": null,
          "aa_start": 1138,
          "aa_end": null,
          "aa_length": 1187,
          "cds_start": 3412,
          "cds_end": null,
          "cds_length": 3564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883177.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "NM_014676.3",
          "protein_id": "NP_055491.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_014676.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000883069.1",
          "protein_id": "ENSP00000553128.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883069.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000883074.1",
          "protein_id": "ENSP00000553133.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883074.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000883094.1",
          "protein_id": "ENSP00000553153.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883094.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000883118.1",
          "protein_id": "ENSP00000553177.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883118.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000918963.1",
          "protein_id": "ENSP00000589022.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918963.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3409C>T",
          "hgvs_p": "p.Arg1137Trp",
          "transcript": "ENST00000918971.1",
          "protein_id": "ENSP00000589030.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1186,
          "cds_start": 3409,
          "cds_end": null,
          "cds_length": 3561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918971.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3406C>T",
          "hgvs_p": "p.Arg1136Trp",
          "transcript": "ENST00000883083.1",
          "protein_id": "ENSP00000553142.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1185,
          "cds_start": 3406,
          "cds_end": null,
          "cds_length": 3558,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883083.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3406C>T",
          "hgvs_p": "p.Arg1136Trp",
          "transcript": "ENST00000883125.1",
          "protein_id": "ENSP00000553184.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1185,
          "cds_start": 3406,
          "cds_end": null,
          "cds_length": 3558,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883125.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3406C>T",
          "hgvs_p": "p.Arg1136Trp",
          "transcript": "ENST00000918948.1",
          "protein_id": "ENSP00000589007.1",
          "transcript_support_level": null,
          "aa_start": 1136,
          "aa_end": null,
          "aa_length": 1185,
          "cds_start": 3406,
          "cds_end": null,
          "cds_length": 3558,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918948.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3400C>T",
          "hgvs_p": "p.Arg1134Trp",
          "transcript": "ENST00000883135.1",
          "protein_id": "ENSP00000553194.1",
          "transcript_support_level": null,
          "aa_start": 1134,
          "aa_end": null,
          "aa_length": 1183,
          "cds_start": 3400,
          "cds_end": null,
          "cds_length": 3552,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883135.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3397C>T",
          "hgvs_p": "p.Arg1133Trp",
          "transcript": "ENST00000883117.1",
          "protein_id": "ENSP00000553176.1",
          "transcript_support_level": null,
          "aa_start": 1133,
          "aa_end": null,
          "aa_length": 1182,
          "cds_start": 3397,
          "cds_end": null,
          "cds_length": 3549,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883117.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3397C>T",
          "hgvs_p": "p.Arg1133Trp",
          "transcript": "ENST00000963538.1",
          "protein_id": "ENSP00000633597.1",
          "transcript_support_level": null,
          "aa_start": 1133,
          "aa_end": null,
          "aa_length": 1182,
          "cds_start": 3397,
          "cds_end": null,
          "cds_length": 3549,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963538.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3394C>T",
          "hgvs_p": "p.Arg1132Trp",
          "transcript": "ENST00000883150.1",
          "protein_id": "ENSP00000553209.1",
          "transcript_support_level": null,
          "aa_start": 1132,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3394,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883150.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3391C>T",
          "hgvs_p": "p.Arg1131Trp",
          "transcript": "ENST00000883176.1",
          "protein_id": "ENSP00000553235.1",
          "transcript_support_level": null,
          "aa_start": 1131,
          "aa_end": null,
          "aa_length": 1180,
          "cds_start": 3391,
          "cds_end": null,
          "cds_length": 3543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883176.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3391C>T",
          "hgvs_p": "p.Arg1131Trp",
          "transcript": "ENST00000918976.1",
          "protein_id": "ENSP00000589035.1",
          "transcript_support_level": null,
          "aa_start": 1131,
          "aa_end": null,
          "aa_length": 1180,
          "cds_start": 3391,
          "cds_end": null,
          "cds_length": 3543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918976.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3388C>T",
          "hgvs_p": "p.Arg1130Trp",
          "transcript": "ENST00000963535.1",
          "protein_id": "ENSP00000633594.1",
          "transcript_support_level": null,
          "aa_start": 1130,
          "aa_end": null,
          "aa_length": 1179,
          "cds_start": 3388,
          "cds_end": null,
          "cds_length": 3540,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963535.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3349C>T",
          "hgvs_p": "p.Arg1117Trp",
          "transcript": "ENST00000883120.1",
          "protein_id": "ENSP00000553179.1",
          "transcript_support_level": null,
          "aa_start": 1117,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3349,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883120.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3349C>T",
          "hgvs_p": "p.Arg1117Trp",
          "transcript": "ENST00000963530.1",
          "protein_id": "ENSP00000633589.1",
          "transcript_support_level": null,
          "aa_start": 1117,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3349,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963530.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3343C>T",
          "hgvs_p": "p.Arg1115Trp",
          "transcript": "ENST00000883136.1",
          "protein_id": "ENSP00000553195.1",
          "transcript_support_level": null,
          "aa_start": 1115,
          "aa_end": null,
          "aa_length": 1164,
          "cds_start": 3343,
          "cds_end": null,
          "cds_length": 3495,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883136.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3340C>T",
          "hgvs_p": "p.Arg1114Trp",
          "transcript": "ENST00000918958.1",
          "protein_id": "ENSP00000589017.1",
          "transcript_support_level": null,
          "aa_start": 1114,
          "aa_end": null,
          "aa_length": 1163,
          "cds_start": 3340,
          "cds_end": null,
          "cds_length": 3492,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918958.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3337C>T",
          "hgvs_p": "p.Arg1113Trp",
          "transcript": "ENST00000883068.1",
          "protein_id": "ENSP00000553127.1",
          "transcript_support_level": null,
          "aa_start": 1113,
          "aa_end": null,
          "aa_length": 1162,
          "cds_start": 3337,
          "cds_end": null,
          "cds_length": 3489,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883068.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3334C>T",
          "hgvs_p": "p.Arg1112Trp",
          "transcript": "ENST00000883075.1",
          "protein_id": "ENSP00000553134.1",
          "transcript_support_level": null,
          "aa_start": 1112,
          "aa_end": null,
          "aa_length": 1161,
          "cds_start": 3334,
          "cds_end": null,
          "cds_length": 3486,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883075.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3334C>T",
          "hgvs_p": "p.Arg1112Trp",
          "transcript": "ENST00000883079.1",
          "protein_id": "ENSP00000553138.1",
          "transcript_support_level": null,
          "aa_start": 1112,
          "aa_end": null,
          "aa_length": 1161,
          "cds_start": 3334,
          "cds_end": null,
          "cds_length": 3486,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883079.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3334C>T",
          "hgvs_p": "p.Arg1112Trp",
          "transcript": "ENST00000883105.1",
          "protein_id": "ENSP00000553164.1",
          "transcript_support_level": null,
          "aa_start": 1112,
          "aa_end": null,
          "aa_length": 1161,
          "cds_start": 3334,
          "cds_end": null,
          "cds_length": 3486,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883105.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3331C>T",
          "hgvs_p": "p.Arg1111Trp",
          "transcript": "ENST00000883067.1",
          "protein_id": "ENSP00000553126.1",
          "transcript_support_level": null,
          "aa_start": 1111,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 3331,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883067.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3331C>T",
          "hgvs_p": "p.Arg1111Trp",
          "transcript": "ENST00000883072.1",
          "protein_id": "ENSP00000553131.1",
          "transcript_support_level": null,
          "aa_start": 1111,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 3331,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883072.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3331C>T",
          "hgvs_p": "p.Arg1111Trp",
          "transcript": "ENST00000883078.1",
          "protein_id": "ENSP00000553137.1",
          "transcript_support_level": null,
          "aa_start": 1111,
          "aa_end": null,
          "aa_length": 1160,
          "cds_start": 3331,
          "cds_end": null,
          "cds_length": 3483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883078.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3328C>T",
          "hgvs_p": "p.Arg1110Trp",
          "transcript": "ENST00000883084.1",
          "protein_id": "ENSP00000553143.1",
          "transcript_support_level": null,
          "aa_start": 1110,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3328,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883084.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3328C>T",
          "hgvs_p": "p.Arg1110Trp",
          "transcript": "ENST00000883104.1",
          "protein_id": "ENSP00000553163.1",
          "transcript_support_level": null,
          "aa_start": 1110,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3328,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883104.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3328C>T",
          "hgvs_p": "p.Arg1110Trp",
          "transcript": "ENST00000883112.1",
          "protein_id": "ENSP00000553171.1",
          "transcript_support_level": null,
          "aa_start": 1110,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3328,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883112.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3328C>T",
          "hgvs_p": "p.Arg1110Trp",
          "transcript": "ENST00000918955.1",
          "protein_id": "ENSP00000589014.1",
          "transcript_support_level": null,
          "aa_start": 1110,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3328,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918955.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3325C>T",
          "hgvs_p": "p.Arg1109Trp",
          "transcript": "ENST00000883158.1",
          "protein_id": "ENSP00000553217.1",
          "transcript_support_level": null,
          "aa_start": 1109,
          "aa_end": null,
          "aa_length": 1158,
          "cds_start": 3325,
          "cds_end": null,
          "cds_length": 3477,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883158.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3313C>T",
          "hgvs_p": "p.Arg1105Trp",
          "transcript": "ENST00000918945.1",
          "protein_id": "ENSP00000589004.1",
          "transcript_support_level": null,
          "aa_start": 1105,
          "aa_end": null,
          "aa_length": 1154,
          "cds_start": 3313,
          "cds_end": null,
          "cds_length": 3465,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918945.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3307C>T",
          "hgvs_p": "p.Arg1103Trp",
          "transcript": "ENST00000963556.1",
          "protein_id": "ENSP00000633615.1",
          "transcript_support_level": null,
          "aa_start": 1103,
          "aa_end": null,
          "aa_length": 1152,
          "cds_start": 3307,
          "cds_end": null,
          "cds_length": 3459,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963556.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3298C>T",
          "hgvs_p": "p.Arg1100Trp",
          "transcript": "ENST00000883099.1",
          "protein_id": "ENSP00000553158.1",
          "transcript_support_level": null,
          "aa_start": 1100,
          "aa_end": null,
          "aa_length": 1149,
          "cds_start": 3298,
          "cds_end": null,
          "cds_length": 3450,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883099.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3286C>T",
          "hgvs_p": "p.Arg1096Trp",
          "transcript": "ENST00000883088.1",
          "protein_id": "ENSP00000553147.1",
          "transcript_support_level": null,
          "aa_start": 1096,
          "aa_end": null,
          "aa_length": 1145,
          "cds_start": 3286,
          "cds_end": null,
          "cds_length": 3438,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883088.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3286C>T",
          "hgvs_p": "p.Arg1096Trp",
          "transcript": "ENST00000963537.1",
          "protein_id": "ENSP00000633596.1",
          "transcript_support_level": null,
          "aa_start": 1096,
          "aa_end": null,
          "aa_length": 1145,
          "cds_start": 3286,
          "cds_end": null,
          "cds_length": 3438,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963537.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3283C>T",
          "hgvs_p": "p.Arg1095Trp",
          "transcript": "ENST00000883113.1",
          "protein_id": "ENSP00000553172.1",
          "transcript_support_level": null,
          "aa_start": 1095,
          "aa_end": null,
          "aa_length": 1144,
          "cds_start": 3283,
          "cds_end": null,
          "cds_length": 3435,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883113.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3280C>T",
          "hgvs_p": "p.Arg1094Trp",
          "transcript": "ENST00000883174.1",
          "protein_id": "ENSP00000553233.1",
          "transcript_support_level": null,
          "aa_start": 1094,
          "aa_end": null,
          "aa_length": 1143,
          "cds_start": 3280,
          "cds_end": null,
          "cds_length": 3432,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883174.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3280C>T",
          "hgvs_p": "p.Arg1094Trp",
          "transcript": "ENST00000963544.1",
          "protein_id": "ENSP00000633603.1",
          "transcript_support_level": null,
          "aa_start": 1094,
          "aa_end": null,
          "aa_length": 1143,
          "cds_start": 3280,
          "cds_end": null,
          "cds_length": 3432,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963544.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3280C>T",
          "hgvs_p": "p.Arg1094Trp",
          "transcript": "ENST00000963560.1",
          "protein_id": "ENSP00000633619.1",
          "transcript_support_level": null,
          "aa_start": 1094,
          "aa_end": null,
          "aa_length": 1143,
          "cds_start": 3280,
          "cds_end": null,
          "cds_length": 3432,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963560.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3277C>T",
          "hgvs_p": "p.Arg1093Trp",
          "transcript": "ENST00000883077.1",
          "protein_id": "ENSP00000553136.1",
          "transcript_support_level": null,
          "aa_start": 1093,
          "aa_end": null,
          "aa_length": 1142,
          "cds_start": 3277,
          "cds_end": null,
          "cds_length": 3429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883077.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3277C>T",
          "hgvs_p": "p.Arg1093Trp",
          "transcript": "ENST00000883178.1",
          "protein_id": "ENSP00000553237.1",
          "transcript_support_level": null,
          "aa_start": 1093,
          "aa_end": null,
          "aa_length": 1142,
          "cds_start": 3277,
          "cds_end": null,
          "cds_length": 3429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883178.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3277C>T",
          "hgvs_p": "p.Arg1093Trp",
          "transcript": "ENST00000963529.1",
          "protein_id": "ENSP00000633588.1",
          "transcript_support_level": null,
          "aa_start": 1093,
          "aa_end": null,
          "aa_length": 1142,
          "cds_start": 3277,
          "cds_end": null,
          "cds_length": 3429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963529.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3277C>T",
          "hgvs_p": "p.Arg1093Trp",
          "transcript": "ENST00000963553.1",
          "protein_id": "ENSP00000633612.1",
          "transcript_support_level": null,
          "aa_start": 1093,
          "aa_end": null,
          "aa_length": 1142,
          "cds_start": 3277,
          "cds_end": null,
          "cds_length": 3429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963553.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3274C>T",
          "hgvs_p": "p.Arg1092Trp",
          "transcript": "ENST00000963554.1",
          "protein_id": "ENSP00000633613.1",
          "transcript_support_level": null,
          "aa_start": 1092,
          "aa_end": null,
          "aa_length": 1141,
          "cds_start": 3274,
          "cds_end": null,
          "cds_length": 3426,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963554.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3271C>T",
          "hgvs_p": "p.Arg1091Trp",
          "transcript": "ENST00000963525.1",
          "protein_id": "ENSP00000633584.1",
          "transcript_support_level": null,
          "aa_start": 1091,
          "aa_end": null,
          "aa_length": 1140,
          "cds_start": 3271,
          "cds_end": null,
          "cds_length": 3423,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963525.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3268C>T",
          "hgvs_p": "p.Arg1090Trp",
          "transcript": "ENST00000883162.1",
          "protein_id": "ENSP00000553221.1",
          "transcript_support_level": null,
          "aa_start": 1090,
          "aa_end": null,
          "aa_length": 1139,
          "cds_start": 3268,
          "cds_end": null,
          "cds_length": 3420,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883162.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3265C>T",
          "hgvs_p": "p.Arg1089Trp",
          "transcript": "ENST00000918974.1",
          "protein_id": "ENSP00000589033.1",
          "transcript_support_level": null,
          "aa_start": 1089,
          "aa_end": null,
          "aa_length": 1138,
          "cds_start": 3265,
          "cds_end": null,
          "cds_length": 3417,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918974.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3262C>T",
          "hgvs_p": "p.Arg1088Trp",
          "transcript": "ENST00000883165.1",
          "protein_id": "ENSP00000553224.1",
          "transcript_support_level": null,
          "aa_start": 1088,
          "aa_end": null,
          "aa_length": 1137,
          "cds_start": 3262,
          "cds_end": null,
          "cds_length": 3414,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883165.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3250C>T",
          "hgvs_p": "p.Arg1084Trp",
          "transcript": "ENST00000918966.1",
          "protein_id": "ENSP00000589025.1",
          "transcript_support_level": null,
          "aa_start": 1084,
          "aa_end": null,
          "aa_length": 1133,
          "cds_start": 3250,
          "cds_end": null,
          "cds_length": 3402,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918966.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3247C>T",
          "hgvs_p": "p.Arg1083Trp",
          "transcript": "ENST00000963547.1",
          "protein_id": "ENSP00000633606.1",
          "transcript_support_level": null,
          "aa_start": 1083,
          "aa_end": null,
          "aa_length": 1132,
          "cds_start": 3247,
          "cds_end": null,
          "cds_length": 3399,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963547.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3244C>T",
          "hgvs_p": "p.Arg1082Trp",
          "transcript": "ENST00000963552.1",
          "protein_id": "ENSP00000633611.1",
          "transcript_support_level": null,
          "aa_start": 1082,
          "aa_end": null,
          "aa_length": 1131,
          "cds_start": 3244,
          "cds_end": null,
          "cds_length": 3396,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963552.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3244C>T",
          "hgvs_p": "p.Arg1082Trp",
          "transcript": "ENST00000963562.1",
          "protein_id": "ENSP00000633621.1",
          "transcript_support_level": null,
          "aa_start": 1082,
          "aa_end": null,
          "aa_length": 1131,
          "cds_start": 3244,
          "cds_end": null,
          "cds_length": 3396,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963562.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3238C>T",
          "hgvs_p": "p.Arg1080Trp",
          "transcript": "ENST00000918965.1",
          "protein_id": "ENSP00000589024.1",
          "transcript_support_level": null,
          "aa_start": 1080,
          "aa_end": null,
          "aa_length": 1129,
          "cds_start": 3238,
          "cds_end": null,
          "cds_length": 3390,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918965.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3232C>T",
          "hgvs_p": "p.Arg1078Trp",
          "transcript": "ENST00000373742.6",
          "protein_id": "ENSP00000362847.2",
          "transcript_support_level": 2,
          "aa_start": 1078,
          "aa_end": null,
          "aa_length": 1127,
          "cds_start": 3232,
          "cds_end": null,
          "cds_length": 3384,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000373742.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3223C>T",
          "hgvs_p": "p.Arg1075Trp",
          "transcript": "ENST00000525843.5",
          "protein_id": "ENSP00000435825.1",
          "transcript_support_level": 5,
          "aa_start": 1075,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 3223,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000525843.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3211C>T",
          "hgvs_p": "p.Arg1071Trp",
          "transcript": "ENST00000883156.1",
          "protein_id": "ENSP00000553215.1",
          "transcript_support_level": null,
          "aa_start": 1071,
          "aa_end": null,
          "aa_length": 1120,
          "cds_start": 3211,
          "cds_end": null,
          "cds_length": 3363,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883156.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3205C>T",
          "hgvs_p": "p.Arg1069Trp",
          "transcript": "ENST00000883168.1",
          "protein_id": "ENSP00000553227.1",
          "transcript_support_level": null,
          "aa_start": 1069,
          "aa_end": null,
          "aa_length": 1118,
          "cds_start": 3205,
          "cds_end": null,
          "cds_length": 3357,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883168.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3202C>T",
          "hgvs_p": "p.Arg1068Trp",
          "transcript": "ENST00000883124.1",
          "protein_id": "ENSP00000553183.1",
          "transcript_support_level": null,
          "aa_start": 1068,
          "aa_end": null,
          "aa_length": 1117,
          "cds_start": 3202,
          "cds_end": null,
          "cds_length": 3354,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883124.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3202C>T",
          "hgvs_p": "p.Arg1068Trp",
          "transcript": "ENST00000963542.1",
          "protein_id": "ENSP00000633601.1",
          "transcript_support_level": null,
          "aa_start": 1068,
          "aa_end": null,
          "aa_length": 1117,
          "cds_start": 3202,
          "cds_end": null,
          "cds_length": 3354,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963542.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3199C>T",
          "hgvs_p": "p.Arg1067Trp",
          "transcript": "ENST00000918944.1",
          "protein_id": "ENSP00000589003.1",
          "transcript_support_level": null,
          "aa_start": 1067,
          "aa_end": null,
          "aa_length": 1116,
          "cds_start": 3199,
          "cds_end": null,
          "cds_length": 3351,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918944.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3193C>T",
          "hgvs_p": "p.Arg1065Trp",
          "transcript": "ENST00000918960.1",
          "protein_id": "ENSP00000589019.1",
          "transcript_support_level": null,
          "aa_start": 1065,
          "aa_end": null,
          "aa_length": 1114,
          "cds_start": 3193,
          "cds_end": null,
          "cds_length": 3345,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918960.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3193C>T",
          "hgvs_p": "p.Arg1065Trp",
          "transcript": "ENST00000963551.1",
          "protein_id": "ENSP00000633610.1",
          "transcript_support_level": null,
          "aa_start": 1065,
          "aa_end": null,
          "aa_length": 1114,
          "cds_start": 3193,
          "cds_end": null,
          "cds_length": 3345,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963551.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3187C>T",
          "hgvs_p": "p.Arg1063Trp",
          "transcript": "ENST00000918949.1",
          "protein_id": "ENSP00000589008.1",
          "transcript_support_level": null,
          "aa_start": 1063,
          "aa_end": null,
          "aa_length": 1112,
          "cds_start": 3187,
          "cds_end": null,
          "cds_length": 3339,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918949.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3184C>T",
          "hgvs_p": "p.Arg1062Trp",
          "transcript": "ENST00000918973.1",
          "protein_id": "ENSP00000589032.1",
          "transcript_support_level": null,
          "aa_start": 1062,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 3184,
          "cds_end": null,
          "cds_length": 3336,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918973.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3181C>T",
          "hgvs_p": "p.Arg1061Trp",
          "transcript": "ENST00000883100.1",
          "protein_id": "ENSP00000553159.1",
          "transcript_support_level": null,
          "aa_start": 1061,
          "aa_end": null,
          "aa_length": 1110,
          "cds_start": 3181,
          "cds_end": null,
          "cds_length": 3333,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883100.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3181C>T",
          "hgvs_p": "p.Arg1061Trp",
          "transcript": "ENST00000963524.1",
          "protein_id": "ENSP00000633583.1",
          "transcript_support_level": null,
          "aa_start": 1061,
          "aa_end": null,
          "aa_length": 1110,
          "cds_start": 3181,
          "cds_end": null,
          "cds_length": 3333,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963524.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3178C>T",
          "hgvs_p": "p.Arg1060Trp",
          "transcript": "ENST00000883089.1",
          "protein_id": "ENSP00000553148.1",
          "transcript_support_level": null,
          "aa_start": 1060,
          "aa_end": null,
          "aa_length": 1109,
          "cds_start": 3178,
          "cds_end": null,
          "cds_length": 3330,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883089.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3178C>T",
          "hgvs_p": "p.Arg1060Trp",
          "transcript": "ENST00000883167.1",
          "protein_id": "ENSP00000553226.1",
          "transcript_support_level": null,
          "aa_start": 1060,
          "aa_end": null,
          "aa_length": 1109,
          "cds_start": 3178,
          "cds_end": null,
          "cds_length": 3330,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883167.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3178C>T",
          "hgvs_p": "p.Arg1060Trp",
          "transcript": "ENST00000963532.1",
          "protein_id": "ENSP00000633591.1",
          "transcript_support_level": null,
          "aa_start": 1060,
          "aa_end": null,
          "aa_length": 1109,
          "cds_start": 3178,
          "cds_end": null,
          "cds_length": 3330,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963532.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3175C>T",
          "hgvs_p": "p.Arg1059Trp",
          "transcript": "ENST00000883101.1",
          "protein_id": "ENSP00000553160.1",
          "transcript_support_level": null,
          "aa_start": 1059,
          "aa_end": null,
          "aa_length": 1108,
          "cds_start": 3175,
          "cds_end": null,
          "cds_length": 3327,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883101.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3175C>T",
          "hgvs_p": "p.Arg1059Trp",
          "transcript": "ENST00000883139.1",
          "protein_id": "ENSP00000553198.1",
          "transcript_support_level": null,
          "aa_start": 1059,
          "aa_end": null,
          "aa_length": 1108,
          "cds_start": 3175,
          "cds_end": null,
          "cds_length": 3327,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883139.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3175C>T",
          "hgvs_p": "p.Arg1059Trp",
          "transcript": "ENST00000963528.1",
          "protein_id": "ENSP00000633587.1",
          "transcript_support_level": null,
          "aa_start": 1059,
          "aa_end": null,
          "aa_length": 1108,
          "cds_start": 3175,
          "cds_end": null,
          "cds_length": 3327,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963528.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3172C>T",
          "hgvs_p": "p.Arg1058Trp",
          "transcript": "ENST00000883081.1",
          "protein_id": "ENSP00000553140.1",
          "transcript_support_level": null,
          "aa_start": 1058,
          "aa_end": null,
          "aa_length": 1107,
          "cds_start": 3172,
          "cds_end": null,
          "cds_length": 3324,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883081.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3172C>T",
          "hgvs_p": "p.Arg1058Trp",
          "transcript": "ENST00000883149.1",
          "protein_id": "ENSP00000553208.1",
          "transcript_support_level": null,
          "aa_start": 1058,
          "aa_end": null,
          "aa_length": 1107,
          "cds_start": 3172,
          "cds_end": null,
          "cds_length": 3324,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883149.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3169C>T",
          "hgvs_p": "p.Arg1057Trp",
          "transcript": "ENST00000883116.1",
          "protein_id": "ENSP00000553175.1",
          "transcript_support_level": null,
          "aa_start": 1057,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3169,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883116.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 21,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3163C>T",
          "hgvs_p": "p.Arg1055Trp",
          "transcript": "ENST00000883179.1",
          "protein_id": "ENSP00000553238.1",
          "transcript_support_level": null,
          "aa_start": 1055,
          "aa_end": null,
          "aa_length": 1104,
          "cds_start": 3163,
          "cds_end": null,
          "cds_length": 3315,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883179.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3154C>T",
          "hgvs_p": "p.Arg1052Trp",
          "transcript": "ENST00000883170.1",
          "protein_id": "ENSP00000553229.1",
          "transcript_support_level": null,
          "aa_start": 1052,
          "aa_end": null,
          "aa_length": 1101,
          "cds_start": 3154,
          "cds_end": null,
          "cds_length": 3306,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883170.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3154C>T",
          "hgvs_p": "p.Arg1052Trp",
          "transcript": "ENST00000963539.1",
          "protein_id": "ENSP00000633598.1",
          "transcript_support_level": null,
          "aa_start": 1052,
          "aa_end": null,
          "aa_length": 1101,
          "cds_start": 3154,
          "cds_end": null,
          "cds_length": 3306,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963539.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3154C>T",
          "hgvs_p": "p.Arg1052Trp",
          "transcript": "ENST00000963545.1",
          "protein_id": "ENSP00000633604.1",
          "transcript_support_level": null,
          "aa_start": 1052,
          "aa_end": null,
          "aa_length": 1101,
          "cds_start": 3154,
          "cds_end": null,
          "cds_length": 3306,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963545.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3151C>T",
          "hgvs_p": "p.Arg1051Trp",
          "transcript": "ENST00000883147.1",
          "protein_id": "ENSP00000553206.1",
          "transcript_support_level": null,
          "aa_start": 1051,
          "aa_end": null,
          "aa_length": 1100,
          "cds_start": 3151,
          "cds_end": null,
          "cds_length": 3303,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883147.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3136C>T",
          "hgvs_p": "p.Arg1046Trp",
          "transcript": "ENST00000883148.1",
          "protein_id": "ENSP00000553207.1",
          "transcript_support_level": null,
          "aa_start": 1046,
          "aa_end": null,
          "aa_length": 1095,
          "cds_start": 3136,
          "cds_end": null,
          "cds_length": 3288,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883148.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3130C>T",
          "hgvs_p": "p.Arg1044Trp",
          "transcript": "ENST00000883110.1",
          "protein_id": "ENSP00000553169.1",
          "transcript_support_level": null,
          "aa_start": 1044,
          "aa_end": null,
          "aa_length": 1093,
          "cds_start": 3130,
          "cds_end": null,
          "cds_length": 3282,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883110.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3127C>T",
          "hgvs_p": "p.Arg1043Trp",
          "transcript": "ENST00000883090.1",
          "protein_id": "ENSP00000553149.1",
          "transcript_support_level": null,
          "aa_start": 1043,
          "aa_end": null,
          "aa_length": 1092,
          "cds_start": 3127,
          "cds_end": null,
          "cds_length": 3279,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883090.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3127C>T",
          "hgvs_p": "p.Arg1043Trp",
          "transcript": "ENST00000918937.1",
          "protein_id": "ENSP00000588996.1",
          "transcript_support_level": null,
          "aa_start": 1043,
          "aa_end": null,
          "aa_length": 1092,
          "cds_start": 3127,
          "cds_end": null,
          "cds_length": 3279,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918937.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3124C>T",
          "hgvs_p": "p.Arg1042Trp",
          "transcript": "ENST00000883091.1",
          "protein_id": "ENSP00000553150.1",
          "transcript_support_level": null,
          "aa_start": 1042,
          "aa_end": null,
          "aa_length": 1091,
          "cds_start": 3124,
          "cds_end": null,
          "cds_length": 3276,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883091.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3121C>T",
          "hgvs_p": "p.Arg1041Trp",
          "transcript": "ENST00000883071.1",
          "protein_id": "ENSP00000553130.1",
          "transcript_support_level": null,
          "aa_start": 1041,
          "aa_end": null,
          "aa_length": 1090,
          "cds_start": 3121,
          "cds_end": null,
          "cds_length": 3273,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883071.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3121C>T",
          "hgvs_p": "p.Arg1041Trp",
          "transcript": "ENST00000883087.1",
          "protein_id": "ENSP00000553146.1",
          "transcript_support_level": null,
          "aa_start": 1041,
          "aa_end": null,
          "aa_length": 1090,
          "cds_start": 3121,
          "cds_end": null,
          "cds_length": 3273,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883087.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3112C>T",
          "hgvs_p": "p.Arg1038Trp",
          "transcript": "ENST00000883152.1",
          "protein_id": "ENSP00000553211.1",
          "transcript_support_level": null,
          "aa_start": 1038,
          "aa_end": null,
          "aa_length": 1087,
          "cds_start": 3112,
          "cds_end": null,
          "cds_length": 3264,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883152.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3106C>T",
          "hgvs_p": "p.Arg1036Trp",
          "transcript": "ENST00000918978.1",
          "protein_id": "ENSP00000589037.1",
          "transcript_support_level": null,
          "aa_start": 1036,
          "aa_end": null,
          "aa_length": 1085,
          "cds_start": 3106,
          "cds_end": null,
          "cds_length": 3258,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918978.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3103C>T",
          "hgvs_p": "p.Arg1035Trp",
          "transcript": "ENST00000883169.1",
          "protein_id": "ENSP00000553228.1",
          "transcript_support_level": null,
          "aa_start": 1035,
          "aa_end": null,
          "aa_length": 1084,
          "cds_start": 3103,
          "cds_end": null,
          "cds_length": 3255,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883169.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3100C>T",
          "hgvs_p": "p.Arg1034Trp",
          "transcript": "ENST00000883097.1",
          "protein_id": "ENSP00000553156.1",
          "transcript_support_level": null,
          "aa_start": 1034,
          "aa_end": null,
          "aa_length": 1083,
          "cds_start": 3100,
          "cds_end": null,
          "cds_length": 3252,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883097.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3097C>T",
          "hgvs_p": "p.Arg1033Trp",
          "transcript": "ENST00000883159.1",
          "protein_id": "ENSP00000553218.1",
          "transcript_support_level": null,
          "aa_start": 1033,
          "aa_end": null,
          "aa_length": 1082,
          "cds_start": 3097,
          "cds_end": null,
          "cds_length": 3249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883159.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3097C>T",
          "hgvs_p": "p.Arg1033Trp",
          "transcript": "ENST00000883163.1",
          "protein_id": "ENSP00000553222.1",
          "transcript_support_level": null,
          "aa_start": 1033,
          "aa_end": null,
          "aa_length": 1082,
          "cds_start": 3097,
          "cds_end": null,
          "cds_length": 3249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883163.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3094C>T",
          "hgvs_p": "p.Arg1032Trp",
          "transcript": "ENST00000883146.1",
          "protein_id": "ENSP00000553205.1",
          "transcript_support_level": null,
          "aa_start": 1032,
          "aa_end": null,
          "aa_length": 1081,
          "cds_start": 3094,
          "cds_end": null,
          "cds_length": 3246,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883146.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3094C>T",
          "hgvs_p": "p.Arg1032Trp",
          "transcript": "ENST00000918941.1",
          "protein_id": "ENSP00000589000.1",
          "transcript_support_level": null,
          "aa_start": 1032,
          "aa_end": null,
          "aa_length": 1081,
          "cds_start": 3094,
          "cds_end": null,
          "cds_length": 3246,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918941.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3091C>T",
          "hgvs_p": "p.Arg1031Trp",
          "transcript": "ENST00000883153.1",
          "protein_id": "ENSP00000553212.1",
          "transcript_support_level": null,
          "aa_start": 1031,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 3091,
          "cds_end": null,
          "cds_length": 3243,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883153.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3088C>T",
          "hgvs_p": "p.Arg1030Trp",
          "transcript": "ENST00000963555.1",
          "protein_id": "ENSP00000633614.1",
          "transcript_support_level": null,
          "aa_start": 1030,
          "aa_end": null,
          "aa_length": 1079,
          "cds_start": 3088,
          "cds_end": null,
          "cds_length": 3240,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963555.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3067C>T",
          "hgvs_p": "p.Arg1023Trp",
          "transcript": "ENST00000883133.1",
          "protein_id": "ENSP00000553192.1",
          "transcript_support_level": null,
          "aa_start": 1023,
          "aa_end": null,
          "aa_length": 1072,
          "cds_start": 3067,
          "cds_end": null,
          "cds_length": 3219,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883133.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3061C>T",
          "hgvs_p": "p.Arg1021Trp",
          "transcript": "ENST00000963540.1",
          "protein_id": "ENSP00000633599.1",
          "transcript_support_level": null,
          "aa_start": 1021,
          "aa_end": null,
          "aa_length": 1070,
          "cds_start": 3061,
          "cds_end": null,
          "cds_length": 3213,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963540.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3058C>T",
          "hgvs_p": "p.Arg1020Trp",
          "transcript": "ENST00000963557.1",
          "protein_id": "ENSP00000633616.1",
          "transcript_support_level": null,
          "aa_start": 1020,
          "aa_end": null,
          "aa_length": 1069,
          "cds_start": 3058,
          "cds_end": null,
          "cds_length": 3210,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963557.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3055C>T",
          "hgvs_p": "p.Arg1019Trp",
          "transcript": "ENST00000963543.1",
          "protein_id": "ENSP00000633602.1",
          "transcript_support_level": null,
          "aa_start": 1019,
          "aa_end": null,
          "aa_length": 1068,
          "cds_start": 3055,
          "cds_end": null,
          "cds_length": 3207,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963543.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3049C>T",
          "hgvs_p": "p.Arg1017Trp",
          "transcript": "ENST00000883160.1",
          "protein_id": "ENSP00000553219.1",
          "transcript_support_level": null,
          "aa_start": 1017,
          "aa_end": null,
          "aa_length": 1066,
          "cds_start": 3049,
          "cds_end": null,
          "cds_length": 3201,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883160.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3046C>T",
          "hgvs_p": "p.Arg1016Trp",
          "transcript": "ENST00000883103.1",
          "protein_id": "ENSP00000553162.1",
          "transcript_support_level": null,
          "aa_start": 1016,
          "aa_end": null,
          "aa_length": 1065,
          "cds_start": 3046,
          "cds_end": null,
          "cds_length": 3198,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883103.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3046C>T",
          "hgvs_p": "p.Arg1016Trp",
          "transcript": "ENST00000918942.1",
          "protein_id": "ENSP00000589001.1",
          "transcript_support_level": null,
          "aa_start": 1016,
          "aa_end": null,
          "aa_length": 1065,
          "cds_start": 3046,
          "cds_end": null,
          "cds_length": 3198,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918942.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3043C>T",
          "hgvs_p": "p.Arg1015Trp",
          "transcript": "ENST00000883108.1",
          "protein_id": "ENSP00000553167.1",
          "transcript_support_level": null,
          "aa_start": 1015,
          "aa_end": null,
          "aa_length": 1064,
          "cds_start": 3043,
          "cds_end": null,
          "cds_length": 3195,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883108.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3040C>T",
          "hgvs_p": "p.Arg1014Trp",
          "transcript": "ENST00000883119.1",
          "protein_id": "ENSP00000553178.1",
          "transcript_support_level": null,
          "aa_start": 1014,
          "aa_end": null,
          "aa_length": 1063,
          "cds_start": 3040,
          "cds_end": null,
          "cds_length": 3192,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883119.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.3010C>T",
          "hgvs_p": "p.Arg1004Trp",
          "transcript": "ENST00000883155.1",
          "protein_id": "ENSP00000553214.1",
          "transcript_support_level": null,
          "aa_start": 1004,
          "aa_end": null,
          "aa_length": 1053,
          "cds_start": 3010,
          "cds_end": null,
          "cds_length": 3162,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883155.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2998C>T",
          "hgvs_p": "p.Arg1000Trp",
          "transcript": "ENST00000883171.1",
          "protein_id": "ENSP00000553230.1",
          "transcript_support_level": null,
          "aa_start": 1000,
          "aa_end": null,
          "aa_length": 1049,
          "cds_start": 2998,
          "cds_end": null,
          "cds_length": 3150,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883171.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2995C>T",
          "hgvs_p": "p.Arg999Trp",
          "transcript": "ENST00000883121.1",
          "protein_id": "ENSP00000553180.1",
          "transcript_support_level": null,
          "aa_start": 999,
          "aa_end": null,
          "aa_length": 1048,
          "cds_start": 2995,
          "cds_end": null,
          "cds_length": 3147,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883121.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2992C>T",
          "hgvs_p": "p.Arg998Trp",
          "transcript": "ENST00000963526.1",
          "protein_id": "ENSP00000633585.1",
          "transcript_support_level": null,
          "aa_start": 998,
          "aa_end": null,
          "aa_length": 1047,
          "cds_start": 2992,
          "cds_end": null,
          "cds_length": 3144,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963526.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2980C>T",
          "hgvs_p": "p.Arg994Trp",
          "transcript": "ENST00000918940.1",
          "protein_id": "ENSP00000588999.1",
          "transcript_support_level": null,
          "aa_start": 994,
          "aa_end": null,
          "aa_length": 1043,
          "cds_start": 2980,
          "cds_end": null,
          "cds_length": 3132,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918940.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2977C>T",
          "hgvs_p": "p.Arg993Trp",
          "transcript": "ENST00000883145.1",
          "protein_id": "ENSP00000553204.1",
          "transcript_support_level": null,
          "aa_start": 993,
          "aa_end": null,
          "aa_length": 1042,
          "cds_start": 2977,
          "cds_end": null,
          "cds_length": 3129,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883145.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2977C>T",
          "hgvs_p": "p.Arg993Trp",
          "transcript": "ENST00000963561.1",
          "protein_id": "ENSP00000633620.1",
          "transcript_support_level": null,
          "aa_start": 993,
          "aa_end": null,
          "aa_length": 1042,
          "cds_start": 2977,
          "cds_end": null,
          "cds_length": 3129,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963561.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2974C>T",
          "hgvs_p": "p.Arg992Trp",
          "transcript": "ENST00000883175.1",
          "protein_id": "ENSP00000553234.1",
          "transcript_support_level": null,
          "aa_start": 992,
          "aa_end": null,
          "aa_length": 1041,
          "cds_start": 2974,
          "cds_end": null,
          "cds_length": 3126,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883175.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2971C>T",
          "hgvs_p": "p.Arg991Trp",
          "transcript": "ENST00000883154.1",
          "protein_id": "ENSP00000553213.1",
          "transcript_support_level": null,
          "aa_start": 991,
          "aa_end": null,
          "aa_length": 1040,
          "cds_start": 2971,
          "cds_end": null,
          "cds_length": 3123,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883154.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2968C>T",
          "hgvs_p": "p.Arg990Trp",
          "transcript": "ENST00000918951.1",
          "protein_id": "ENSP00000589010.1",
          "transcript_support_level": null,
          "aa_start": 990,
          "aa_end": null,
          "aa_length": 1039,
          "cds_start": 2968,
          "cds_end": null,
          "cds_length": 3120,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918951.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2959C>T",
          "hgvs_p": "p.Arg987Trp",
          "transcript": "ENST00000963541.1",
          "protein_id": "ENSP00000633600.1",
          "transcript_support_level": null,
          "aa_start": 987,
          "aa_end": null,
          "aa_length": 1036,
          "cds_start": 2959,
          "cds_end": null,
          "cds_length": 3111,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963541.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2950C>T",
          "hgvs_p": "p.Arg984Trp",
          "transcript": "ENST00000918984.1",
          "protein_id": "ENSP00000589043.1",
          "transcript_support_level": null,
          "aa_start": 984,
          "aa_end": null,
          "aa_length": 1033,
          "cds_start": 2950,
          "cds_end": null,
          "cds_length": 3102,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918984.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2914C>T",
          "hgvs_p": "p.Arg972Trp",
          "transcript": "ENST00000883128.1",
          "protein_id": "ENSP00000553187.1",
          "transcript_support_level": null,
          "aa_start": 972,
          "aa_end": null,
          "aa_length": 1021,
          "cds_start": 2914,
          "cds_end": null,
          "cds_length": 3066,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883128.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2905C>T",
          "hgvs_p": "p.Arg969Trp",
          "transcript": "ENST00000883098.1",
          "protein_id": "ENSP00000553157.1",
          "transcript_support_level": null,
          "aa_start": 969,
          "aa_end": null,
          "aa_length": 1018,
          "cds_start": 2905,
          "cds_end": null,
          "cds_length": 3057,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883098.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2905C>T",
          "hgvs_p": "p.Arg969Trp",
          "transcript": "ENST00000918983.1",
          "protein_id": "ENSP00000589042.1",
          "transcript_support_level": null,
          "aa_start": 969,
          "aa_end": null,
          "aa_length": 1018,
          "cds_start": 2905,
          "cds_end": null,
          "cds_length": 3057,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918983.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2899C>T",
          "hgvs_p": "p.Arg967Trp",
          "transcript": "ENST00000883142.1",
          "protein_id": "ENSP00000553201.1",
          "transcript_support_level": null,
          "aa_start": 967,
          "aa_end": null,
          "aa_length": 1016,
          "cds_start": 2899,
          "cds_end": null,
          "cds_length": 3051,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883142.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2896C>T",
          "hgvs_p": "p.Arg966Trp",
          "transcript": "ENST00000883164.1",
          "protein_id": "ENSP00000553223.1",
          "transcript_support_level": null,
          "aa_start": 966,
          "aa_end": null,
          "aa_length": 1015,
          "cds_start": 2896,
          "cds_end": null,
          "cds_length": 3048,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883164.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2893C>T",
          "hgvs_p": "p.Arg965Trp",
          "transcript": "ENST00000883166.1",
          "protein_id": "ENSP00000553225.1",
          "transcript_support_level": null,
          "aa_start": 965,
          "aa_end": null,
          "aa_length": 1014,
          "cds_start": 2893,
          "cds_end": null,
          "cds_length": 3045,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883166.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2893C>T",
          "hgvs_p": "p.Arg965Trp",
          "transcript": "ENST00000918969.1",
          "protein_id": "ENSP00000589028.1",
          "transcript_support_level": null,
          "aa_start": 965,
          "aa_end": null,
          "aa_length": 1014,
          "cds_start": 2893,
          "cds_end": null,
          "cds_length": 3045,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918969.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2890C>T",
          "hgvs_p": "p.Arg964Trp",
          "transcript": "ENST00000883141.1",
          "protein_id": "ENSP00000553200.1",
          "transcript_support_level": null,
          "aa_start": 964,
          "aa_end": null,
          "aa_length": 1013,
          "cds_start": 2890,
          "cds_end": null,
          "cds_length": 3042,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883141.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2890C>T",
          "hgvs_p": "p.Arg964Trp",
          "transcript": "ENST00000918953.1",
          "protein_id": "ENSP00000589012.1",
          "transcript_support_level": null,
          "aa_start": 964,
          "aa_end": null,
          "aa_length": 1013,
          "cds_start": 2890,
          "cds_end": null,
          "cds_length": 3042,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918953.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2887C>T",
          "hgvs_p": "p.Arg963Trp",
          "transcript": "ENST00000883106.1",
          "protein_id": "ENSP00000553165.1",
          "transcript_support_level": null,
          "aa_start": 963,
          "aa_end": null,
          "aa_length": 1012,
          "cds_start": 2887,
          "cds_end": null,
          "cds_length": 3039,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883106.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2887C>T",
          "hgvs_p": "p.Arg963Trp",
          "transcript": "ENST00000918943.1",
          "protein_id": "ENSP00000589002.1",
          "transcript_support_level": null,
          "aa_start": 963,
          "aa_end": null,
          "aa_length": 1012,
          "cds_start": 2887,
          "cds_end": null,
          "cds_length": 3039,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918943.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2884C>T",
          "hgvs_p": "p.Arg962Trp",
          "transcript": "ENST00000918954.1",
          "protein_id": "ENSP00000589013.1",
          "transcript_support_level": null,
          "aa_start": 962,
          "aa_end": null,
          "aa_length": 1011,
          "cds_start": 2884,
          "cds_end": null,
          "cds_length": 3036,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918954.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2818C>T",
          "hgvs_p": "p.Arg940Trp",
          "transcript": "ENST00000883127.1",
          "protein_id": "ENSP00000553186.1",
          "transcript_support_level": null,
          "aa_start": 940,
          "aa_end": null,
          "aa_length": 989,
          "cds_start": 2818,
          "cds_end": null,
          "cds_length": 2970,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883127.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2812C>T",
          "hgvs_p": "p.Arg938Trp",
          "transcript": "ENST00000883161.1",
          "protein_id": "ENSP00000553220.1",
          "transcript_support_level": null,
          "aa_start": 938,
          "aa_end": null,
          "aa_length": 987,
          "cds_start": 2812,
          "cds_end": null,
          "cds_length": 2964,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883161.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2809C>T",
          "hgvs_p": "p.Arg937Trp",
          "transcript": "ENST00000918979.1",
          "protein_id": "ENSP00000589038.1",
          "transcript_support_level": null,
          "aa_start": 937,
          "aa_end": null,
          "aa_length": 986,
          "cds_start": 2809,
          "cds_end": null,
          "cds_length": 2961,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918979.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2806C>T",
          "hgvs_p": "p.Arg936Trp",
          "transcript": "ENST00000963533.1",
          "protein_id": "ENSP00000633592.1",
          "transcript_support_level": null,
          "aa_start": 936,
          "aa_end": null,
          "aa_length": 985,
          "cds_start": 2806,
          "cds_end": null,
          "cds_length": 2958,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963533.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2803C>T",
          "hgvs_p": "p.Arg935Trp",
          "transcript": "ENST00000918959.1",
          "protein_id": "ENSP00000589018.1",
          "transcript_support_level": null,
          "aa_start": 935,
          "aa_end": null,
          "aa_length": 984,
          "cds_start": 2803,
          "cds_end": null,
          "cds_length": 2955,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918959.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2800C>T",
          "hgvs_p": "p.Arg934Trp",
          "transcript": "ENST00000918950.1",
          "protein_id": "ENSP00000589009.1",
          "transcript_support_level": null,
          "aa_start": 934,
          "aa_end": null,
          "aa_length": 983,
          "cds_start": 2800,
          "cds_end": null,
          "cds_length": 2952,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918950.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2752C>T",
          "hgvs_p": "p.Arg918Trp",
          "transcript": "ENST00000883173.1",
          "protein_id": "ENSP00000553232.1",
          "transcript_support_level": null,
          "aa_start": 918,
          "aa_end": null,
          "aa_length": 967,
          "cds_start": 2752,
          "cds_end": null,
          "cds_length": 2904,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883173.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2743C>T",
          "hgvs_p": "p.Arg915Trp",
          "transcript": "ENST00000883137.1",
          "protein_id": "ENSP00000553196.1",
          "transcript_support_level": null,
          "aa_start": 915,
          "aa_end": null,
          "aa_length": 964,
          "cds_start": 2743,
          "cds_end": null,
          "cds_length": 2895,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883137.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2740C>T",
          "hgvs_p": "p.Arg914Trp",
          "transcript": "ENST00000963550.1",
          "protein_id": "ENSP00000633609.1",
          "transcript_support_level": null,
          "aa_start": 914,
          "aa_end": null,
          "aa_length": 963,
          "cds_start": 2740,
          "cds_end": null,
          "cds_length": 2892,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963550.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2698C>T",
          "hgvs_p": "p.Arg900Trp",
          "transcript": "ENST00000883172.1",
          "protein_id": "ENSP00000553231.1",
          "transcript_support_level": null,
          "aa_start": 900,
          "aa_end": null,
          "aa_length": 949,
          "cds_start": 2698,
          "cds_end": null,
          "cds_length": 2850,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883172.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2692C>T",
          "hgvs_p": "p.Arg898Trp",
          "transcript": "ENST00000883107.1",
          "protein_id": "ENSP00000553166.1",
          "transcript_support_level": null,
          "aa_start": 898,
          "aa_end": null,
          "aa_length": 947,
          "cds_start": 2692,
          "cds_end": null,
          "cds_length": 2844,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883107.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2689C>T",
          "hgvs_p": "p.Arg897Trp",
          "transcript": "ENST00000883138.1",
          "protein_id": "ENSP00000553197.1",
          "transcript_support_level": null,
          "aa_start": 897,
          "aa_end": null,
          "aa_length": 946,
          "cds_start": 2689,
          "cds_end": null,
          "cds_length": 2841,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883138.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2686C>T",
          "hgvs_p": "p.Arg896Trp",
          "transcript": "ENST00000883134.1",
          "protein_id": "ENSP00000553193.1",
          "transcript_support_level": null,
          "aa_start": 896,
          "aa_end": null,
          "aa_length": 945,
          "cds_start": 2686,
          "cds_end": null,
          "cds_length": 2838,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883134.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2683C>T",
          "hgvs_p": "p.Arg895Trp",
          "transcript": "ENST00000424085.6",
          "protein_id": "ENSP00000400141.2",
          "transcript_support_level": 5,
          "aa_start": 895,
          "aa_end": null,
          "aa_length": 944,
          "cds_start": 2683,
          "cds_end": null,
          "cds_length": 2835,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000424085.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2668C>T",
          "hgvs_p": "p.Arg890Trp",
          "transcript": "ENST00000963536.1",
          "protein_id": "ENSP00000633595.1",
          "transcript_support_level": null,
          "aa_start": 890,
          "aa_end": null,
          "aa_length": 939,
          "cds_start": 2668,
          "cds_end": null,
          "cds_length": 2820,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963536.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2659C>T",
          "hgvs_p": "p.Arg887Trp",
          "transcript": "ENST00000963546.1",
          "protein_id": "ENSP00000633605.1",
          "transcript_support_level": null,
          "aa_start": 887,
          "aa_end": null,
          "aa_length": 936,
          "cds_start": 2659,
          "cds_end": null,
          "cds_length": 2811,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963546.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2656C>T",
          "hgvs_p": "p.Arg886Trp",
          "transcript": "ENST00000918967.1",
          "protein_id": "ENSP00000589026.1",
          "transcript_support_level": null,
          "aa_start": 886,
          "aa_end": null,
          "aa_length": 935,
          "cds_start": 2656,
          "cds_end": null,
          "cds_length": 2808,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918967.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2638C>T",
          "hgvs_p": "p.Arg880Trp",
          "transcript": "ENST00000883114.1",
          "protein_id": "ENSP00000553173.1",
          "transcript_support_level": null,
          "aa_start": 880,
          "aa_end": null,
          "aa_length": 929,
          "cds_start": 2638,
          "cds_end": null,
          "cds_length": 2790,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883114.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2623C>T",
          "hgvs_p": "p.Arg875Trp",
          "transcript": "ENST00000918980.1",
          "protein_id": "ENSP00000589039.1",
          "transcript_support_level": null,
          "aa_start": 875,
          "aa_end": null,
          "aa_length": 924,
          "cds_start": 2623,
          "cds_end": null,
          "cds_length": 2775,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918980.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2611C>T",
          "hgvs_p": "p.Arg871Trp",
          "transcript": "ENST00000918968.1",
          "protein_id": "ENSP00000589027.1",
          "transcript_support_level": null,
          "aa_start": 871,
          "aa_end": null,
          "aa_length": 920,
          "cds_start": 2611,
          "cds_end": null,
          "cds_length": 2763,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918968.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2608C>T",
          "hgvs_p": "p.Arg870Trp",
          "transcript": "ENST00000918977.1",
          "protein_id": "ENSP00000589036.1",
          "transcript_support_level": null,
          "aa_start": 870,
          "aa_end": null,
          "aa_length": 919,
          "cds_start": 2608,
          "cds_end": null,
          "cds_length": 2760,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918977.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2605C>T",
          "hgvs_p": "p.Arg869Trp",
          "transcript": "ENST00000918961.1",
          "protein_id": "ENSP00000589020.1",
          "transcript_support_level": null,
          "aa_start": 869,
          "aa_end": null,
          "aa_length": 918,
          "cds_start": 2605,
          "cds_end": null,
          "cds_length": 2757,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918961.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2605C>T",
          "hgvs_p": "p.Arg869Trp",
          "transcript": "ENST00000918970.1",
          "protein_id": "ENSP00000589029.1",
          "transcript_support_level": null,
          "aa_start": 869,
          "aa_end": null,
          "aa_length": 918,
          "cds_start": 2605,
          "cds_end": null,
          "cds_length": 2757,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918970.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2602C>T",
          "hgvs_p": "p.Arg868Trp",
          "transcript": "ENST00000918957.1",
          "protein_id": "ENSP00000589016.1",
          "transcript_support_level": null,
          "aa_start": 868,
          "aa_end": null,
          "aa_length": 917,
          "cds_start": 2602,
          "cds_end": null,
          "cds_length": 2754,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918957.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2581C>T",
          "hgvs_p": "p.Arg861Trp",
          "transcript": "ENST00000918956.1",
          "protein_id": "ENSP00000589015.1",
          "transcript_support_level": null,
          "aa_start": 861,
          "aa_end": null,
          "aa_length": 910,
          "cds_start": 2581,
          "cds_end": null,
          "cds_length": 2733,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918956.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2554C>T",
          "hgvs_p": "p.Arg852Trp",
          "transcript": "ENST00000963558.1",
          "protein_id": "ENSP00000633617.1",
          "transcript_support_level": null,
          "aa_start": 852,
          "aa_end": null,
          "aa_length": 901,
          "cds_start": 2554,
          "cds_end": null,
          "cds_length": 2706,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963558.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2548C>T",
          "hgvs_p": "p.Arg850Trp",
          "transcript": "ENST00000498419.5",
          "protein_id": "ENSP00000433850.1",
          "transcript_support_level": 5,
          "aa_start": 850,
          "aa_end": null,
          "aa_length": 899,
          "cds_start": 2548,
          "cds_end": null,
          "cds_length": 2700,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000498419.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2461C>T",
          "hgvs_p": "p.Arg821Trp",
          "transcript": "ENST00000918982.1",
          "protein_id": "ENSP00000589041.1",
          "transcript_support_level": null,
          "aa_start": 821,
          "aa_end": null,
          "aa_length": 870,
          "cds_start": 2461,
          "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": "ENST00000918982.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2455C>T",
          "hgvs_p": "p.Arg819Trp",
          "transcript": "ENST00000883096.1",
          "protein_id": "ENSP00000553155.1",
          "transcript_support_level": null,
          "aa_start": 819,
          "aa_end": null,
          "aa_length": 868,
          "cds_start": 2455,
          "cds_end": null,
          "cds_length": 2607,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883096.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2452C>T",
          "hgvs_p": "p.Arg818Trp",
          "transcript": "ENST00000918975.1",
          "protein_id": "ENSP00000589034.1",
          "transcript_support_level": null,
          "aa_start": 818,
          "aa_end": null,
          "aa_length": 867,
          "cds_start": 2452,
          "cds_end": null,
          "cds_length": 2604,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918975.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2449C>T",
          "hgvs_p": "p.Arg817Trp",
          "transcript": "ENST00000883132.1",
          "protein_id": "ENSP00000553191.1",
          "transcript_support_level": null,
          "aa_start": 817,
          "aa_end": null,
          "aa_length": 866,
          "cds_start": 2449,
          "cds_end": null,
          "cds_length": 2601,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883132.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2446C>T",
          "hgvs_p": "p.Arg816Trp",
          "transcript": "ENST00000963549.1",
          "protein_id": "ENSP00000633608.1",
          "transcript_support_level": null,
          "aa_start": 816,
          "aa_end": null,
          "aa_length": 865,
          "cds_start": 2446,
          "cds_end": null,
          "cds_length": 2598,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963549.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2431C>T",
          "hgvs_p": "p.Arg811Trp",
          "transcript": "ENST00000883095.1",
          "protein_id": "ENSP00000553154.1",
          "transcript_support_level": null,
          "aa_start": 811,
          "aa_end": null,
          "aa_length": 860,
          "cds_start": 2431,
          "cds_end": null,
          "cds_length": 2583,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883095.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2350C>T",
          "hgvs_p": "p.Arg784Trp",
          "transcript": "ENST00000963531.1",
          "protein_id": "ENSP00000633590.1",
          "transcript_support_level": null,
          "aa_start": 784,
          "aa_end": null,
          "aa_length": 833,
          "cds_start": 2350,
          "cds_end": null,
          "cds_length": 2502,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963531.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.2350C>T",
          "hgvs_p": "p.Arg784Trp",
          "transcript": "ENST00000963548.1",
          "protein_id": "ENSP00000633607.1",
          "transcript_support_level": null,
          "aa_start": 784,
          "aa_end": null,
          "aa_length": 833,
          "cds_start": 2350,
          "cds_end": null,
          "cds_length": 2502,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000963548.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "n.*293C>T",
          "hgvs_p": null,
          "transcript": "ENST00000530669.1",
          "protein_id": "ENSP00000434096.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000530669.1"
        },
        {
          "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": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000307336",
          "gene_hgnc_id": null,
          "hgvs_c": "n.179G>A",
          "hgvs_p": null,
          "transcript": "ENST00000825160.1",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000825160.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000307336",
          "gene_hgnc_id": null,
          "hgvs_c": "n.155G>A",
          "hgvs_p": null,
          "transcript": "ENST00000825161.1",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000825161.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "n.*293C>T",
          "hgvs_p": null,
          "transcript": "ENST00000530669.1",
          "protein_id": "ENSP00000434096.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000530669.1"
        },
        {
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.*59C>T",
          "hgvs_p": null,
          "transcript": "ENST00000529846.5",
          "protein_id": "ENSP00000431213.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 226,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 683,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000529846.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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PUM1",
          "gene_hgnc_id": 14957,
          "hgvs_c": "c.*61C>T",
          "hgvs_p": null,
          "transcript": "ENST00000525997.1",
          "protein_id": "ENSP00000433373.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 215,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 648,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000525997.1"
        }
      ],
      "gene_symbol": "PUM1",
      "gene_hgnc_id": 14957,
      "dbsnp": "rs1557541619",
      "frequency_reference_population": 0.0000013683897,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 2,
      "gnomad_exomes_af": 0.00000136839,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 2,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.8505843281745911,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.552,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.9937,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.1,
      "bayesdelnoaf_prediction": "Uncertain_significance",
      "phylop100way_score": 3.382,
      "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": 10,
      "acmg_classification": "Pathogenic",
      "acmg_criteria": "PS3,PM2,PP3_Moderate,PP5_Moderate",
      "acmg_by_gene": [
        {
          "score": 10,
          "benign_score": 0,
          "pathogenic_score": 10,
          "criteria": [
            "PS3",
            "PM2",
            "PP3_Moderate",
            "PP5_Moderate"
          ],
          "verdict": "Pathogenic",
          "transcript": "NM_001020658.2",
          "gene_symbol": "PUM1",
          "hgnc_id": 14957,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.3415C>T",
          "hgvs_p": "p.Arg1139Trp"
        },
        {
          "score": 10,
          "benign_score": 0,
          "pathogenic_score": 10,
          "criteria": [
            "PS3",
            "PM2",
            "PP3_Moderate",
            "PP5_Moderate"
          ],
          "verdict": "Pathogenic",
          "transcript": "ENST00000825160.1",
          "gene_symbol": "ENSG00000307336",
          "hgnc_id": null,
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.179G>A",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "PUM1-associated developmental disability-ataxia-seizure syndrome,Spinocerebellar ataxia 47",
      "clinvar_classification": "Likely pathogenic",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "LP:1",
      "phenotype_combined": "Spinocerebellar ataxia 47|PUM1-associated developmental disability-ataxia-seizure syndrome",
      "pathogenicity_classification_combined": "Likely pathogenic",
      "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.