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

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "2",
      "pos": 3575640,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001011.4",
      "consequences": [
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "NM_001011.4",
          "protein_id": "NP_001002.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000645674.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001011.4"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000645674.2",
          "protein_id": "ENSP00000496757.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001011.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000645674.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000462576.5",
          "protein_id": "ENSP00000495273.1",
          "transcript_support_level": 1,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000462576.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "n.8C>T",
          "hgvs_p": null,
          "transcript": "ENST00000479123.1",
          "protein_id": null,
          "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": "retained_intron",
          "feature": "ENST00000479123.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "n.283C>T",
          "hgvs_p": null,
          "transcript": "ENST00000481006.1",
          "protein_id": null,
          "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": "retained_intron",
          "feature": "ENST00000481006.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000403564.5",
          "protein_id": "ENSP00000385018.1",
          "transcript_support_level": 2,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000403564.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000406376.1",
          "protein_id": "ENSP00000385286.1",
          "transcript_support_level": 3,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000406376.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000646909.1",
          "protein_id": "ENSP00000496654.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000646909.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000905977.1",
          "protein_id": "ENSP00000576036.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000905977.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920288.1",
          "protein_id": "ENSP00000590347.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920288.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920290.1",
          "protein_id": "ENSP00000590349.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920290.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920291.1",
          "protein_id": "ENSP00000590350.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920291.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920308.1",
          "protein_id": "ENSP00000590367.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920308.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920292.1",
          "protein_id": "ENSP00000590351.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 188,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920292.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920301.1",
          "protein_id": "ENSP00000590360.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 188,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920301.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000407445.8",
          "protein_id": "ENSP00000385729.3",
          "transcript_support_level": 2,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 187,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 564,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000407445.8"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920297.1",
          "protein_id": "ENSP00000590356.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 185,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 558,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920297.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920300.1",
          "protein_id": "ENSP00000590359.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 184,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 555,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920300.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920293.1",
          "protein_id": "ENSP00000590352.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 182,
          "cds_start": 31,
          "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": "ENST00000920293.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920295.1",
          "protein_id": "ENSP00000590354.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 170,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 513,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920295.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920303.1",
          "protein_id": "ENSP00000590362.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 170,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 513,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920303.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920304.1",
          "protein_id": "ENSP00000590363.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 170,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 513,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920304.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920309.1",
          "protein_id": "ENSP00000590368.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 170,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 513,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920309.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000647131.1",
          "protein_id": "ENSP00000494995.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 168,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 509,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000647131.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920302.1",
          "protein_id": "ENSP00000590361.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 146,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 441,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920302.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920294.1",
          "protein_id": "ENSP00000590353.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 140,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 423,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920294.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920305.1",
          "protein_id": "ENSP00000590364.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 140,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 423,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920305.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920298.1",
          "protein_id": "ENSP00000590357.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 137,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 414,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920298.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920296.1",
          "protein_id": "ENSP00000590355.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 122,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 369,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920296.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920299.1",
          "protein_id": "ENSP00000590358.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 104,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 315,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920299.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920289.1",
          "protein_id": "ENSP00000590348.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 102,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 309,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920289.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser",
          "transcript": "ENST00000920306.1",
          "protein_id": "ENSP00000590365.1",
          "transcript_support_level": null,
          "aa_start": 11,
          "aa_end": null,
          "aa_length": 102,
          "cds_start": 31,
          "cds_end": null,
          "cds_length": 309,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920306.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "splice_region_variant",
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "c.24+7C>T",
          "hgvs_p": null,
          "transcript": "ENST00000920307.1",
          "protein_id": "ENSP00000590366.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 160,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 483,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920307.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "n.77C>T",
          "hgvs_p": null,
          "transcript": "ENST00000491937.6",
          "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": "ENST00000491937.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "upstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RPS7",
          "gene_hgnc_id": 10440,
          "hgvs_c": "n.-206C>T",
          "hgvs_p": null,
          "transcript": "ENST00000645540.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": "pseudogene",
          "feature": "ENST00000645540.1"
        }
      ],
      "gene_symbol": "RPS7",
      "gene_hgnc_id": 10440,
      "dbsnp": "rs1661256950",
      "frequency_reference_population": 6.8533427e-7,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": 6.85334e-7,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 1,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.46077510714530945,
      "computational_prediction_selected": "Uncertain_significance",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.009999999776482582,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.414,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.6212,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.16,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 7.497,
      "phylop100way_prediction": "Uncertain_significance",
      "spliceai_max_score": 0.01,
      "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": 2,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2",
      "acmg_by_gene": [
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PM2"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001011.4",
          "gene_symbol": "RPS7",
          "hgnc_id": 10440,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.31C>T",
          "hgvs_p": "p.Pro11Ser"
        }
      ],
      "clinvar_disease": "Diamond-Blackfan anemia 8",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "Diamond-Blackfan anemia 8",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}