← 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: 14-45187798-A-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "14",
      "pos": 45187798,
      "ref": "A",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "NM_020937.4",
      "consequences": [
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4690A>C",
          "hgvs_p": "p.Ile1564Leu",
          "transcript": "NM_020937.4",
          "protein_id": "NP_065988.1",
          "transcript_support_level": null,
          "aa_start": 1564,
          "aa_end": null,
          "aa_length": 2048,
          "cds_start": 4690,
          "cds_end": null,
          "cds_length": 6147,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000267430.10",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_020937.4"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4690A>C",
          "hgvs_p": "p.Ile1564Leu",
          "transcript": "ENST00000267430.10",
          "protein_id": "ENSP00000267430.5",
          "transcript_support_level": 1,
          "aa_start": 1564,
          "aa_end": null,
          "aa_length": 2048,
          "cds_start": 4690,
          "cds_end": null,
          "cds_length": 6147,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_020937.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000267430.10"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4612A>C",
          "hgvs_p": "p.Ile1538Leu",
          "transcript": "ENST00000542564.6",
          "protein_id": "ENSP00000442493.2",
          "transcript_support_level": 1,
          "aa_start": 1538,
          "aa_end": null,
          "aa_length": 2022,
          "cds_start": 4612,
          "cds_end": null,
          "cds_length": 6069,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000542564.6"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4483A>C",
          "hgvs_p": "p.Ile1495Leu",
          "transcript": "ENST00000556250.6",
          "protein_id": "ENSP00000452033.2",
          "transcript_support_level": 1,
          "aa_start": 1495,
          "aa_end": null,
          "aa_length": 1979,
          "cds_start": 4483,
          "cds_end": null,
          "cds_length": 5940,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000556250.6"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4744A>C",
          "hgvs_p": "p.Ile1582Leu",
          "transcript": "ENST00000893235.1",
          "protein_id": "ENSP00000563294.1",
          "transcript_support_level": null,
          "aa_start": 1582,
          "aa_end": null,
          "aa_length": 2066,
          "cds_start": 4744,
          "cds_end": null,
          "cds_length": 6201,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000893235.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4612A>C",
          "hgvs_p": "p.Ile1538Leu",
          "transcript": "NM_001308133.2",
          "protein_id": "NP_001295062.1",
          "transcript_support_level": null,
          "aa_start": 1538,
          "aa_end": null,
          "aa_length": 2022,
          "cds_start": 4612,
          "cds_end": null,
          "cds_length": 6069,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001308133.2"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4573A>C",
          "hgvs_p": "p.Ile1525Leu",
          "transcript": "ENST00000913802.1",
          "protein_id": "ENSP00000583861.1",
          "transcript_support_level": null,
          "aa_start": 1525,
          "aa_end": null,
          "aa_length": 2009,
          "cds_start": 4573,
          "cds_end": null,
          "cds_length": 6030,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000913802.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4534A>C",
          "hgvs_p": "p.Ile1512Leu",
          "transcript": "ENST00000696649.1",
          "protein_id": "ENSP00000512780.1",
          "transcript_support_level": null,
          "aa_start": 1512,
          "aa_end": null,
          "aa_length": 1996,
          "cds_start": 4534,
          "cds_end": null,
          "cds_length": 5991,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000696649.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4627A>C",
          "hgvs_p": "p.Ile1543Leu",
          "transcript": "ENST00000913803.1",
          "protein_id": "ENSP00000583862.1",
          "transcript_support_level": null,
          "aa_start": 1543,
          "aa_end": null,
          "aa_length": 1964,
          "cds_start": 4627,
          "cds_end": null,
          "cds_length": 5895,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000913803.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.3520A>C",
          "hgvs_p": "p.Ile1174Leu",
          "transcript": "ENST00000696664.1",
          "protein_id": "ENSP00000512790.1",
          "transcript_support_level": null,
          "aa_start": 1174,
          "aa_end": null,
          "aa_length": 1658,
          "cds_start": 3520,
          "cds_end": null,
          "cds_length": 4977,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000696664.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.3505A>C",
          "hgvs_p": "p.Ile1169Leu",
          "transcript": "ENST00000696683.1",
          "protein_id": "ENSP00000512806.1",
          "transcript_support_level": null,
          "aa_start": 1169,
          "aa_end": null,
          "aa_length": 1590,
          "cds_start": 3505,
          "cds_end": null,
          "cds_length": 4773,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000696683.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.2902A>C",
          "hgvs_p": "p.Ile968Leu",
          "transcript": "ENST00000554809.6",
          "protein_id": "ENSP00000450632.2",
          "transcript_support_level": 2,
          "aa_start": 968,
          "aa_end": null,
          "aa_length": 1487,
          "cds_start": 2902,
          "cds_end": null,
          "cds_length": 4464,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000554809.6"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.3505A>C",
          "hgvs_p": "p.Ile1169Leu",
          "transcript": "ENST00000696684.1",
          "protein_id": "ENSP00000512807.1",
          "transcript_support_level": null,
          "aa_start": 1169,
          "aa_end": null,
          "aa_length": 1401,
          "cds_start": 3505,
          "cds_end": null,
          "cds_length": 4206,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000696684.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.2686A>C",
          "hgvs_p": "p.Ile896Leu",
          "transcript": "ENST00000696659.1",
          "protein_id": "ENSP00000512785.1",
          "transcript_support_level": null,
          "aa_start": 896,
          "aa_end": null,
          "aa_length": 1128,
          "cds_start": 2686,
          "cds_end": null,
          "cds_length": 3387,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000696659.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.466A>C",
          "hgvs_p": "p.Ile156Leu",
          "transcript": "ENST00000555484.2",
          "protein_id": "ENSP00000450797.2",
          "transcript_support_level": 3,
          "aa_start": 156,
          "aa_end": null,
          "aa_length": 572,
          "cds_start": 466,
          "cds_end": null,
          "cds_length": 1719,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000555484.2"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.466A>C",
          "hgvs_p": "p.Ile156Leu",
          "transcript": "ENST00000696665.1",
          "protein_id": "ENSP00000512791.1",
          "transcript_support_level": null,
          "aa_start": 156,
          "aa_end": null,
          "aa_length": 508,
          "cds_start": 466,
          "cds_end": null,
          "cds_length": 1527,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000696665.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4705A>C",
          "hgvs_p": "p.Ile1569Leu",
          "transcript": "XM_011537034.3",
          "protein_id": "XP_011535336.1",
          "transcript_support_level": null,
          "aa_start": 1569,
          "aa_end": null,
          "aa_length": 2053,
          "cds_start": 4705,
          "cds_end": null,
          "cds_length": 6162,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011537034.3"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4627A>C",
          "hgvs_p": "p.Ile1543Leu",
          "transcript": "XM_011537035.4",
          "protein_id": "XP_011535337.1",
          "transcript_support_level": null,
          "aa_start": 1543,
          "aa_end": null,
          "aa_length": 2027,
          "cds_start": 4627,
          "cds_end": null,
          "cds_length": 6084,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011537035.4"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4705A>C",
          "hgvs_p": "p.Ile1569Leu",
          "transcript": "XM_017021523.2",
          "protein_id": "XP_016877012.1",
          "transcript_support_level": null,
          "aa_start": 1569,
          "aa_end": null,
          "aa_length": 1801,
          "cds_start": 4705,
          "cds_end": null,
          "cds_length": 5406,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017021523.2"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4705A>C",
          "hgvs_p": "p.Ile1569Leu",
          "transcript": "XM_047431631.1",
          "protein_id": "XP_047287587.1",
          "transcript_support_level": null,
          "aa_start": 1569,
          "aa_end": null,
          "aa_length": 1801,
          "cds_start": 4705,
          "cds_end": null,
          "cds_length": 5406,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047431631.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4690A>C",
          "hgvs_p": "p.Ile1564Leu",
          "transcript": "XM_047431632.1",
          "protein_id": "XP_047287588.1",
          "transcript_support_level": null,
          "aa_start": 1564,
          "aa_end": null,
          "aa_length": 1796,
          "cds_start": 4690,
          "cds_end": null,
          "cds_length": 5391,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047431632.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.4690A>C",
          "hgvs_p": "p.Ile1564Leu",
          "transcript": "XM_047431633.1",
          "protein_id": "XP_047287589.1",
          "transcript_support_level": null,
          "aa_start": 1564,
          "aa_end": null,
          "aa_length": 1796,
          "cds_start": 4690,
          "cds_end": null,
          "cds_length": 5391,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047431633.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.3520A>C",
          "hgvs_p": "p.Ile1174Leu",
          "transcript": "XM_047431634.1",
          "protein_id": "XP_047287590.1",
          "transcript_support_level": null,
          "aa_start": 1174,
          "aa_end": null,
          "aa_length": 1658,
          "cds_start": 3520,
          "cds_end": null,
          "cds_length": 4977,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047431634.1"
        },
        {
          "aa_ref": "I",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "c.2719A>C",
          "hgvs_p": "p.Ile907Leu",
          "transcript": "XM_011537037.4",
          "protein_id": "XP_011535339.1",
          "transcript_support_level": null,
          "aa_start": 907,
          "aa_end": null,
          "aa_length": 1391,
          "cds_start": 2719,
          "cds_end": null,
          "cds_length": 4176,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011537037.4"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.523A>C",
          "hgvs_p": null,
          "transcript": "ENST00000555013.1",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": "ENST00000555013.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.466A>C",
          "hgvs_p": null,
          "transcript": "ENST00000557110.2",
          "protein_id": "ENSP00000451846.2",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000557110.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*3501A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696642.1",
          "protein_id": "ENSP00000512775.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696642.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.426A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696644.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": "retained_intron",
          "feature": "ENST00000696644.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.580A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696645.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": "retained_intron",
          "feature": "ENST00000696645.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 19,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.4690A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696647.1",
          "protein_id": "ENSP00000512778.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696647.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*2715A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696648.1",
          "protein_id": "ENSP00000512779.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696648.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.4638A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696650.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": "retained_intron",
          "feature": "ENST00000696650.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*529A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696663.1",
          "protein_id": "ENSP00000512789.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696663.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*446A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696675.1",
          "protein_id": "ENSP00000512799.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696675.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.3505A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696685.1",
          "protein_id": "ENSP00000512808.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696685.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.1427A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696686.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": "retained_intron",
          "feature": "ENST00000696686.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*3501A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696642.1",
          "protein_id": "ENSP00000512775.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696642.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*2715A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696648.1",
          "protein_id": "ENSP00000512779.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696648.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*529A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696663.1",
          "protein_id": "ENSP00000512789.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696663.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "FANCM",
          "gene_hgnc_id": 23168,
          "hgvs_c": "n.*446A>C",
          "hgvs_p": null,
          "transcript": "ENST00000696675.1",
          "protein_id": "ENSP00000512799.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000696675.1"
        }
      ],
      "gene_symbol": "FANCM",
      "gene_hgnc_id": 23168,
      "dbsnp": "rs540558068",
      "frequency_reference_population": 0.0000065640056,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": 0,
      "gnomad_genomes_af": 0.00000656401,
      "gnomad_exomes_ac": 0,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.09541651606559753,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.232,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1264,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.35,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -0.153,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 0,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_020937.4",
          "gene_symbol": "FANCM",
          "hgnc_id": 23168,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD,AR",
          "hgvs_c": "c.4690A>C",
          "hgvs_p": "p.Ile1564Leu"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}