← 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: 2-144007362-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "2",
      "pos": 144007362,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001376306.2",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376312.2",
          "protein_id": "NP_001363241.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000682281.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376312.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000682281.1",
          "protein_id": "ENSP00000507713.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001376312.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000682281.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000409214.5",
          "protein_id": "ENSP00000386581.1",
          "transcript_support_level": 1,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000409214.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": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.308G>A",
          "hgvs_p": "p.Arg103Gln",
          "transcript": "ENST00000463875.6",
          "protein_id": "ENSP00000437964.1",
          "transcript_support_level": 1,
          "aa_start": 103,
          "aa_end": null,
          "aa_length": 329,
          "cds_start": 308,
          "cds_end": null,
          "cds_length": 990,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000463875.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "NM_001376306.2",
          "protein_id": "NP_001363235.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 507,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376306.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "ENST00000909690.1",
          "protein_id": "ENSP00000579749.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 507,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909690.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "ENST00000909705.1",
          "protein_id": "ENSP00000579764.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 507,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909705.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "ENST00000970683.1",
          "protein_id": "ENSP00000640742.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 507,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970683.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "ENST00000970685.1",
          "protein_id": "ENSP00000640744.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 507,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970685.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001006636.5",
          "protein_id": "NP_001006637.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001006636.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001164629.5",
          "protein_id": "NP_001158101.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001164629.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001354354.2",
          "protein_id": "NP_001341283.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354354.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001354361.1",
          "protein_id": "NP_001341290.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354361.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376307.2",
          "protein_id": "NP_001363236.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376307.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376308.2",
          "protein_id": "NP_001363237.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376308.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376309.2",
          "protein_id": "NP_001363238.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376309.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376310.2",
          "protein_id": "NP_001363239.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376310.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376311.2",
          "protein_id": "NP_001363240.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376311.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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376313.2",
          "protein_id": "NP_001363242.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376313.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376314.2",
          "protein_id": "NP_001363243.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376314.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376315.2",
          "protein_id": "NP_001363244.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376315.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000344850.8",
          "protein_id": "ENSP00000339750.4",
          "transcript_support_level": 5,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000344850.8"
        },
        {
          "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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000392869.6",
          "protein_id": "ENSP00000376608.1",
          "transcript_support_level": 5,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000392869.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000542155.5",
          "protein_id": "ENSP00000438323.1",
          "transcript_support_level": 2,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000542155.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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909684.1",
          "protein_id": "ENSP00000579743.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909684.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909686.1",
          "protein_id": "ENSP00000579745.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909686.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909694.1",
          "protein_id": "ENSP00000579753.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909694.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909696.1",
          "protein_id": "ENSP00000579755.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909696.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909697.1",
          "protein_id": "ENSP00000579756.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909697.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909700.1",
          "protein_id": "ENSP00000579759.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909700.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909701.1",
          "protein_id": "ENSP00000579760.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909701.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909703.1",
          "protein_id": "ENSP00000579762.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909703.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909704.1",
          "protein_id": "ENSP00000579763.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909704.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909706.1",
          "protein_id": "ENSP00000579765.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909706.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909707.1",
          "protein_id": "ENSP00000579766.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909707.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909708.1",
          "protein_id": "ENSP00000579767.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909708.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909710.1",
          "protein_id": "ENSP00000579769.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909710.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000927177.1",
          "protein_id": "ENSP00000597236.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000927177.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970677.1",
          "protein_id": "ENSP00000640736.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970677.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970686.1",
          "protein_id": "ENSP00000640745.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970686.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970687.1",
          "protein_id": "ENSP00000640746.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970687.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970689.1",
          "protein_id": "ENSP00000640748.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970689.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970690.1",
          "protein_id": "ENSP00000640749.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970690.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970691.1",
          "protein_id": "ENSP00000640750.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970691.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970693.1",
          "protein_id": "ENSP00000640752.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970693.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970694.1",
          "protein_id": "ENSP00000640753.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 458,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1377,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970694.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376316.2",
          "protein_id": "NP_001363245.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 457,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1374,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376316.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909702.1",
          "protein_id": "ENSP00000579761.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 457,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1374,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909702.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970682.1",
          "protein_id": "ENSP00000640741.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 454,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1365,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970682.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.599G>A",
          "hgvs_p": "p.Arg200Gln",
          "transcript": "NM_001284238.3",
          "protein_id": "NP_001271167.1",
          "transcript_support_level": null,
          "aa_start": 200,
          "aa_end": null,
          "aa_length": 426,
          "cds_start": 599,
          "cds_end": null,
          "cds_length": 1281,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001284238.3"
        },
        {
          "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": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.599G>A",
          "hgvs_p": "p.Arg200Gln",
          "transcript": "ENST00000618778.4",
          "protein_id": "ENSP00000484990.1",
          "transcript_support_level": 5,
          "aa_start": 200,
          "aa_end": null,
          "aa_length": 426,
          "cds_start": 599,
          "cds_end": null,
          "cds_length": 1281,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000618778.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "NM_001376317.2",
          "protein_id": "NP_001363246.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 425,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1278,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376317.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "ENST00000909689.1",
          "protein_id": "ENSP00000579748.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 422,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1269,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909689.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909692.1",
          "protein_id": "ENSP00000579751.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 386,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1161,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909692.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970695.1",
          "protein_id": "ENSP00000640754.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 386,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1161,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970695.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001284233.4",
          "protein_id": "NP_001271162.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001284233.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001354360.2",
          "protein_id": "NP_001341289.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354360.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376318.2",
          "protein_id": "NP_001363247.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376318.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376319.2",
          "protein_id": "NP_001363248.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376319.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": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000241391.9",
          "protein_id": "ENSP00000241391.6",
          "transcript_support_level": 2,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000241391.9"
        },
        {
          "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": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000392871.6",
          "protein_id": "ENSP00000376610.2",
          "transcript_support_level": 2,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 376,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1131,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000392871.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376320.2",
          "protein_id": "NP_001363249.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376320.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376321.2",
          "protein_id": "NP_001363250.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376321.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376322.2",
          "protein_id": "NP_001363251.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376322.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376323.2",
          "protein_id": "NP_001363252.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376323.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376324.2",
          "protein_id": "NP_001363253.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376324.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_024659.6",
          "protein_id": "NP_078935.2",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_024659.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000392867.7",
          "protein_id": "ENSP00000376606.3",
          "transcript_support_level": 5,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000392867.7"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909683.1",
          "protein_id": "ENSP00000579742.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909683.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909693.1",
          "protein_id": "ENSP00000579752.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909693.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": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909695.1",
          "protein_id": "ENSP00000579754.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909695.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909698.1",
          "protein_id": "ENSP00000579757.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909698.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000909711.1",
          "protein_id": "ENSP00000579770.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909711.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970678.1",
          "protein_id": "ENSP00000640737.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970678.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "ENST00000970684.1",
          "protein_id": "ENSP00000640743.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 373,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 1122,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970684.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": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.308G>A",
          "hgvs_p": "p.Arg103Gln",
          "transcript": "NM_001284234.3",
          "protein_id": "NP_001271163.1",
          "transcript_support_level": null,
          "aa_start": 103,
          "aa_end": null,
          "aa_length": 329,
          "cds_start": 308,
          "cds_end": null,
          "cds_length": 990,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001284234.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.308G>A",
          "hgvs_p": "p.Arg103Gln",
          "transcript": "NM_001354351.2",
          "protein_id": "NP_001341280.1",
          "transcript_support_level": null,
          "aa_start": 103,
          "aa_end": null,
          "aa_length": 329,
          "cds_start": 308,
          "cds_end": null,
          "cds_length": 990,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354351.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.239G>A",
          "hgvs_p": "p.Arg80Gln",
          "transcript": "NM_001354350.2",
          "protein_id": "NP_001341279.1",
          "transcript_support_level": null,
          "aa_start": 80,
          "aa_end": null,
          "aa_length": 306,
          "cds_start": 239,
          "cds_end": null,
          "cds_length": 921,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354350.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.239G>A",
          "hgvs_p": "p.Arg80Gln",
          "transcript": "NM_001354355.3",
          "protein_id": "NP_001341284.1",
          "transcript_support_level": null,
          "aa_start": 80,
          "aa_end": null,
          "aa_length": 306,
          "cds_start": 239,
          "cds_end": null,
          "cds_length": 921,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354355.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.239G>A",
          "hgvs_p": "p.Arg80Gln",
          "transcript": "NM_001376329.2",
          "protein_id": "NP_001363258.1",
          "transcript_support_level": null,
          "aa_start": 80,
          "aa_end": null,
          "aa_length": 306,
          "cds_start": 239,
          "cds_end": null,
          "cds_length": 921,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376329.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001284235.2",
          "protein_id": "NP_001271164.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 292,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 879,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001284235.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001354356.2",
          "protein_id": "NP_001341285.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 292,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 879,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354356.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001354358.1",
          "protein_id": "NP_001341287.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 292,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 879,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354358.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln",
          "transcript": "NM_001376330.1",
          "protein_id": "NP_001363259.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 292,
          "cds_start": 695,
          "cds_end": null,
          "cds_length": 879,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376330.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.869G>A",
          "hgvs_p": "p.Arg290Gln",
          "transcript": "XM_047445841.1",
          "protein_id": "XP_047301797.1",
          "transcript_support_level": null,
          "aa_start": 290,
          "aa_end": null,
          "aa_length": 516,
          "cds_start": 869,
          "cds_end": null,
          "cds_length": 1551,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445841.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.869G>A",
          "hgvs_p": "p.Arg290Gln",
          "transcript": "XM_047445842.1",
          "protein_id": "XP_047301798.1",
          "transcript_support_level": null,
          "aa_start": 290,
          "aa_end": null,
          "aa_length": 516,
          "cds_start": 869,
          "cds_end": null,
          "cds_length": 1551,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445842.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.869G>A",
          "hgvs_p": "p.Arg290Gln",
          "transcript": "XM_047445843.1",
          "protein_id": "XP_047301799.1",
          "transcript_support_level": null,
          "aa_start": 290,
          "aa_end": null,
          "aa_length": 516,
          "cds_start": 869,
          "cds_end": null,
          "cds_length": 1551,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445843.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.869G>A",
          "hgvs_p": "p.Arg290Gln",
          "transcript": "XM_047445844.1",
          "protein_id": "XP_047301800.1",
          "transcript_support_level": null,
          "aa_start": 290,
          "aa_end": null,
          "aa_length": 516,
          "cds_start": 869,
          "cds_end": null,
          "cds_length": 1551,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445844.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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln",
          "transcript": "XM_011511855.4",
          "protein_id": "XP_011510157.1",
          "transcript_support_level": null,
          "aa_start": 281,
          "aa_end": null,
          "aa_length": 507,
          "cds_start": 842,
          "cds_end": null,
          "cds_length": 1524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011511855.4"
        },
        {
          "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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.746G>A",
          "hgvs_p": "p.Arg249Gln",
          "transcript": "XM_011511856.4",
          "protein_id": "XP_011510158.1",
          "transcript_support_level": null,
          "aa_start": 249,
          "aa_end": null,
          "aa_length": 475,
          "cds_start": 746,
          "cds_end": null,
          "cds_length": 1428,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011511856.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.746G>A",
          "hgvs_p": "p.Arg249Gln",
          "transcript": "XM_024453145.2",
          "protein_id": "XP_024308913.1",
          "transcript_support_level": null,
          "aa_start": 249,
          "aa_end": null,
          "aa_length": 475,
          "cds_start": 746,
          "cds_end": null,
          "cds_length": 1428,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024453145.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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.746G>A",
          "hgvs_p": "p.Arg249Gln",
          "transcript": "XM_047445845.1",
          "protein_id": "XP_047301801.1",
          "transcript_support_level": null,
          "aa_start": 249,
          "aa_end": null,
          "aa_length": 475,
          "cds_start": 746,
          "cds_end": null,
          "cds_length": 1428,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445845.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": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.455G>A",
          "hgvs_p": "p.Arg152Gln",
          "transcript": "XM_047445846.1",
          "protein_id": "XP_047301802.1",
          "transcript_support_level": null,
          "aa_start": 152,
          "aa_end": null,
          "aa_length": 378,
          "cds_start": 455,
          "cds_end": null,
          "cds_length": 1137,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445846.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "Q",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.179G>A",
          "hgvs_p": "p.Arg60Gln",
          "transcript": "XM_047445847.1",
          "protein_id": "XP_047301803.1",
          "transcript_support_level": null,
          "aa_start": 60,
          "aa_end": null,
          "aa_length": 286,
          "cds_start": 179,
          "cds_end": null,
          "cds_length": 861,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445847.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": 14,
          "intron_rank": 9,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001354352.2",
          "protein_id": "NP_001341281.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354352.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": 6,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001354362.3",
          "protein_id": "NP_001341291.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354362.3"
        },
        {
          "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": 10,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001376325.2",
          "protein_id": "NP_001363254.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376325.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": 12,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001376326.2",
          "protein_id": "NP_001363255.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376326.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": 6,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001376327.2",
          "protein_id": "NP_001363256.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376327.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": 6,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001376328.1",
          "protein_id": "NP_001363257.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376328.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": 10,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000409298.5",
          "protein_id": "ENSP00000386691.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000409298.5"
        },
        {
          "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": 13,
          "intron_rank": 8,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000909688.1",
          "protein_id": "ENSP00000579747.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909688.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": 12,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000909709.1",
          "protein_id": "ENSP00000579768.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909709.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": 10,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000970679.1",
          "protein_id": "ENSP00000640738.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970679.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": 10,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000970688.1",
          "protein_id": "ENSP00000640747.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 340,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1023,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970688.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": 11,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000970681.1",
          "protein_id": "ENSP00000640740.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 309,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 930,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970681.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": 10,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001354353.2",
          "protein_id": "NP_001341282.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 268,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 807,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001354353.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": 9,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000909687.1",
          "protein_id": "ENSP00000579746.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 268,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 807,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909687.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": 9,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "ENST00000970692.1",
          "protein_id": "ENSP00000640751.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 268,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 807,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970692.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": 10,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-36600G>A",
          "hgvs_p": null,
          "transcript": "NM_001376331.2",
          "protein_id": "NP_001363260.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 258,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 777,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376331.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": 9,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-54519G>A",
          "hgvs_p": null,
          "transcript": "NM_001376332.2",
          "protein_id": "NP_001363261.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 255,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001376332.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": 10,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-54519G>A",
          "hgvs_p": null,
          "transcript": "ENST00000909685.1",
          "protein_id": "ENSP00000579744.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 255,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909685.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": 10,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-54519G>A",
          "hgvs_p": null,
          "transcript": "ENST00000909691.1",
          "protein_id": "ENSP00000579750.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 255,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909691.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": 9,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-54519G>A",
          "hgvs_p": null,
          "transcript": "ENST00000909699.1",
          "protein_id": "ENSP00000579758.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 255,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000909699.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": 11,
          "intron_rank": 8,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "c.522-54519G>A",
          "hgvs_p": null,
          "transcript": "ENST00000970680.1",
          "protein_id": "ENSP00000640739.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 255,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 768,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000970680.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.*726G>A",
          "hgvs_p": null,
          "transcript": "ENST00000415569.5",
          "protein_id": "ENSP00000401137.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000415569.5"
        },
        {
          "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": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.542G>A",
          "hgvs_p": null,
          "transcript": "ENST00000476958.5",
          "protein_id": null,
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000476958.5"
        },
        {
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.845G>A",
          "hgvs_p": null,
          "transcript": "ENST00000491448.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000491448.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.928G>A",
          "hgvs_p": null,
          "transcript": "NR_148872.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_148872.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.1154G>A",
          "hgvs_p": null,
          "transcript": "NR_164799.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_164799.2"
        },
        {
          "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": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.979G>A",
          "hgvs_p": null,
          "transcript": "NR_164800.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_164800.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.919G>A",
          "hgvs_p": null,
          "transcript": "NR_164801.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_164801.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.1036G>A",
          "hgvs_p": null,
          "transcript": "NR_164802.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_164802.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.1036G>A",
          "hgvs_p": null,
          "transcript": "NR_164803.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_164803.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.919G>A",
          "hgvs_p": null,
          "transcript": "NR_164804.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_164804.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.1036G>A",
          "hgvs_p": null,
          "transcript": "NR_164805.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_164805.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.1000G>A",
          "hgvs_p": null,
          "transcript": "NR_164806.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_164806.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.1668G>A",
          "hgvs_p": null,
          "transcript": "NR_164809.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_164809.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GTDC1",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.*726G>A",
          "hgvs_p": null,
          "transcript": "ENST00000415569.5",
          "protein_id": "ENSP00000401137.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000415569.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.863-36600G>A",
          "hgvs_p": null,
          "transcript": "NR_164807.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_164807.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": 7,
          "intron_rank_end": null,
          "gene_symbol": "QTMAN",
          "gene_hgnc_id": 20887,
          "hgvs_c": "n.890-36600G>A",
          "hgvs_p": null,
          "transcript": "NR_164808.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_164808.2"
        }
      ],
      "gene_symbol": "QTMAN",
      "gene_hgnc_id": 20887,
      "dbsnp": "rs762033509",
      "frequency_reference_population": 0.000033477827,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 54,
      "gnomad_exomes_af": 0.0000349064,
      "gnomad_genomes_af": 0.0000197423,
      "gnomad_exomes_ac": 51,
      "gnomad_genomes_ac": 3,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.048542797565460205,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.024,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0617,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.61,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.57,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": -10,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Moderate,BS2",
      "acmg_by_gene": [
        {
          "score": -10,
          "benign_score": 10,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Moderate",
            "BS2"
          ],
          "verdict": "Benign",
          "transcript": "NM_001376306.2",
          "gene_symbol": "QTMAN",
          "hgnc_id": 20887,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.842G>A",
          "hgvs_p": "p.Arg281Gln"
        },
        {
          "score": -10,
          "benign_score": 10,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Moderate",
            "BS2"
          ],
          "verdict": "Benign",
          "transcript": "ENST00000409214.5",
          "gene_symbol": "GTDC1",
          "hgnc_id": 20887,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.695G>A",
          "hgvs_p": "p.Arg232Gln"
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Likely benign",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "LB:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Likely benign",
      "custom_annotations": null
    }
  ],
  "message": null
}