← 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: 16-28605835-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "16",
      "pos": 28605835,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_001055.4",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_001055.4",
          "protein_id": "NP_001046.2",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000314752.12",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001055.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000314752.12",
          "protein_id": "ENSP00000321988.7",
          "transcript_support_level": 1,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001055.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000314752.12"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000569554.5",
          "protein_id": "ENSP00000457912.1",
          "transcript_support_level": 1,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000569554.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1633C>T",
          "hgvs_p": null,
          "transcript": "ENST00000562058.5",
          "protein_id": null,
          "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": "pseudogene",
          "feature": "ENST00000562058.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1405C>T",
          "hgvs_p": null,
          "transcript": "ENST00000564818.5",
          "protein_id": null,
          "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": "pseudogene",
          "feature": "ENST00000564818.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.949C>T",
          "hgvs_p": "p.Arg317Cys",
          "transcript": "ENST00000898554.1",
          "protein_id": "ENSP00000568613.1",
          "transcript_support_level": null,
          "aa_start": 317,
          "aa_end": null,
          "aa_length": 320,
          "cds_start": 949,
          "cds_end": null,
          "cds_length": 963,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898554.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.940C>T",
          "hgvs_p": "p.Arg314Cys",
          "transcript": "ENST00000915946.1",
          "protein_id": "ENSP00000586005.1",
          "transcript_support_level": null,
          "aa_start": 314,
          "aa_end": null,
          "aa_length": 317,
          "cds_start": 940,
          "cds_end": null,
          "cds_length": 954,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000915946.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.931C>T",
          "hgvs_p": "p.Arg311Cys",
          "transcript": "ENST00000957341.1",
          "protein_id": "ENSP00000627400.1",
          "transcript_support_level": null,
          "aa_start": 311,
          "aa_end": null,
          "aa_length": 314,
          "cds_start": 931,
          "cds_end": null,
          "cds_length": 945,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000957341.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "ENST00000898572.1",
          "protein_id": "ENSP00000568631.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898572.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "ENST00000957339.1",
          "protein_id": "ENSP00000627398.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000957339.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_001394421.1",
          "protein_id": "NP_001381350.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394421.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_001394422.1",
          "protein_id": "NP_001381351.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394422.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_001394423.1",
          "protein_id": "NP_001381352.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394423.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_001394424.1",
          "protein_id": "NP_001381353.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394424.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_001394425.1",
          "protein_id": "NP_001381354.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001394425.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_177529.3",
          "protein_id": "NP_803565.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_177529.3"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_177530.4",
          "protein_id": "NP_803566.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_177530.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "NM_177534.4",
          "protein_id": "NP_803878.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_177534.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898553.1",
          "protein_id": "ENSP00000568612.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898553.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898555.1",
          "protein_id": "ENSP00000568614.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898555.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898556.1",
          "protein_id": "ENSP00000568615.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898556.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898557.1",
          "protein_id": "ENSP00000568616.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898557.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898558.1",
          "protein_id": "ENSP00000568617.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898558.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898559.1",
          "protein_id": "ENSP00000568618.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898559.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898561.1",
          "protein_id": "ENSP00000568620.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898561.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898562.1",
          "protein_id": "ENSP00000568621.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898562.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898563.1",
          "protein_id": "ENSP00000568622.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898563.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898564.1",
          "protein_id": "ENSP00000568623.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898564.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898565.1",
          "protein_id": "ENSP00000568624.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898565.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898566.1",
          "protein_id": "ENSP00000568625.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898566.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898568.1",
          "protein_id": "ENSP00000568627.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898568.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898569.1",
          "protein_id": "ENSP00000568628.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898569.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000898570.1",
          "protein_id": "ENSP00000568629.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898570.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "ENST00000957340.1",
          "protein_id": "ENSP00000627399.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000957340.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.805C>T",
          "hgvs_p": "p.Arg269Cys",
          "transcript": "ENST00000898567.1",
          "protein_id": "ENSP00000568626.1",
          "transcript_support_level": null,
          "aa_start": 269,
          "aa_end": null,
          "aa_length": 272,
          "cds_start": 805,
          "cds_end": null,
          "cds_length": 819,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898567.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.748C>T",
          "hgvs_p": "p.Arg250Cys",
          "transcript": "ENST00000898571.1",
          "protein_id": "ENSP00000568630.1",
          "transcript_support_level": null,
          "aa_start": 250,
          "aa_end": null,
          "aa_length": 253,
          "cds_start": 748,
          "cds_end": null,
          "cds_length": 762,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898571.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.733C>T",
          "hgvs_p": "p.Arg245Cys",
          "transcript": "ENST00000898560.1",
          "protein_id": "ENSP00000568619.1",
          "transcript_support_level": null,
          "aa_start": 245,
          "aa_end": null,
          "aa_length": 248,
          "cds_start": 733,
          "cds_end": null,
          "cds_length": 747,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000898560.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.571C>T",
          "hgvs_p": "p.Arg191Cys",
          "transcript": "NM_177536.5",
          "protein_id": "NP_803880.2",
          "transcript_support_level": null,
          "aa_start": 191,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 571,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_177536.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_017023604.2",
          "protein_id": "XP_016879093.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017023604.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_017023605.2",
          "protein_id": "XP_016879094.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017023605.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_017023608.2",
          "protein_id": "XP_016879097.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017023608.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_017023610.2",
          "protein_id": "XP_016879099.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017023610.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_047434544.1",
          "protein_id": "XP_047290500.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434544.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_047434545.1",
          "protein_id": "XP_047290501.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434545.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_047434546.1",
          "protein_id": "XP_047290502.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434546.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.892C>T",
          "hgvs_p": "p.Arg298Cys",
          "transcript": "XM_047434547.1",
          "protein_id": "XP_047290503.1",
          "transcript_support_level": null,
          "aa_start": 298,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 892,
          "cds_end": null,
          "cds_length": 906,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434547.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys",
          "transcript": "XM_047434548.1",
          "protein_id": "XP_047290504.1",
          "transcript_support_level": null,
          "aa_start": 292,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 874,
          "cds_end": null,
          "cds_length": 888,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434548.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.658C>T",
          "hgvs_p": "p.Arg220Cys",
          "transcript": "XM_047434549.1",
          "protein_id": "XP_047290505.1",
          "transcript_support_level": null,
          "aa_start": 220,
          "aa_end": null,
          "aa_length": 223,
          "cds_start": 658,
          "cds_end": null,
          "cds_length": 672,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434549.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1444C>T",
          "hgvs_p": null,
          "transcript": "ENST00000563493.1",
          "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": "ENST00000563493.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000293550",
          "gene_hgnc_id": null,
          "hgvs_c": "n.7704C>T",
          "hgvs_p": null,
          "transcript": "ENST00000567998.5",
          "protein_id": null,
          "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": "retained_intron",
          "feature": "ENST00000567998.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1475C>T",
          "hgvs_p": null,
          "transcript": "ENST00000717665.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": "ENST00000717665.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000288656",
          "gene_hgnc_id": null,
          "hgvs_c": "n.305-12267C>T",
          "hgvs_p": null,
          "transcript": "ENST00000677940.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": "ENST00000677940.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289754",
          "gene_hgnc_id": null,
          "hgvs_c": "n.71+14228C>T",
          "hgvs_p": null,
          "transcript": "ENST00000679262.2",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000679262.2"
        },
        {
          "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": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.*30C>T",
          "hgvs_p": null,
          "transcript": "ENST00000566189.5",
          "protein_id": "ENSP00000456459.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 280,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 844,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000566189.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.*437C>T",
          "hgvs_p": null,
          "transcript": "XM_047434550.1",
          "protein_id": "XP_047290506.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 198,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 597,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047434550.1"
        }
      ],
      "gene_symbol": "SULT1A1",
      "gene_hgnc_id": 11453,
      "dbsnp": "rs745498975",
      "frequency_reference_population": 0.00001976545,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 3,
      "gnomad_exomes_af": 0.0000308845,
      "gnomad_genomes_af": 0.0000197654,
      "gnomad_exomes_ac": 45,
      "gnomad_genomes_ac": 3,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.07695725560188293,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.169,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.2876,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.26,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 2.765,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 0,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001055.4",
          "gene_symbol": "SULT1A1",
          "hgnc_id": 11453,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.874C>T",
          "hgvs_p": "p.Arg292Cys"
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000562058.5",
          "gene_symbol": "ENSG00000289755",
          "hgnc_id": null,
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.1633C>T",
          "hgvs_p": null
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000567998.5",
          "gene_symbol": "ENSG00000293550",
          "hgnc_id": null,
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.7704C>T",
          "hgvs_p": null
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000677940.1",
          "gene_symbol": "ENSG00000288656",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.305-12267C>T",
          "hgvs_p": null
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000679262.2",
          "gene_symbol": "ENSG00000289754",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.71+14228C>T",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}