← 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: 17-78803778-T-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "17",
      "pos": 78803778,
      "ref": "T",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "NM_001385169.1",
      "consequences": [
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385174.1",
          "protein_id": "NP_001372103.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000449938.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385174.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000449938.7",
          "protein_id": "ENSP00000401119.4",
          "transcript_support_level": 1,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001385174.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000449938.7"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000542802.7",
          "protein_id": "ENSP00000441214.1",
          "transcript_support_level": 1,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000542802.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.*125A>G",
          "hgvs_p": null,
          "transcript": "ENST00000588086.6",
          "protein_id": "ENSP00000468549.3",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000588086.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.2417A>G",
          "hgvs_p": null,
          "transcript": "ENST00000589225.5",
          "protein_id": "ENSP00000467280.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000589225.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.*125A>G",
          "hgvs_p": null,
          "transcript": "ENST00000588086.6",
          "protein_id": "ENSP00000468549.3",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000588086.6"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000865526.1",
          "protein_id": "ENSP00000535585.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1157,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3474,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000865526.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385169.1",
          "protein_id": "NP_001372098.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385169.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000927226.1",
          "protein_id": "ENSP00000597285.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000927226.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000927227.1",
          "protein_id": "ENSP00000597286.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000927227.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001321291.2",
          "protein_id": "NP_001308220.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001321291.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385170.1",
          "protein_id": "NP_001372099.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385170.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385171.1",
          "protein_id": "NP_001372100.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385171.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385172.1",
          "protein_id": "NP_001372101.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385172.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385173.1",
          "protein_id": "NP_001372102.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385173.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385175.1",
          "protein_id": "NP_001372104.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385175.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "NM_001385176.1",
          "protein_id": "NP_001372105.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385176.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000312010.10",
          "protein_id": "ENSP00000310590.6",
          "transcript_support_level": 5,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000312010.10"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000592231.6",
          "protein_id": "ENSP00000465698.2",
          "transcript_support_level": 2,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000592231.6"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000865525.1",
          "protein_id": "ENSP00000535584.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000865525.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000865527.1",
          "protein_id": "ENSP00000535586.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000865527.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "ENST00000947940.1",
          "protein_id": "ENSP00000617999.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947940.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2342A>G",
          "hgvs_p": "p.Gln781Arg",
          "transcript": "ENST00000927228.1",
          "protein_id": "ENSP00000597287.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1098,
          "cds_start": 2342,
          "cds_end": null,
          "cds_length": 3297,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000927228.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1922A>G",
          "hgvs_p": "p.Gln641Arg",
          "transcript": "NM_001385177.1",
          "protein_id": "NP_001372106.1",
          "transcript_support_level": null,
          "aa_start": 641,
          "aa_end": null,
          "aa_length": 958,
          "cds_start": 1922,
          "cds_end": null,
          "cds_length": 2877,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385177.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1922A>G",
          "hgvs_p": "p.Gln641Arg",
          "transcript": "NM_001385178.1",
          "protein_id": "NP_001372107.1",
          "transcript_support_level": null,
          "aa_start": 641,
          "aa_end": null,
          "aa_length": 958,
          "cds_start": 1922,
          "cds_end": null,
          "cds_length": 2877,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385178.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1787A>G",
          "hgvs_p": "p.Gln596Arg",
          "transcript": "NM_001385179.1",
          "protein_id": "NP_001372108.1",
          "transcript_support_level": null,
          "aa_start": 596,
          "aa_end": null,
          "aa_length": 913,
          "cds_start": 1787,
          "cds_end": null,
          "cds_length": 2742,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385179.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1760A>G",
          "hgvs_p": "p.Gln587Arg",
          "transcript": "NM_001385180.1",
          "protein_id": "NP_001372109.1",
          "transcript_support_level": null,
          "aa_start": 587,
          "aa_end": null,
          "aa_length": 904,
          "cds_start": 1760,
          "cds_end": null,
          "cds_length": 2715,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001385180.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_011525065.3",
          "protein_id": "XP_011523367.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011525065.3"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_011525066.4",
          "protein_id": "XP_011523368.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011525066.4"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_024450845.2",
          "protein_id": "XP_024306613.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024450845.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_024450846.2",
          "protein_id": "XP_024306614.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024450846.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_047436468.1",
          "protein_id": "XP_047292424.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1124,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3375,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436468.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_047436469.1",
          "protein_id": "XP_047292425.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436469.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_047436470.1",
          "protein_id": "XP_047292426.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436470.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg",
          "transcript": "XM_047436471.1",
          "protein_id": "XP_047292427.1",
          "transcript_support_level": null,
          "aa_start": 806,
          "aa_end": null,
          "aa_length": 1075,
          "cds_start": 2417,
          "cds_end": null,
          "cds_length": 3228,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436471.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2177A>G",
          "hgvs_p": "p.Gln726Arg",
          "transcript": "XM_017024901.2",
          "protein_id": "XP_016880390.1",
          "transcript_support_level": null,
          "aa_start": 726,
          "aa_end": null,
          "aa_length": 1044,
          "cds_start": 2177,
          "cds_end": null,
          "cds_length": 3135,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017024901.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2177A>G",
          "hgvs_p": "p.Gln726Arg",
          "transcript": "XM_047436472.1",
          "protein_id": "XP_047292428.1",
          "transcript_support_level": null,
          "aa_start": 726,
          "aa_end": null,
          "aa_length": 1043,
          "cds_start": 2177,
          "cds_end": null,
          "cds_length": 3132,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436472.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1922A>G",
          "hgvs_p": "p.Gln641Arg",
          "transcript": "XM_011525068.2",
          "protein_id": "XP_011523370.1",
          "transcript_support_level": null,
          "aa_start": 641,
          "aa_end": null,
          "aa_length": 959,
          "cds_start": 1922,
          "cds_end": null,
          "cds_length": 2880,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011525068.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1922A>G",
          "hgvs_p": "p.Gln641Arg",
          "transcript": "XM_047436473.1",
          "protein_id": "XP_047292429.1",
          "transcript_support_level": null,
          "aa_start": 641,
          "aa_end": null,
          "aa_length": 959,
          "cds_start": 1922,
          "cds_end": null,
          "cds_length": 2880,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436473.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1787A>G",
          "hgvs_p": "p.Gln596Arg",
          "transcript": "XM_047436474.1",
          "protein_id": "XP_047292430.1",
          "transcript_support_level": null,
          "aa_start": 596,
          "aa_end": null,
          "aa_length": 914,
          "cds_start": 1787,
          "cds_end": null,
          "cds_length": 2745,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436474.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.1787A>G",
          "hgvs_p": "p.Gln596Arg",
          "transcript": "XM_047436475.1",
          "protein_id": "XP_047292431.1",
          "transcript_support_level": null,
          "aa_start": 596,
          "aa_end": null,
          "aa_length": 913,
          "cds_start": 1787,
          "cds_end": null,
          "cds_length": 2742,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047436475.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": 15,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2217-1243A>G",
          "hgvs_p": null,
          "transcript": "XM_011525069.4",
          "protein_id": "XP_011523371.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 925,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 2778,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011525069.4"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": 15,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "c.2216+2378A>G",
          "hgvs_p": null,
          "transcript": "XM_011525071.4",
          "protein_id": "XP_011523373.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 739,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 2220,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011525071.4"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.*1829A>G",
          "hgvs_p": null,
          "transcript": "ENST00000693020.1",
          "protein_id": "ENSP00000510682.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": "ENST00000693020.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.2669A>G",
          "hgvs_p": null,
          "transcript": "NR_169581.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": "NR_169581.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.2669A>G",
          "hgvs_p": null,
          "transcript": "NR_169582.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": "NR_169582.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.2740A>G",
          "hgvs_p": null,
          "transcript": "NR_169583.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": "NR_169583.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.2740A>G",
          "hgvs_p": null,
          "transcript": "NR_169584.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": "NR_169584.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.2669A>G",
          "hgvs_p": null,
          "transcript": "NR_169585.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": "NR_169585.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "USP36",
          "gene_hgnc_id": 20062,
          "hgvs_c": "n.*1829A>G",
          "hgvs_p": null,
          "transcript": "ENST00000693020.1",
          "protein_id": "ENSP00000510682.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": "ENST00000693020.1"
        }
      ],
      "gene_symbol": "USP36",
      "gene_hgnc_id": 20062,
      "dbsnp": "rs3088040",
      "frequency_reference_population": 0.55521774,
      "hom_count_reference_population": 249854,
      "allele_count_reference_population": 895222,
      "gnomad_exomes_af": 0.553835,
      "gnomad_genomes_af": 0.568496,
      "gnomad_exomes_ac": 808789,
      "gnomad_genomes_ac": 86433,
      "gnomad_exomes_homalt": 225257,
      "gnomad_genomes_homalt": 24597,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.000004793905645783525,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.05999999865889549,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.003,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0622,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.89,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -1.805,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.06,
      "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": -12,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BA1",
      "acmg_by_gene": [
        {
          "score": -12,
          "benign_score": 12,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BA1"
          ],
          "verdict": "Benign",
          "transcript": "NM_001385169.1",
          "gene_symbol": "USP36",
          "hgnc_id": 20062,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.2417A>G",
          "hgvs_p": "p.Gln806Arg"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}