← 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-28606194-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "16",
      "pos": 28606194,
      "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_001055.4",
          "protein_id": "NP_001046.2",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000314752.12",
          "protein_id": "ENSP00000321988.7",
          "transcript_support_level": 1,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000569554.5",
          "protein_id": "ENSP00000457912.1",
          "transcript_support_level": 1,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1396C>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": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1168C>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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.712C>T",
          "hgvs_p": "p.Arg238Cys",
          "transcript": "ENST00000898554.1",
          "protein_id": "ENSP00000568613.1",
          "transcript_support_level": null,
          "aa_start": 238,
          "aa_end": null,
          "aa_length": 320,
          "cds_start": 712,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.703C>T",
          "hgvs_p": "p.Arg235Cys",
          "transcript": "ENST00000915946.1",
          "protein_id": "ENSP00000586005.1",
          "transcript_support_level": null,
          "aa_start": 235,
          "aa_end": null,
          "aa_length": 317,
          "cds_start": 703,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.694C>T",
          "hgvs_p": "p.Arg232Cys",
          "transcript": "ENST00000957341.1",
          "protein_id": "ENSP00000627400.1",
          "transcript_support_level": null,
          "aa_start": 232,
          "aa_end": null,
          "aa_length": 314,
          "cds_start": 694,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "ENST00000898572.1",
          "protein_id": "ENSP00000568631.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "ENST00000957339.1",
          "protein_id": "ENSP00000627398.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_001394421.1",
          "protein_id": "NP_001381350.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_001394422.1",
          "protein_id": "NP_001381351.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 11,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_001394423.1",
          "protein_id": "NP_001381352.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_001394424.1",
          "protein_id": "NP_001381353.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_001394425.1",
          "protein_id": "NP_001381354.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_177529.3",
          "protein_id": "NP_803565.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_177530.4",
          "protein_id": "NP_803566.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "NM_177534.4",
          "protein_id": "NP_803878.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898553.1",
          "protein_id": "ENSP00000568612.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898555.1",
          "protein_id": "ENSP00000568614.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898556.1",
          "protein_id": "ENSP00000568615.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898557.1",
          "protein_id": "ENSP00000568616.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898558.1",
          "protein_id": "ENSP00000568617.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898559.1",
          "protein_id": "ENSP00000568618.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898561.1",
          "protein_id": "ENSP00000568620.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898562.1",
          "protein_id": "ENSP00000568621.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898563.1",
          "protein_id": "ENSP00000568622.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898564.1",
          "protein_id": "ENSP00000568623.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898565.1",
          "protein_id": "ENSP00000568624.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898566.1",
          "protein_id": "ENSP00000568625.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898568.1",
          "protein_id": "ENSP00000568627.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898569.1",
          "protein_id": "ENSP00000568628.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000898570.1",
          "protein_id": "ENSP00000568629.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000957340.1",
          "protein_id": "ENSP00000627399.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "ENST00000566189.5",
          "protein_id": "ENSP00000456459.1",
          "transcript_support_level": 5,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 280,
          "cds_start": 637,
          "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": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.568C>T",
          "hgvs_p": "p.Arg190Cys",
          "transcript": "ENST00000898567.1",
          "protein_id": "ENSP00000568626.1",
          "transcript_support_level": null,
          "aa_start": 190,
          "aa_end": null,
          "aa_length": 272,
          "cds_start": 568,
          "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": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.511C>T",
          "hgvs_p": "p.Arg171Cys",
          "transcript": "ENST00000898571.1",
          "protein_id": "ENSP00000568630.1",
          "transcript_support_level": null,
          "aa_start": 171,
          "aa_end": null,
          "aa_length": 253,
          "cds_start": 511,
          "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": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.334C>T",
          "hgvs_p": "p.Arg112Cys",
          "transcript": "NM_177536.5",
          "protein_id": "NP_803880.2",
          "transcript_support_level": null,
          "aa_start": 112,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 334,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_017023604.2",
          "protein_id": "XP_016879093.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_017023605.2",
          "protein_id": "XP_016879094.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_017023608.2",
          "protein_id": "XP_016879097.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_017023610.2",
          "protein_id": "XP_016879099.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 9,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_047434544.1",
          "protein_id": "XP_047290500.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_047434545.1",
          "protein_id": "XP_047290501.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_047434546.1",
          "protein_id": "XP_047290502.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.655C>T",
          "hgvs_p": "p.Arg219Cys",
          "transcript": "XM_047434547.1",
          "protein_id": "XP_047290503.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 301,
          "cds_start": 655,
          "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": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys",
          "transcript": "XM_047434548.1",
          "protein_id": "XP_047290504.1",
          "transcript_support_level": null,
          "aa_start": 213,
          "aa_end": null,
          "aa_length": 295,
          "cds_start": 637,
          "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": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.421C>T",
          "hgvs_p": "p.Arg141Cys",
          "transcript": "XM_047434549.1",
          "protein_id": "XP_047290505.1",
          "transcript_support_level": null,
          "aa_start": 141,
          "aa_end": null,
          "aa_length": 223,
          "cds_start": 421,
          "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": true,
          "strand": false,
          "consequences": [
            "3_prime_UTR_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.*78C>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"
        },
        {
          "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": 8,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.595-99C>T",
          "hgvs_p": null,
          "transcript": "ENST00000898560.1",
          "protein_id": "ENSP00000568619.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 248,
          "cds_start": null,
          "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": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1207C>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": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000293550",
          "gene_hgnc_id": null,
          "hgvs_c": "n.7467C>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": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.751C>T",
          "hgvs_p": null,
          "transcript": "ENST00000698936.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": "ENST00000698936.1"
        },
        {
          "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": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000289755",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1238C>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-12626C>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+13869C>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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SULT1A1",
          "gene_hgnc_id": 11453,
          "hgvs_c": "c.*2C>T",
          "hgvs_p": null,
          "transcript": "ENST00000567512.1",
          "protein_id": "ENSP00000455979.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 168,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 509,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000567512.1"
        }
      ],
      "gene_symbol": "SULT1A1",
      "gene_hgnc_id": 11453,
      "dbsnp": "rs1232887612",
      "frequency_reference_population": 0.00002916494,
      "hom_count_reference_population": 1,
      "allele_count_reference_population": 47,
      "gnomad_exomes_af": 0.0000308207,
      "gnomad_genomes_af": 0.0000132043,
      "gnomad_exomes_ac": 45,
      "gnomad_genomes_ac": 2,
      "gnomad_exomes_homalt": 1,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.3997763395309448,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.11999999731779099,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.451,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.0997,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.2,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.1,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.12,
      "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": -1,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "BP4",
      "acmg_by_gene": [
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001055.4",
          "gene_symbol": "SULT1A1",
          "hgnc_id": 11453,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.637C>T",
          "hgvs_p": "p.Arg213Cys"
        },
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "ENST00000562058.5",
          "gene_symbol": "ENSG00000289755",
          "hgnc_id": null,
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.1396C>T",
          "hgvs_p": null
        },
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "ENST00000567998.5",
          "gene_symbol": "ENSG00000293550",
          "hgnc_id": null,
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.7467C>T",
          "hgvs_p": null
        },
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "ENST00000677940.1",
          "gene_symbol": "ENSG00000288656",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.305-12626C>T",
          "hgvs_p": null
        },
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "ENST00000679262.2",
          "gene_symbol": "ENSG00000289754",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.71+13869C>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
}