← 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: 3-52206586-T-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "3",
      "pos": 52206586,
      "ref": "T",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "NM_001304444.1",
      "consequences": [
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "NM_000688.6",
          "protein_id": "NP_000679.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1305,
          "cdna_end": null,
          "cdna_length": 2375,
          "mane_select": "ENST00000484952.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_000688.6"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000484952.6",
          "protein_id": "ENSP00000418779.1",
          "transcript_support_level": 1,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1305,
          "cdna_end": null,
          "cdna_length": 2375,
          "mane_select": "NM_000688.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000484952.6"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000310271.6",
          "protein_id": "ENSP00000309259.2",
          "transcript_support_level": 1,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1145,
          "cdna_end": null,
          "cdna_length": 2212,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000310271.6"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000469224.5",
          "protein_id": "ENSP00000417719.1",
          "transcript_support_level": 1,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1202,
          "cdna_end": null,
          "cdna_length": 2125,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000469224.5"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1051T>G",
          "hgvs_p": "p.Ser351Ala",
          "transcript": "NM_001304444.1",
          "protein_id": "NP_001291373.1",
          "transcript_support_level": null,
          "aa_start": 351,
          "aa_end": null,
          "aa_length": 657,
          "cds_start": 1051,
          "cds_end": null,
          "cds_length": 1974,
          "cdna_start": 1371,
          "cdna_end": null,
          "cdna_length": 2441,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001304444.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864930.1",
          "protein_id": "ENSP00000534989.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 646,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1941,
          "cdna_start": 1129,
          "cdna_end": null,
          "cdna_length": 2229,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864930.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000930956.1",
          "protein_id": "ENSP00000601015.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 646,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1941,
          "cdna_start": 1369,
          "cdna_end": null,
          "cdna_length": 2440,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000930956.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "NM_001304443.1",
          "protein_id": "NP_001291372.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1194,
          "cdna_end": null,
          "cdna_length": 2264,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001304443.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "NM_199166.2",
          "protein_id": "NP_954635.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1205,
          "cdna_end": null,
          "cdna_length": 2275,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_199166.2"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000394965.6",
          "protein_id": "ENSP00000378416.2",
          "transcript_support_level": 2,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1360,
          "cdna_end": null,
          "cdna_length": 2430,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000394965.6"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864926.1",
          "protein_id": "ENSP00000534985.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 2121,
          "cdna_end": null,
          "cdna_length": 3449,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864926.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864931.1",
          "protein_id": "ENSP00000534990.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1281,
          "cdna_end": null,
          "cdna_length": 2334,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864931.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864932.1",
          "protein_id": "ENSP00000534991.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1346,
          "cdna_end": null,
          "cdna_length": 2392,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864932.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864933.1",
          "protein_id": "ENSP00000534992.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1144,
          "cdna_end": null,
          "cdna_length": 2214,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864933.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864934.1",
          "protein_id": "ENSP00000534993.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1667,
          "cdna_end": null,
          "cdna_length": 2735,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864934.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864939.1",
          "protein_id": "ENSP00000534998.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1133,
          "cdna_end": null,
          "cdna_length": 2179,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864939.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864944.1",
          "protein_id": "ENSP00000535003.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1335,
          "cdna_end": null,
          "cdna_length": 2365,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864944.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000942096.1",
          "protein_id": "ENSP00000612155.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1419,
          "cdna_end": null,
          "cdna_length": 2463,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942096.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000942097.1",
          "protein_id": "ENSP00000612156.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1108,
          "cdna_end": null,
          "cdna_length": 2153,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942097.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000942099.1",
          "protein_id": "ENSP00000612158.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1242,
          "cdna_end": null,
          "cdna_length": 2277,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942099.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000942101.1",
          "protein_id": "ENSP00000612160.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 640,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1923,
          "cdna_start": 1146,
          "cdna_end": null,
          "cdna_length": 2176,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942101.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.997T>G",
          "hgvs_p": "p.Ser333Ala",
          "transcript": "ENST00000864927.1",
          "protein_id": "ENSP00000534986.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 639,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1920,
          "cdna_start": 1191,
          "cdna_end": null,
          "cdna_length": 2260,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864927.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.997T>G",
          "hgvs_p": "p.Ser333Ala",
          "transcript": "ENST00000864928.1",
          "protein_id": "ENSP00000534987.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 639,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1920,
          "cdna_start": 1348,
          "cdna_end": null,
          "cdna_length": 2417,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864928.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.997T>G",
          "hgvs_p": "p.Ser333Ala",
          "transcript": "ENST00000864929.1",
          "protein_id": "ENSP00000534988.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 639,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1920,
          "cdna_start": 1144,
          "cdna_end": null,
          "cdna_length": 2212,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864929.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.997T>G",
          "hgvs_p": "p.Ser333Ala",
          "transcript": "ENST00000864937.1",
          "protein_id": "ENSP00000534996.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 639,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1920,
          "cdna_start": 2078,
          "cdna_end": null,
          "cdna_length": 3131,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864937.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.997T>G",
          "hgvs_p": "p.Ser333Ala",
          "transcript": "ENST00000942095.1",
          "protein_id": "ENSP00000612154.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 639,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1920,
          "cdna_start": 1289,
          "cdna_end": null,
          "cdna_length": 2335,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942095.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.997T>G",
          "hgvs_p": "p.Ser333Ala",
          "transcript": "ENST00000942098.1",
          "protein_id": "ENSP00000612157.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 639,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1920,
          "cdna_start": 1139,
          "cdna_end": null,
          "cdna_length": 2182,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942098.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864940.1",
          "protein_id": "ENSP00000534999.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 638,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1917,
          "cdna_start": 1127,
          "cdna_end": null,
          "cdna_length": 2167,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864940.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864942.1",
          "protein_id": "ENSP00000535001.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 638,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1917,
          "cdna_start": 1127,
          "cdna_end": null,
          "cdna_length": 2167,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864942.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.982T>G",
          "hgvs_p": "p.Ser328Ala",
          "transcript": "ENST00000864943.1",
          "protein_id": "ENSP00000535002.1",
          "transcript_support_level": null,
          "aa_start": 328,
          "aa_end": null,
          "aa_length": 634,
          "cds_start": 982,
          "cds_end": null,
          "cds_length": 1905,
          "cdna_start": 1115,
          "cdna_end": null,
          "cdna_length": 2145,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864943.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "ENST00000864941.1",
          "protein_id": "ENSP00000535000.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 632,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1899,
          "cdna_start": 1127,
          "cdna_end": null,
          "cdna_length": 2149,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864941.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.928T>G",
          "hgvs_p": "p.Ser310Ala",
          "transcript": "ENST00000864936.1",
          "protein_id": "ENSP00000534995.1",
          "transcript_support_level": null,
          "aa_start": 310,
          "aa_end": null,
          "aa_length": 616,
          "cds_start": 928,
          "cds_end": null,
          "cds_length": 1851,
          "cdna_start": 1232,
          "cdna_end": null,
          "cdna_length": 2300,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864936.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.928T>G",
          "hgvs_p": "p.Ser310Ala",
          "transcript": "ENST00000942092.1",
          "protein_id": "ENSP00000612151.1",
          "transcript_support_level": null,
          "aa_start": 310,
          "aa_end": null,
          "aa_length": 616,
          "cds_start": 928,
          "cds_end": null,
          "cds_length": 1851,
          "cdna_start": 1119,
          "cdna_end": null,
          "cdna_length": 2189,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942092.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.880T>G",
          "hgvs_p": "p.Ser294Ala",
          "transcript": "ENST00000864938.1",
          "protein_id": "ENSP00000534997.1",
          "transcript_support_level": null,
          "aa_start": 294,
          "aa_end": null,
          "aa_length": 600,
          "cds_start": 880,
          "cds_end": null,
          "cds_length": 1803,
          "cdna_start": 1186,
          "cdna_end": null,
          "cdna_length": 2232,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864938.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.592T>G",
          "hgvs_p": "p.Ser198Ala",
          "transcript": "ENST00000942093.1",
          "protein_id": "ENSP00000612152.1",
          "transcript_support_level": null,
          "aa_start": 198,
          "aa_end": null,
          "aa_length": 504,
          "cds_start": 592,
          "cds_end": null,
          "cds_length": 1515,
          "cdna_start": 936,
          "cdna_end": null,
          "cdna_length": 1982,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942093.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1051T>G",
          "hgvs_p": "p.Ser351Ala",
          "transcript": "XM_011533477.3",
          "protein_id": "XP_011531779.1",
          "transcript_support_level": null,
          "aa_start": 351,
          "aa_end": null,
          "aa_length": 611,
          "cds_start": 1051,
          "cds_end": null,
          "cds_length": 1836,
          "cdna_start": 1371,
          "cdna_end": null,
          "cdna_length": 2435,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011533477.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1051T>G",
          "hgvs_p": "p.Ser351Ala",
          "transcript": "XM_011533478.3",
          "protein_id": "XP_011531780.1",
          "transcript_support_level": null,
          "aa_start": 351,
          "aa_end": null,
          "aa_length": 602,
          "cds_start": 1051,
          "cds_end": null,
          "cds_length": 1809,
          "cdna_start": 1371,
          "cdna_end": null,
          "cdna_length": 2276,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011533478.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "A",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.1000T>G",
          "hgvs_p": "p.Ser334Ala",
          "transcript": "XM_017005873.2",
          "protein_id": "XP_016861362.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 585,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1758,
          "cdna_start": 1205,
          "cdna_end": null,
          "cdna_length": 2110,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017005873.2"
        },
        {
          "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": 9,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.985+563T>G",
          "hgvs_p": null,
          "transcript": "ENST00000942100.1",
          "protein_id": "ENSP00000612159.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 525,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1578,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1812,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942100.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": 9,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.982+563T>G",
          "hgvs_p": null,
          "transcript": "ENST00000942094.1",
          "protein_id": "ENSP00000612153.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 524,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1575,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1860,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000942094.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": 3,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.578-1497T>G",
          "hgvs_p": null,
          "transcript": "ENST00000864945.1",
          "protein_id": "ENSP00000535004.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 444,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1335,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1479,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864945.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": 4,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.577+2574T>G",
          "hgvs_p": null,
          "transcript": "ENST00000864935.1",
          "protein_id": "ENSP00000534994.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 389,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1170,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1444,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000864935.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "upstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ALAS1",
          "gene_hgnc_id": 396,
          "hgvs_c": "c.-48T>G",
          "hgvs_p": null,
          "transcript": "ENST00000493402.1",
          "protein_id": "ENSP00000417352.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 236,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 711,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 758,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000493402.1"
        }
      ],
      "gene_symbol": "ALAS1",
      "gene_hgnc_id": 396,
      "dbsnp": "rs1355319993",
      "frequency_reference_population": 0.0000034202628,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 5,
      "gnomad_exomes_af": 0.00000342026,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 5,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.9282369017601013,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.833,
      "revel_prediction": "Pathogenic",
      "alphamissense_score": 0.7437,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.2,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 7.958,
      "phylop100way_prediction": "Pathogenic",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 4,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,PP3_Moderate",
      "acmg_by_gene": [
        {
          "score": 4,
          "benign_score": 0,
          "pathogenic_score": 4,
          "criteria": [
            "PM2",
            "PP3_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001304444.1",
          "gene_symbol": "ALAS1",
          "hgnc_id": 396,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.1051T>G",
          "hgvs_p": "p.Ser351Ala"
        }
      ],
      "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
}
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.