← 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: 6-83182915-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "6",
      "pos": 83182915,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001199917.2",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "NM_015599.3",
          "protein_id": "NP_056414.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000513973.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_015599.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000513973.6",
          "protein_id": "ENSP00000424874.1",
          "transcript_support_level": 1,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_015599.3",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000513973.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000512866.5",
          "protein_id": "ENSP00000421565.1",
          "transcript_support_level": 1,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 566,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000512866.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "ENST00000283977.9",
          "protein_id": "ENSP00000283977.5",
          "transcript_support_level": 5,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 441,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1326,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000283977.9"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.605G>A",
          "hgvs_p": "p.Arg202Gln",
          "transcript": "NM_001199917.2",
          "protein_id": "NP_001186846.1",
          "transcript_support_level": null,
          "aa_start": 202,
          "aa_end": null,
          "aa_length": 570,
          "cds_start": 605,
          "cds_end": null,
          "cds_length": 1713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001199917.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.605G>A",
          "hgvs_p": "p.Arg202Gln",
          "transcript": "NM_001367287.1",
          "protein_id": "NP_001354216.1",
          "transcript_support_level": null,
          "aa_start": 202,
          "aa_end": null,
          "aa_length": 570,
          "cds_start": 605,
          "cds_end": null,
          "cds_length": 1713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001367287.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.605G>A",
          "hgvs_p": "p.Arg202Gln",
          "transcript": "ENST00000506587.5",
          "protein_id": "ENSP00000425809.1",
          "transcript_support_level": 2,
          "aa_start": 202,
          "aa_end": null,
          "aa_length": 570,
          "cds_start": 605,
          "cds_end": null,
          "cds_length": 1713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000506587.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.605G>A",
          "hgvs_p": "p.Arg202Gln",
          "transcript": "ENST00000508748.6",
          "protein_id": "ENSP00000424865.2",
          "transcript_support_level": 5,
          "aa_start": 202,
          "aa_end": null,
          "aa_length": 570,
          "cds_start": 605,
          "cds_end": null,
          "cds_length": 1713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000508748.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "NM_001199919.2",
          "protein_id": "NP_001186848.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 566,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001199919.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000509219.2",
          "protein_id": "ENSP00000423389.2",
          "transcript_support_level": 5,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 566,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000509219.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000652468.1",
          "protein_id": "ENSP00000499112.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 566,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000652468.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925376.1",
          "protein_id": "ENSP00000595435.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 566,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925376.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000507554.2",
          "protein_id": "ENSP00000425558.2",
          "transcript_support_level": 4,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000507554.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925371.1",
          "protein_id": "ENSP00000595430.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925371.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925372.1",
          "protein_id": "ENSP00000595431.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925372.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925377.1",
          "protein_id": "ENSP00000595436.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925377.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000941524.1",
          "protein_id": "ENSP00000611583.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941524.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000941528.1",
          "protein_id": "ENSP00000611587.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941528.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000941531.1",
          "protein_id": "ENSP00000611590.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 542,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1629,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941531.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.515G>A",
          "hgvs_p": "p.Arg172Gln",
          "transcript": "ENST00000941527.1",
          "protein_id": "ENSP00000611586.1",
          "transcript_support_level": null,
          "aa_start": 172,
          "aa_end": null,
          "aa_length": 540,
          "cds_start": 515,
          "cds_end": null,
          "cds_length": 1623,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941527.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000941529.1",
          "protein_id": "ENSP00000611588.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 540,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1623,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941529.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.512G>A",
          "hgvs_p": "p.Arg171Gln",
          "transcript": "ENST00000925375.1",
          "protein_id": "ENSP00000595434.1",
          "transcript_support_level": null,
          "aa_start": 171,
          "aa_end": null,
          "aa_length": 539,
          "cds_start": 512,
          "cds_end": null,
          "cds_length": 1620,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925375.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000698526.1",
          "protein_id": "ENSP00000513775.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 527,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1584,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698526.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925380.1",
          "protein_id": "ENSP00000595439.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 527,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1584,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925380.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000941530.1",
          "protein_id": "ENSP00000611589.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 525,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1578,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941530.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925379.1",
          "protein_id": "ENSP00000595438.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 514,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1545,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925379.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000652222.2",
          "protein_id": "ENSP00000499141.2",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 509,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1530,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000652222.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "NM_001367286.1",
          "protein_id": "NP_001354215.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 501,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001367286.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000650642.1",
          "protein_id": "ENSP00000498516.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 501,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000650642.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000941526.1",
          "protein_id": "ENSP00000611585.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 501,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941526.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000698613.1",
          "protein_id": "ENSP00000513839.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 494,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1485,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698613.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "ENST00000651425.1",
          "protein_id": "ENSP00000498986.1",
          "transcript_support_level": null,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000651425.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "ENST00000698610.1",
          "protein_id": "ENSP00000513837.1",
          "transcript_support_level": null,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698610.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "NM_001199918.2",
          "protein_id": "NP_001186847.1",
          "transcript_support_level": null,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 441,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1326,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001199918.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925374.1",
          "protein_id": "ENSP00000595433.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 436,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1311,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925374.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "ENST00000698608.1",
          "protein_id": "ENSP00000513835.1",
          "transcript_support_level": null,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 428,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1287,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698608.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "ENST00000616566.5",
          "protein_id": "ENSP00000477539.2",
          "transcript_support_level": 2,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 420,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1263,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000616566.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000925378.1",
          "protein_id": "ENSP00000595437.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 408,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1227,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925378.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000698612.1",
          "protein_id": "ENSP00000513838.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 396,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1191,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698612.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000879095.1",
          "protein_id": "ENSP00000549154.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 363,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1092,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879095.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "ENST00000879094.1",
          "protein_id": "ENSP00000549153.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 322,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 969,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879094.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "ENST00000510258.1",
          "protein_id": "ENSP00000427420.1",
          "transcript_support_level": 3,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 171,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 518,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000510258.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "XM_047418876.1",
          "protein_id": "XP_047274832.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 566,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047418876.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.521G>A",
          "hgvs_p": "p.Arg174Gln",
          "transcript": "XM_047418877.1",
          "protein_id": "XP_047274833.1",
          "transcript_support_level": null,
          "aa_start": 174,
          "aa_end": null,
          "aa_length": 501,
          "cds_start": 521,
          "cds_end": null,
          "cds_length": 1506,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047418877.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "XM_017010935.2",
          "protein_id": "XP_016866424.1",
          "transcript_support_level": null,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 485,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1458,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017010935.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.278G>A",
          "hgvs_p": "p.Arg93Gln",
          "transcript": "XM_017010937.2",
          "protein_id": "XP_016866426.1",
          "transcript_support_level": null,
          "aa_start": 93,
          "aa_end": null,
          "aa_length": 444,
          "cds_start": 278,
          "cds_end": null,
          "cds_length": 1335,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017010937.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.458-2948G>A",
          "hgvs_p": null,
          "transcript": "ENST00000925373.1",
          "protein_id": "ENSP00000595432.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 432,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1299,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000925373.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.205-6855G>A",
          "hgvs_p": null,
          "transcript": "ENST00000941525.1",
          "protein_id": "ENSP00000611584.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 267,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 804,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941525.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "c.204+7894G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698525.1",
          "protein_id": "ENSP00000513774.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 219,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 660,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000698525.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000504780.6",
          "protein_id": "ENSP00000421154.2",
          "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": "ENST00000504780.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000505470.6",
          "protein_id": "ENSP00000423769.1",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000505470.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000650640.1",
          "protein_id": "ENSP00000498423.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000650640.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000651204.2",
          "protein_id": "ENSP00000498912.2",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000651204.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000651698.2",
          "protein_id": "ENSP00000498398.2",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000651698.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698524.1",
          "protein_id": "ENSP00000513773.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698524.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698599.1",
          "protein_id": "ENSP00000513827.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698599.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698600.1",
          "protein_id": "ENSP00000513828.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698600.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*100G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698601.1",
          "protein_id": "ENSP00000513829.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698601.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698602.1",
          "protein_id": "ENSP00000513830.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698602.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698603.1",
          "protein_id": "ENSP00000513831.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698603.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698604.1",
          "protein_id": "ENSP00000513832.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698604.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698605.1",
          "protein_id": "ENSP00000513833.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698605.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": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.2612G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698606.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": "retained_intron",
          "feature": "ENST00000698606.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698607.1",
          "protein_id": "ENSP00000513834.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698607.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698609.1",
          "protein_id": "ENSP00000513836.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698609.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.4158G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698611.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": "retained_intron",
          "feature": "ENST00000698611.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698614.1",
          "protein_id": "ENSP00000513840.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698614.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": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*120G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698615.1",
          "protein_id": "ENSP00000513841.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698615.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.610G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698616.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": "retained_intron",
          "feature": "ENST00000698616.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.747G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698617.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": "retained_intron",
          "feature": "ENST00000698617.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698618.1",
          "protein_id": "ENSP00000513842.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698618.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.610G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698619.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": "retained_intron",
          "feature": "ENST00000698619.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.521G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698620.1",
          "protein_id": "ENSP00000513843.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698620.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.610G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698621.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": "retained_intron",
          "feature": "ENST00000698621.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.610G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698622.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": "retained_intron",
          "feature": "ENST00000698622.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": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.2138G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698623.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": "retained_intron",
          "feature": "ENST00000698623.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.610G>A",
          "hgvs_p": null,
          "transcript": "NR_159812.2",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "NR_159812.2"
        },
        {
          "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": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.404G>A",
          "hgvs_p": null,
          "transcript": "XR_001743468.3",
          "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": "XR_001743468.3"
        },
        {
          "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": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.404G>A",
          "hgvs_p": null,
          "transcript": "XR_007059270.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": "XR_007059270.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.601G>A",
          "hgvs_p": null,
          "transcript": "XR_007059271.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": "XR_007059271.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.601G>A",
          "hgvs_p": null,
          "transcript": "XR_007059272.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": "XR_007059272.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.610G>A",
          "hgvs_p": null,
          "transcript": "XR_007059273.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": "XR_007059273.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": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.404G>A",
          "hgvs_p": null,
          "transcript": "XR_942480.3",
          "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": "XR_942480.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000505470.6",
          "protein_id": "ENSP00000423769.1",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000505470.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*100G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698601.1",
          "protein_id": "ENSP00000513829.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698601.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698603.1",
          "protein_id": "ENSP00000513831.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698603.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698604.1",
          "protein_id": "ENSP00000513832.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698604.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698605.1",
          "protein_id": "ENSP00000513833.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698605.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": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*120G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698615.1",
          "protein_id": "ENSP00000513841.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698615.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PGM3",
          "gene_hgnc_id": 8907,
          "hgvs_c": "n.*301G>A",
          "hgvs_p": null,
          "transcript": "ENST00000698618.1",
          "protein_id": "ENSP00000513842.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000698618.1"
        }
      ],
      "gene_symbol": "PGM3",
      "gene_hgnc_id": 8907,
      "dbsnp": "rs73749732",
      "frequency_reference_population": 0.000011154158,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 18,
      "gnomad_exomes_af": 0.00000957868,
      "gnomad_genomes_af": 0.0000262867,
      "gnomad_exomes_ac": 14,
      "gnomad_genomes_ac": 4,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.06055012345314026,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.023,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0575,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.5,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.367,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": -2,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "PM2,BP4_Strong",
      "acmg_by_gene": [
        {
          "score": -2,
          "benign_score": 4,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Strong"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001199917.2",
          "gene_symbol": "PGM3",
          "hgnc_id": 8907,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.605G>A",
          "hgvs_p": "p.Arg202Gln"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}