← 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: 8-144103600-G-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "8",
      "pos": 144103600,
      "ref": "G",
      "alt": "T",
      "effect": "synonymous_variant",
      "transcript": "NM_030974.4",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "NM_030974.4",
          "protein_id": "NP_112236.3",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000398712.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_030974.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000398712.7",
          "protein_id": "ENSP00000381698.2",
          "transcript_support_level": 1,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_030974.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000398712.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.154C>A",
          "hgvs_p": null,
          "transcript": "ENST00000359551.6",
          "protein_id": "ENSP00000352551.6",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000359551.6"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000964196.1",
          "protein_id": "ENSP00000634255.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 389,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1170,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964196.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876468.1",
          "protein_id": "ENSP00000546527.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876468.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876469.1",
          "protein_id": "ENSP00000546528.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876469.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876472.1",
          "protein_id": "ENSP00000546531.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876472.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000922422.1",
          "protein_id": "ENSP00000592481.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922422.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000964198.1",
          "protein_id": "ENSP00000634257.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964198.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876473.1",
          "protein_id": "ENSP00000546532.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 386,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1161,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876473.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876467.1",
          "protein_id": "ENSP00000546526.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 385,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1158,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876467.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876470.1",
          "protein_id": "ENSP00000546529.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 385,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1158,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876470.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876477.1",
          "protein_id": "ENSP00000546536.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 385,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1158,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876477.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000964195.1",
          "protein_id": "ENSP00000634254.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 385,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1158,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964195.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000964199.1",
          "protein_id": "ENSP00000634258.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 384,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1155,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964199.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000964200.1",
          "protein_id": "ENSP00000634259.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 383,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1152,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964200.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876474.1",
          "protein_id": "ENSP00000546533.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 374,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1125,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876474.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000964197.1",
          "protein_id": "ENSP00000634256.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 372,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1119,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964197.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876471.1",
          "protein_id": "ENSP00000546530.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876471.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000922423.1",
          "protein_id": "ENSP00000592482.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 342,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1029,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922423.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876475.1",
          "protein_id": "ENSP00000546534.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 336,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1011,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876475.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876476.1",
          "protein_id": "ENSP00000546535.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 309,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 930,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876476.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000876478.1",
          "protein_id": "ENSP00000546537.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 309,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 930,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876478.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "ENST00000922424.1",
          "protein_id": "ENSP00000592483.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 308,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 927,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922424.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "XM_047422289.1",
          "protein_id": "XP_047278245.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 387,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1164,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422289.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "XM_047422290.1",
          "protein_id": "XP_047278246.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 385,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 1158,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422290.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "R",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg",
          "transcript": "XM_017013888.3",
          "protein_id": "XP_016869377.1",
          "transcript_support_level": null,
          "aa_start": 52,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": 154,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017013888.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "c.81+73C>A",
          "hgvs_p": null,
          "transcript": "ENST00000964201.1",
          "protein_id": "ENSP00000634260.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 347,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1044,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964201.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "MAF1",
          "gene_hgnc_id": 24966,
          "hgvs_c": "c.-45+303G>T",
          "hgvs_p": null,
          "transcript": "ENST00000964344.1",
          "protein_id": "ENSP00000634403.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 286,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 861,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964344.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "MAF1",
          "gene_hgnc_id": 24966,
          "hgvs_c": "c.-45+303G>T",
          "hgvs_p": null,
          "transcript": "ENST00000964343.1",
          "protein_id": "ENSP00000634402.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 256,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 771,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000964343.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.157C>A",
          "hgvs_p": null,
          "transcript": "ENST00000531375.1",
          "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": "ENST00000531375.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.174C>A",
          "hgvs_p": null,
          "transcript": "NR_038270.2",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "NR_038270.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.244-375C>A",
          "hgvs_p": null,
          "transcript": "ENST00000533184.1",
          "protein_id": null,
          "transcript_support_level": 3,
          "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": "ENST00000533184.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": 5,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.423+247C>A",
          "hgvs_p": null,
          "transcript": "ENST00000533948.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": "ENST00000533948.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": 1,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.227-375C>A",
          "hgvs_p": null,
          "transcript": "ENST00000534242.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": "pseudogene",
          "feature": "ENST00000534242.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "SHARPIN",
          "gene_hgnc_id": 25321,
          "hgvs_c": "n.73-375C>A",
          "hgvs_p": null,
          "transcript": "ENST00000534435.1",
          "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": "ENST00000534435.1"
        }
      ],
      "gene_symbol": "SHARPIN",
      "gene_hgnc_id": 25321,
      "dbsnp": "rs11136254",
      "frequency_reference_population": 0.9108876,
      "hom_count_reference_population": 637285,
      "allele_count_reference_population": 1394629,
      "gnomad_exomes_af": 0.915982,
      "gnomad_genomes_af": 0.864745,
      "gnomad_exomes_ac": 1262982,
      "gnomad_genomes_ac": 131647,
      "gnomad_exomes_homalt": 579581,
      "gnomad_genomes_homalt": 57704,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": -0.5799999833106995,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "BayesDel_noAF",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": null,
      "revel_prediction": null,
      "alphamissense_score": null,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.58,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.788,
      "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": -21,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Very_Strong,BP7,BA1",
      "acmg_by_gene": [
        {
          "score": -21,
          "benign_score": 21,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BP7",
            "BA1"
          ],
          "verdict": "Benign",
          "transcript": "NM_030974.4",
          "gene_symbol": "SHARPIN",
          "hgnc_id": 25321,
          "effects": [
            "synonymous_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.154C>A",
          "hgvs_p": "p.Arg52Arg"
        },
        {
          "score": -20,
          "benign_score": 20,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BA1"
          ],
          "verdict": "Benign",
          "transcript": "ENST00000964344.1",
          "gene_symbol": "MAF1",
          "hgnc_id": 24966,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.-45+303G>T",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "not provided,not specified",
      "clinvar_classification": "Benign",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "B:2",
      "phenotype_combined": "not specified|not provided",
      "pathogenicity_classification_combined": "Benign",
      "custom_annotations": null
    }
  ],
  "message": null
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.