← 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: 1-225377313-T-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "1",
      "pos": 225377313,
      "ref": "T",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "NM_001367479.1",
      "consequences": [
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12593T>C",
          "hgvs_p": "p.Leu4198Pro",
          "transcript": "NM_001367479.1",
          "protein_id": "NP_001354408.1",
          "transcript_support_level": null,
          "aa_start": 4198,
          "aa_end": null,
          "aa_length": 4617,
          "cds_start": 12593,
          "cds_end": null,
          "cds_length": 13854,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000682510.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001367479.1"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12593T>C",
          "hgvs_p": "p.Leu4198Pro",
          "transcript": "ENST00000682510.1",
          "protein_id": "ENSP00000508305.1",
          "transcript_support_level": null,
          "aa_start": 4198,
          "aa_end": null,
          "aa_length": 4617,
          "cds_start": 12593,
          "cds_end": null,
          "cds_length": 13854,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001367479.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000682510.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 40,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "n.*804T>C",
          "hgvs_p": null,
          "transcript": "ENST00000327794.10",
          "protein_id": "ENSP00000328980.6",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000327794.10"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 34,
          "exon_rank_end": null,
          "exon_count": 40,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "n.*804T>C",
          "hgvs_p": null,
          "transcript": "ENST00000327794.10",
          "protein_id": "ENSP00000328980.6",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000327794.10"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 77,
          "exon_rank_end": null,
          "exon_count": 84,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12287T>C",
          "hgvs_p": "p.Leu4096Pro",
          "transcript": "ENST00000430092.5",
          "protein_id": "ENSP00000414402.1",
          "transcript_support_level": 5,
          "aa_start": 4096,
          "aa_end": null,
          "aa_length": 4515,
          "cds_start": 12287,
          "cds_end": null,
          "cds_length": 13548,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000430092.5"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 76,
          "exon_rank_end": null,
          "exon_count": 83,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12287T>C",
          "hgvs_p": "p.Leu4096Pro",
          "transcript": "ENST00000439375.6",
          "protein_id": "ENSP00000392061.2",
          "transcript_support_level": 5,
          "aa_start": 4096,
          "aa_end": null,
          "aa_length": 4515,
          "cds_start": 12287,
          "cds_end": null,
          "cds_length": 13548,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000439375.6"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 54,
          "exon_rank_end": null,
          "exon_count": 61,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.9263T>C",
          "hgvs_p": "p.Leu3088Pro",
          "transcript": "ENST00000445597.6",
          "protein_id": "ENSP00000409472.2",
          "transcript_support_level": 5,
          "aa_start": 3088,
          "aa_end": null,
          "aa_length": 3507,
          "cds_start": 9263,
          "cds_end": null,
          "cds_length": 10524,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000445597.6"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12590T>C",
          "hgvs_p": "p.Leu4197Pro",
          "transcript": "XM_011544058.3",
          "protein_id": "XP_011542360.1",
          "transcript_support_level": null,
          "aa_start": 4197,
          "aa_end": null,
          "aa_length": 4616,
          "cds_start": 12590,
          "cds_end": null,
          "cds_length": 13851,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544058.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12545T>C",
          "hgvs_p": "p.Leu4182Pro",
          "transcript": "XM_011544059.3",
          "protein_id": "XP_011542361.1",
          "transcript_support_level": null,
          "aa_start": 4182,
          "aa_end": null,
          "aa_length": 4601,
          "cds_start": 12545,
          "cds_end": null,
          "cds_length": 13806,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544059.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12518T>C",
          "hgvs_p": "p.Leu4173Pro",
          "transcript": "XM_017000295.2",
          "protein_id": "XP_016855784.1",
          "transcript_support_level": null,
          "aa_start": 4173,
          "aa_end": null,
          "aa_length": 4592,
          "cds_start": 12518,
          "cds_end": null,
          "cds_length": 13779,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017000295.2"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12500T>C",
          "hgvs_p": "p.Leu4167Pro",
          "transcript": "XM_006711735.4",
          "protein_id": "XP_006711798.1",
          "transcript_support_level": null,
          "aa_start": 4167,
          "aa_end": null,
          "aa_length": 4586,
          "cds_start": 12500,
          "cds_end": null,
          "cds_length": 13761,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_006711735.4"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12494T>C",
          "hgvs_p": "p.Leu4165Pro",
          "transcript": "XM_017000296.2",
          "protein_id": "XP_016855785.1",
          "transcript_support_level": null,
          "aa_start": 4165,
          "aa_end": null,
          "aa_length": 4584,
          "cds_start": 12494,
          "cds_end": null,
          "cds_length": 13755,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017000296.2"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12488T>C",
          "hgvs_p": "p.Leu4163Pro",
          "transcript": "XM_011544061.3",
          "protein_id": "XP_011542363.1",
          "transcript_support_level": null,
          "aa_start": 4163,
          "aa_end": null,
          "aa_length": 4582,
          "cds_start": 12488,
          "cds_end": null,
          "cds_length": 13749,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544061.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12476T>C",
          "hgvs_p": "p.Leu4159Pro",
          "transcript": "XM_017000297.2",
          "protein_id": "XP_016855786.1",
          "transcript_support_level": null,
          "aa_start": 4159,
          "aa_end": null,
          "aa_length": 4578,
          "cds_start": 12476,
          "cds_end": null,
          "cds_length": 13737,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017000297.2"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 86,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12437T>C",
          "hgvs_p": "p.Leu4146Pro",
          "transcript": "XM_011544062.3",
          "protein_id": "XP_011542364.1",
          "transcript_support_level": null,
          "aa_start": 4146,
          "aa_end": null,
          "aa_length": 4565,
          "cds_start": 12437,
          "cds_end": null,
          "cds_length": 13698,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544062.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12434T>C",
          "hgvs_p": "p.Leu4145Pro",
          "transcript": "XM_011544063.3",
          "protein_id": "XP_011542365.1",
          "transcript_support_level": null,
          "aa_start": 4145,
          "aa_end": null,
          "aa_length": 4564,
          "cds_start": 12434,
          "cds_end": null,
          "cds_length": 13695,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544063.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12425T>C",
          "hgvs_p": "p.Leu4142Pro",
          "transcript": "XM_011544064.3",
          "protein_id": "XP_011542366.1",
          "transcript_support_level": null,
          "aa_start": 4142,
          "aa_end": null,
          "aa_length": 4561,
          "cds_start": 12425,
          "cds_end": null,
          "cds_length": 13686,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544064.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12401T>C",
          "hgvs_p": "p.Leu4134Pro",
          "transcript": "XM_011544065.3",
          "protein_id": "XP_011542367.1",
          "transcript_support_level": null,
          "aa_start": 4134,
          "aa_end": null,
          "aa_length": 4553,
          "cds_start": 12401,
          "cds_end": null,
          "cds_length": 13662,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544065.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12377T>C",
          "hgvs_p": "p.Leu4126Pro",
          "transcript": "XM_011544066.3",
          "protein_id": "XP_011542368.1",
          "transcript_support_level": null,
          "aa_start": 4126,
          "aa_end": null,
          "aa_length": 4545,
          "cds_start": 12377,
          "cds_end": null,
          "cds_length": 13638,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544066.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 78,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12365T>C",
          "hgvs_p": "p.Leu4122Pro",
          "transcript": "XM_011544067.3",
          "protein_id": "XP_011542369.1",
          "transcript_support_level": null,
          "aa_start": 4122,
          "aa_end": null,
          "aa_length": 4541,
          "cds_start": 12365,
          "cds_end": null,
          "cds_length": 13626,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544067.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 79,
          "exon_rank_end": null,
          "exon_count": 85,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12593T>C",
          "hgvs_p": "p.Leu4198Pro",
          "transcript": "XM_047445624.1",
          "protein_id": "XP_047301580.1",
          "transcript_support_level": null,
          "aa_start": 4198,
          "aa_end": null,
          "aa_length": 4504,
          "cds_start": 12593,
          "cds_end": null,
          "cds_length": 13515,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445624.1"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 77,
          "exon_rank_end": null,
          "exon_count": 84,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12239T>C",
          "hgvs_p": "p.Leu4080Pro",
          "transcript": "XM_011544069.3",
          "protein_id": "XP_011542371.1",
          "transcript_support_level": null,
          "aa_start": 4080,
          "aa_end": null,
          "aa_length": 4499,
          "cds_start": 12239,
          "cds_end": null,
          "cds_length": 13500,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544069.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 77,
          "exon_rank_end": null,
          "exon_count": 84,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12215T>C",
          "hgvs_p": "p.Leu4072Pro",
          "transcript": "XM_011544070.3",
          "protein_id": "XP_011542372.1",
          "transcript_support_level": null,
          "aa_start": 4072,
          "aa_end": null,
          "aa_length": 4491,
          "cds_start": 12215,
          "cds_end": null,
          "cds_length": 13476,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544070.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 76,
          "exon_rank_end": null,
          "exon_count": 83,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.12065T>C",
          "hgvs_p": "p.Leu4022Pro",
          "transcript": "XM_011544071.3",
          "protein_id": "XP_011542373.1",
          "transcript_support_level": null,
          "aa_start": 4022,
          "aa_end": null,
          "aa_length": 4441,
          "cds_start": 12065,
          "cds_end": null,
          "cds_length": 13326,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544071.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 72,
          "exon_rank_end": null,
          "exon_count": 79,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.11276T>C",
          "hgvs_p": "p.Leu3759Pro",
          "transcript": "XM_011544072.3",
          "protein_id": "XP_011542374.1",
          "transcript_support_level": null,
          "aa_start": 3759,
          "aa_end": null,
          "aa_length": 4178,
          "cds_start": 11276,
          "cds_end": null,
          "cds_length": 12537,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544072.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 66,
          "exon_rank_end": null,
          "exon_count": 73,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.10841T>C",
          "hgvs_p": "p.Leu3614Pro",
          "transcript": "XM_011544073.3",
          "protein_id": "XP_011542375.1",
          "transcript_support_level": null,
          "aa_start": 3614,
          "aa_end": null,
          "aa_length": 4033,
          "cds_start": 10841,
          "cds_end": null,
          "cds_length": 12102,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544073.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 63,
          "exon_rank_end": null,
          "exon_count": 70,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.10211T>C",
          "hgvs_p": "p.Leu3404Pro",
          "transcript": "XM_011544074.3",
          "protein_id": "XP_011542376.1",
          "transcript_support_level": null,
          "aa_start": 3404,
          "aa_end": null,
          "aa_length": 3823,
          "cds_start": 10211,
          "cds_end": null,
          "cds_length": 11472,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544074.3"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 61,
          "exon_rank_end": null,
          "exon_count": 68,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.9440T>C",
          "hgvs_p": "p.Leu3147Pro",
          "transcript": "XM_011544076.2",
          "protein_id": "XP_011542378.1",
          "transcript_support_level": null,
          "aa_start": 3147,
          "aa_end": null,
          "aa_length": 3566,
          "cds_start": 9440,
          "cds_end": null,
          "cds_length": 10701,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544076.2"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 53,
          "exon_rank_end": null,
          "exon_count": 60,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.8000T>C",
          "hgvs_p": "p.Leu2667Pro",
          "transcript": "XM_017000299.2",
          "protein_id": "XP_016855788.1",
          "transcript_support_level": null,
          "aa_start": 2667,
          "aa_end": null,
          "aa_length": 3086,
          "cds_start": 8000,
          "cds_end": null,
          "cds_length": 9261,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017000299.2"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 45,
          "exon_rank_end": null,
          "exon_count": 52,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.7151T>C",
          "hgvs_p": "p.Leu2384Pro",
          "transcript": "XM_011544081.2",
          "protein_id": "XP_011542383.1",
          "transcript_support_level": null,
          "aa_start": 2384,
          "aa_end": null,
          "aa_length": 2803,
          "cds_start": 7151,
          "cds_end": null,
          "cds_length": 8412,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011544081.2"
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 39,
          "exon_rank_end": null,
          "exon_count": 46,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DNAH14",
          "gene_hgnc_id": 2945,
          "hgvs_c": "c.6173T>C",
          "hgvs_p": "p.Leu2058Pro",
          "transcript": "XM_047445671.1",
          "protein_id": "XP_047301627.1",
          "transcript_support_level": null,
          "aa_start": 2058,
          "aa_end": null,
          "aa_length": 2477,
          "cds_start": 6173,
          "cds_end": null,
          "cds_length": 7434,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445671.1"
        }
      ],
      "gene_symbol": "DNAH14",
      "gene_hgnc_id": 2945,
      "dbsnp": "rs3856154",
      "frequency_reference_population": 0.63429415,
      "hom_count_reference_population": 317763,
      "allele_count_reference_population": 982424,
      "gnomad_exomes_af": 0.640061,
      "gnomad_genomes_af": 0.581304,
      "gnomad_exomes_ac": 894053,
      "gnomad_genomes_ac": 88371,
      "gnomad_exomes_homalt": 290431,
      "gnomad_genomes_homalt": 27332,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.0000013369600537771476,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.061,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0403,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.85,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 1.797,
      "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": -20,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Very_Strong,BA1",
      "acmg_by_gene": [
        {
          "score": -20,
          "benign_score": 20,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BA1"
          ],
          "verdict": "Benign",
          "transcript": "NM_001367479.1",
          "gene_symbol": "DNAH14",
          "hgnc_id": 2945,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.12593T>C",
          "hgvs_p": "p.Leu4198Pro"
        }
      ],
      "clinvar_disease": "not provided,not specified",
      "clinvar_classification": "Benign",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "B:2",
      "phenotype_combined": "not specified|not provided",
      "pathogenicity_classification_combined": "Benign",
      "custom_annotations": null
    }
  ],
  "message": null
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.