← 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: 22-24611208-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "22",
      "pos": 24611208,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_013421.3",
      "consequences": [
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "NM_001288833.2",
          "protein_id": "NP_001275762.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000400382.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001288833.2"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000400382.6",
          "protein_id": "ENSP00000383232.1",
          "transcript_support_level": 2,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001288833.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000400382.6"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000400380.5",
          "protein_id": "ENSP00000383231.1",
          "transcript_support_level": 1,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000400380.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": true,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000286070",
          "gene_hgnc_id": null,
          "hgvs_c": "n.*617G>A",
          "hgvs_p": null,
          "transcript": "ENST00000652248.1",
          "protein_id": "ENSP00000499210.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000652248.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": true,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000286070",
          "gene_hgnc_id": null,
          "hgvs_c": "n.*617G>A",
          "hgvs_p": null,
          "transcript": "ENST00000652248.1",
          "protein_id": "ENSP00000499210.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000652248.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "NM_013421.3",
          "protein_id": "NP_038265.2",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_013421.3"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "NM_013430.3",
          "protein_id": "NP_038347.2",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_013430.3"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875906.1",
          "protein_id": "ENSP00000545965.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875906.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875907.1",
          "protein_id": "ENSP00000545966.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875907.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875908.1",
          "protein_id": "ENSP00000545967.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875908.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875909.1",
          "protein_id": "ENSP00000545968.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875909.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875910.1",
          "protein_id": "ENSP00000545969.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875910.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875911.1",
          "protein_id": "ENSP00000545970.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875911.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875912.1",
          "protein_id": "ENSP00000545971.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875912.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875913.1",
          "protein_id": "ENSP00000545972.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875913.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875914.1",
          "protein_id": "ENSP00000545973.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875914.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875915.1",
          "protein_id": "ENSP00000545974.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875915.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875916.1",
          "protein_id": "ENSP00000545975.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875916.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875917.1",
          "protein_id": "ENSP00000545976.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875917.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875918.1",
          "protein_id": "ENSP00000545977.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875918.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875919.1",
          "protein_id": "ENSP00000545978.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875919.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875920.1",
          "protein_id": "ENSP00000545979.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875920.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875921.1",
          "protein_id": "ENSP00000545980.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875921.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875922.1",
          "protein_id": "ENSP00000545981.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875922.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875923.1",
          "protein_id": "ENSP00000545982.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875923.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875924.1",
          "protein_id": "ENSP00000545983.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875924.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875925.1",
          "protein_id": "ENSP00000545984.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875925.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875926.1",
          "protein_id": "ENSP00000545985.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875926.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875927.1",
          "protein_id": "ENSP00000545986.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875927.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875928.1",
          "protein_id": "ENSP00000545987.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875928.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875929.1",
          "protein_id": "ENSP00000545988.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875929.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875930.1",
          "protein_id": "ENSP00000545989.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875930.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875931.1",
          "protein_id": "ENSP00000545990.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875931.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875932.1",
          "protein_id": "ENSP00000545991.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875932.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875933.1",
          "protein_id": "ENSP00000545992.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875933.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875934.1",
          "protein_id": "ENSP00000545993.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875934.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875935.1",
          "protein_id": "ENSP00000545994.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875935.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875936.1",
          "protein_id": "ENSP00000545995.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875936.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875937.1",
          "protein_id": "ENSP00000545996.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875937.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875938.1",
          "protein_id": "ENSP00000545997.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875938.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875939.1",
          "protein_id": "ENSP00000545998.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875939.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875940.1",
          "protein_id": "ENSP00000545999.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875940.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875941.1",
          "protein_id": "ENSP00000546000.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875941.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875942.1",
          "protein_id": "ENSP00000546001.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875942.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875943.1",
          "protein_id": "ENSP00000546002.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875943.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875944.1",
          "protein_id": "ENSP00000546003.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875944.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875945.1",
          "protein_id": "ENSP00000546004.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875945.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875946.1",
          "protein_id": "ENSP00000546005.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875946.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875947.1",
          "protein_id": "ENSP00000546006.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875947.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875948.1",
          "protein_id": "ENSP00000546007.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875948.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875949.1",
          "protein_id": "ENSP00000546008.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875949.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875951.1",
          "protein_id": "ENSP00000546010.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875951.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875952.1",
          "protein_id": "ENSP00000546011.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875952.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875953.1",
          "protein_id": "ENSP00000546012.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875953.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875954.1",
          "protein_id": "ENSP00000546013.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875954.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875955.1",
          "protein_id": "ENSP00000546014.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875955.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875956.1",
          "protein_id": "ENSP00000546015.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875956.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875957.1",
          "protein_id": "ENSP00000546016.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875957.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875958.1",
          "protein_id": "ENSP00000546017.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875958.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875959.1",
          "protein_id": "ENSP00000546018.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875959.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875960.1",
          "protein_id": "ENSP00000546019.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875960.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875961.1",
          "protein_id": "ENSP00000546020.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875961.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875962.1",
          "protein_id": "ENSP00000546021.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875962.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875963.1",
          "protein_id": "ENSP00000546022.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875963.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875964.1",
          "protein_id": "ENSP00000546023.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875964.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875965.1",
          "protein_id": "ENSP00000546024.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875965.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875966.1",
          "protein_id": "ENSP00000546025.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875966.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875967.1",
          "protein_id": "ENSP00000546026.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875967.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875968.1",
          "protein_id": "ENSP00000546027.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875968.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875969.1",
          "protein_id": "ENSP00000546028.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875969.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875970.1",
          "protein_id": "ENSP00000546029.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875970.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875972.1",
          "protein_id": "ENSP00000546030.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875972.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875973.1",
          "protein_id": "ENSP00000546032.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875973.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875975.1",
          "protein_id": "ENSP00000546034.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875975.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875977.1",
          "protein_id": "ENSP00000546036.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875977.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875978.1",
          "protein_id": "ENSP00000546037.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875978.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875979.1",
          "protein_id": "ENSP00000546038.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875979.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875980.1",
          "protein_id": "ENSP00000546039.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875980.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875981.1",
          "protein_id": "ENSP00000546040.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875981.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875983.1",
          "protein_id": "ENSP00000546042.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875983.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875985.1",
          "protein_id": "ENSP00000546044.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875985.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875987.1",
          "protein_id": "ENSP00000546045.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875987.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875988.1",
          "protein_id": "ENSP00000546047.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875988.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875990.1",
          "protein_id": "ENSP00000546049.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875990.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875992.1",
          "protein_id": "ENSP00000546050.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875992.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875993.1",
          "protein_id": "ENSP00000546052.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875993.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875994.1",
          "protein_id": "ENSP00000546053.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875994.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875995.1",
          "protein_id": "ENSP00000546054.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875995.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920975.1",
          "protein_id": "ENSP00000591034.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920975.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920976.1",
          "protein_id": "ENSP00000591035.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920976.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920977.1",
          "protein_id": "ENSP00000591036.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920977.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920978.1",
          "protein_id": "ENSP00000591037.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920978.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920979.1",
          "protein_id": "ENSP00000591038.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920979.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920980.1",
          "protein_id": "ENSP00000591039.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920980.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920981.1",
          "protein_id": "ENSP00000591040.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920981.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920982.1",
          "protein_id": "ENSP00000591041.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920982.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920983.1",
          "protein_id": "ENSP00000591042.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920983.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920984.1",
          "protein_id": "ENSP00000591043.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920984.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920985.1",
          "protein_id": "ENSP00000591044.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920985.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920986.1",
          "protein_id": "ENSP00000591045.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920986.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920987.1",
          "protein_id": "ENSP00000591046.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920987.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920988.1",
          "protein_id": "ENSP00000591047.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920988.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920989.1",
          "protein_id": "ENSP00000591048.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920989.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920990.1",
          "protein_id": "ENSP00000591049.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920990.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920991.1",
          "protein_id": "ENSP00000591050.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920991.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920992.1",
          "protein_id": "ENSP00000591051.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920992.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920993.1",
          "protein_id": "ENSP00000591052.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920993.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920994.1",
          "protein_id": "ENSP00000591053.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920994.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920995.1",
          "protein_id": "ENSP00000591054.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920995.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920997.1",
          "protein_id": "ENSP00000591056.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920997.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920998.1",
          "protein_id": "ENSP00000591057.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920998.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920999.1",
          "protein_id": "ENSP00000591058.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920999.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950670.1",
          "protein_id": "ENSP00000620729.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950670.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950671.1",
          "protein_id": "ENSP00000620730.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950671.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950672.1",
          "protein_id": "ENSP00000620731.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950672.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950673.1",
          "protein_id": "ENSP00000620732.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950673.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950674.1",
          "protein_id": "ENSP00000620733.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950674.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950675.1",
          "protein_id": "ENSP00000620734.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950675.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950676.1",
          "protein_id": "ENSP00000620735.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950676.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950677.1",
          "protein_id": "ENSP00000620736.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950677.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950679.1",
          "protein_id": "ENSP00000620738.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950679.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950680.1",
          "protein_id": "ENSP00000620739.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950680.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950681.1",
          "protein_id": "ENSP00000620740.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950681.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950682.1",
          "protein_id": "ENSP00000620741.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950682.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950683.1",
          "protein_id": "ENSP00000620742.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950683.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950684.1",
          "protein_id": "ENSP00000620743.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950684.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950685.1",
          "protein_id": "ENSP00000620744.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950685.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950686.1",
          "protein_id": "ENSP00000620745.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950686.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950687.1",
          "protein_id": "ENSP00000620746.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950687.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950688.1",
          "protein_id": "ENSP00000620747.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 569,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1710,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950688.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000875950.1",
          "protein_id": "ENSP00000546009.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 559,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1680,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000875950.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000950678.1",
          "protein_id": "ENSP00000620737.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 556,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1671,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950678.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000920996.1",
          "protein_id": "ENSP00000591055.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 539,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1620,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920996.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000412658.5",
          "protein_id": "ENSP00000393537.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 462,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1390,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000412658.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000419133.5",
          "protein_id": "ENSP00000395271.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 173,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 523,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000419133.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000452551.5",
          "protein_id": "ENSP00000415553.1",
          "transcript_support_level": 3,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 126,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 382,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000452551.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000428855.5",
          "protein_id": "ENSP00000415068.1",
          "transcript_support_level": 3,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 125,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000428855.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000447416.5",
          "protein_id": "ENSP00000400621.1",
          "transcript_support_level": 3,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 125,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000447416.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000411974.5",
          "protein_id": "ENSP00000389935.1",
          "transcript_support_level": 3,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 119,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 362,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000411974.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000451366.5",
          "protein_id": "ENSP00000387796.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 115,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 348,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000451366.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000432867.5",
          "protein_id": "ENSP00000398589.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 110,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 333,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000432867.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000430289.5",
          "protein_id": "ENSP00000417044.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 107,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 326,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000430289.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000455483.5",
          "protein_id": "ENSP00000415024.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 96,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 293,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000455483.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000412898.5",
          "protein_id": "ENSP00000408151.1",
          "transcript_support_level": 5,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 79,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 240,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000412898.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "M",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met",
          "transcript": "ENST00000445029.5",
          "protein_id": "ENSP00000393135.1",
          "transcript_support_level": 3,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 66,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 203,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000445029.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "n.127G>A",
          "hgvs_p": null,
          "transcript": "ENST00000425895.5",
          "protein_id": "ENSP00000387499.1",
          "transcript_support_level": 2,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000425895.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "n.300G>A",
          "hgvs_p": null,
          "transcript": "ENST00000474191.6",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000474191.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000286070",
          "gene_hgnc_id": null,
          "hgvs_c": "n.614G>A",
          "hgvs_p": null,
          "transcript": "ENST00000651180.1",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000651180.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.*16G>A",
          "hgvs_p": null,
          "transcript": "ENST00000438643.6",
          "protein_id": "ENSP00000403826.2",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 36,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 111,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000438643.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "GGT1",
          "gene_hgnc_id": 4250,
          "hgvs_c": "c.*37G>A",
          "hgvs_p": null,
          "transcript": "ENST00000456869.5",
          "protein_id": "ENSP00000415129.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 29,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 90,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000456869.5"
        }
      ],
      "gene_symbol": "GGT1",
      "gene_hgnc_id": 4250,
      "dbsnp": "rs751587531",
      "frequency_reference_population": 0.000021054435,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 30,
      "gnomad_exomes_af": 0.0000210544,
      "gnomad_genomes_af": 0,
      "gnomad_exomes_ac": 30,
      "gnomad_genomes_ac": 0,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.8750548362731934,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.316,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.7667,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.07,
      "bayesdelnoaf_prediction": "Uncertain_significance",
      "phylop100way_score": 8.985,
      "phylop100way_prediction": "Pathogenic",
      "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": 4,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,PP3_Moderate",
      "acmg_by_gene": [
        {
          "score": 4,
          "benign_score": 0,
          "pathogenic_score": 4,
          "criteria": [
            "PM2",
            "PP3_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_013421.3",
          "gene_symbol": "GGT1",
          "hgnc_id": 4250,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.127G>A",
          "hgvs_p": "p.Val43Met"
        },
        {
          "score": 4,
          "benign_score": 0,
          "pathogenic_score": 4,
          "criteria": [
            "PM2",
            "PP3_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000652248.1",
          "gene_symbol": "ENSG00000286070",
          "hgnc_id": null,
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.*617G>A",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "gamma-Glutamyltransferase deficiency",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "gamma-Glutamyltransferase deficiency",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}