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

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "7",
      "pos": 5527755,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001101.5",
      "consequences": [
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "NM_001101.5",
          "protein_id": "NP_001092.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000646664.1",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001101.5"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000646664.1",
          "protein_id": "ENSP00000494750.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001101.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000646664.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "n.*784G>A",
          "hgvs_p": null,
          "transcript": "ENST00000425660.5",
          "protein_id": "ENSP00000409264.1",
          "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": "ENST00000425660.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "n.*784G>A",
          "hgvs_p": null,
          "transcript": "ENST00000425660.5",
          "protein_id": "ENSP00000409264.1",
          "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": "ENST00000425660.5"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000493945.6",
          "protein_id": "ENSP00000494269.1",
          "transcript_support_level": 5,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000493945.6"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000642480.2",
          "protein_id": "ENSP00000495995.2",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000642480.2"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000674681.1",
          "protein_id": "ENSP00000502821.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000674681.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000675515.1",
          "protein_id": "ENSP00000501862.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000675515.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000899420.1",
          "protein_id": "ENSP00000569479.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899420.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000899421.1",
          "protein_id": "ENSP00000569480.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899421.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000899425.1",
          "protein_id": "ENSP00000569484.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899425.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000899429.1",
          "protein_id": "ENSP00000569488.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899429.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000919306.1",
          "protein_id": "ENSP00000589365.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919306.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr",
          "transcript": "ENST00000950579.1",
          "protein_id": "ENSP00000620638.1",
          "transcript_support_level": null,
          "aa_start": 374,
          "aa_end": null,
          "aa_length": 375,
          "cds_start": 1121,
          "cds_end": null,
          "cds_length": 1128,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000950579.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1109G>A",
          "hgvs_p": "p.Cys370Tyr",
          "transcript": "ENST00000919299.1",
          "protein_id": "ENSP00000589358.1",
          "transcript_support_level": null,
          "aa_start": 370,
          "aa_end": null,
          "aa_length": 371,
          "cds_start": 1109,
          "cds_end": null,
          "cds_length": 1116,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919299.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1103G>A",
          "hgvs_p": "p.Cys368Tyr",
          "transcript": "ENST00000919301.1",
          "protein_id": "ENSP00000589360.1",
          "transcript_support_level": null,
          "aa_start": 368,
          "aa_end": null,
          "aa_length": 369,
          "cds_start": 1103,
          "cds_end": null,
          "cds_length": 1110,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919301.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1097G>A",
          "hgvs_p": "p.Cys366Tyr",
          "transcript": "ENST00000899427.1",
          "protein_id": "ENSP00000569486.1",
          "transcript_support_level": null,
          "aa_start": 366,
          "aa_end": null,
          "aa_length": 367,
          "cds_start": 1097,
          "cds_end": null,
          "cds_length": 1104,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899427.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1094G>A",
          "hgvs_p": "p.Cys365Tyr",
          "transcript": "ENST00000899424.1",
          "protein_id": "ENSP00000569483.1",
          "transcript_support_level": null,
          "aa_start": 365,
          "aa_end": null,
          "aa_length": 366,
          "cds_start": 1094,
          "cds_end": null,
          "cds_length": 1101,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899424.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1040G>A",
          "hgvs_p": "p.Cys347Tyr",
          "transcript": "ENST00000899422.1",
          "protein_id": "ENSP00000569481.1",
          "transcript_support_level": null,
          "aa_start": 347,
          "aa_end": null,
          "aa_length": 348,
          "cds_start": 1040,
          "cds_end": null,
          "cds_length": 1047,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899422.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1031G>A",
          "hgvs_p": "p.Cys344Tyr",
          "transcript": "ENST00000899426.1",
          "protein_id": "ENSP00000569485.1",
          "transcript_support_level": null,
          "aa_start": 344,
          "aa_end": null,
          "aa_length": 345,
          "cds_start": 1031,
          "cds_end": null,
          "cds_length": 1038,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899426.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.1028G>A",
          "hgvs_p": "p.Cys343Tyr",
          "transcript": "ENST00000919300.1",
          "protein_id": "ENSP00000589359.1",
          "transcript_support_level": null,
          "aa_start": 343,
          "aa_end": null,
          "aa_length": 344,
          "cds_start": 1028,
          "cds_end": null,
          "cds_length": 1035,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919300.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.992G>A",
          "hgvs_p": "p.Cys331Tyr",
          "transcript": "ENST00000473257.3",
          "protein_id": "ENSP00000501773.1",
          "transcript_support_level": 3,
          "aa_start": 331,
          "aa_end": null,
          "aa_length": 332,
          "cds_start": 992,
          "cds_end": null,
          "cds_length": 999,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000473257.3"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.941G>A",
          "hgvs_p": "p.Cys314Tyr",
          "transcript": "ENST00000919303.1",
          "protein_id": "ENSP00000589362.1",
          "transcript_support_level": null,
          "aa_start": 314,
          "aa_end": null,
          "aa_length": 315,
          "cds_start": 941,
          "cds_end": null,
          "cds_length": 948,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919303.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.911G>A",
          "hgvs_p": "p.Cys304Tyr",
          "transcript": "ENST00000919305.1",
          "protein_id": "ENSP00000589364.1",
          "transcript_support_level": null,
          "aa_start": 304,
          "aa_end": null,
          "aa_length": 305,
          "cds_start": 911,
          "cds_end": null,
          "cds_length": 918,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919305.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.746G>A",
          "hgvs_p": "p.Cys249Tyr",
          "transcript": "ENST00000919298.1",
          "protein_id": "ENSP00000589357.1",
          "transcript_support_level": null,
          "aa_start": 249,
          "aa_end": null,
          "aa_length": 250,
          "cds_start": 746,
          "cds_end": null,
          "cds_length": 753,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919298.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.665G>A",
          "hgvs_p": "p.Cys222Tyr",
          "transcript": "ENST00000919304.1",
          "protein_id": "ENSP00000589363.1",
          "transcript_support_level": null,
          "aa_start": 222,
          "aa_end": null,
          "aa_length": 223,
          "cds_start": 665,
          "cds_end": null,
          "cds_length": 672,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919304.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.542G>A",
          "hgvs_p": "p.Cys181Tyr",
          "transcript": "ENST00000899428.1",
          "protein_id": "ENSP00000569487.1",
          "transcript_support_level": null,
          "aa_start": 181,
          "aa_end": null,
          "aa_length": 182,
          "cds_start": 542,
          "cds_end": null,
          "cds_length": 549,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899428.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.536G>A",
          "hgvs_p": "p.Cys179Tyr",
          "transcript": "ENST00000899423.1",
          "protein_id": "ENSP00000569482.1",
          "transcript_support_level": null,
          "aa_start": 179,
          "aa_end": null,
          "aa_length": 180,
          "cds_start": 536,
          "cds_end": null,
          "cds_length": 543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899423.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.422G>A",
          "hgvs_p": "p.Cys141Tyr",
          "transcript": "ENST00000919302.1",
          "protein_id": "ENSP00000589361.1",
          "transcript_support_level": null,
          "aa_start": 141,
          "aa_end": null,
          "aa_length": 142,
          "cds_start": 422,
          "cds_end": null,
          "cds_length": 429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000919302.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.230G>A",
          "hgvs_p": "p.Cys77Tyr",
          "transcript": "ENST00000464611.1",
          "protein_id": "ENSP00000495059.1",
          "transcript_support_level": 5,
          "aa_start": 77,
          "aa_end": null,
          "aa_length": 78,
          "cds_start": 230,
          "cds_end": null,
          "cds_length": 237,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000464611.1"
        },
        {
          "aa_ref": "C",
          "aa_alt": "Y",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.116G>A",
          "hgvs_p": "p.Cys39Tyr",
          "transcript": "ENST00000676319.1",
          "protein_id": "ENSP00000502193.1",
          "transcript_support_level": null,
          "aa_start": 39,
          "aa_end": null,
          "aa_length": 40,
          "cds_start": 116,
          "cds_end": null,
          "cds_length": 123,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000676319.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.*127G>A",
          "hgvs_p": null,
          "transcript": "ENST00000676397.1",
          "protein_id": "ENSP00000502286.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 334,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1005,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000676397.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "n.1646G>A",
          "hgvs_p": null,
          "transcript": "ENST00000462494.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000462494.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "n.1668G>A",
          "hgvs_p": null,
          "transcript": "ENST00000477812.2",
          "protein_id": null,
          "transcript_support_level": 2,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000477812.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "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": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "n.*664G>A",
          "hgvs_p": null,
          "transcript": "ENST00000676189.1",
          "protein_id": "ENSP00000502538.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": "ENST00000676189.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "n.*664G>A",
          "hgvs_p": null,
          "transcript": "ENST00000676189.1",
          "protein_id": "ENSP00000502538.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": "ENST00000676189.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ACTB",
          "gene_hgnc_id": 132,
          "hgvs_c": "c.*228G>A",
          "hgvs_p": null,
          "transcript": "ENST00000432588.6",
          "protein_id": "ENSP00000407473.2",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 334,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 1005,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000432588.6"
        }
      ],
      "gene_symbol": "ACTB",
      "gene_hgnc_id": 132,
      "dbsnp": null,
      "frequency_reference_population": null,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 0,
      "gnomad_exomes_af": null,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": null,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": null,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.9811489582061768,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.964,
      "revel_prediction": "Pathogenic",
      "alphamissense_score": 0.9984,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.54,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 7.625,
      "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": 7,
      "acmg_classification": "Likely_pathogenic",
      "acmg_criteria": "PM2,PP2,PP3_Strong",
      "acmg_by_gene": [
        {
          "score": 7,
          "benign_score": 0,
          "pathogenic_score": 7,
          "criteria": [
            "PM2",
            "PP2",
            "PP3_Strong"
          ],
          "verdict": "Likely_pathogenic",
          "transcript": "NM_001101.5",
          "gene_symbol": "ACTB",
          "hgnc_id": 132,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.1121G>A",
          "hgvs_p": "p.Cys374Tyr"
        }
      ],
      "clinvar_disease": "not provided",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "not provided",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}