← 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: 15-83618106-C-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "15",
      "pos": 83618106,
      "ref": "C",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_001324182.2",
      "consequences": [
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.863C>A",
          "hgvs_p": "p.Pro288His",
          "transcript": "NM_003027.5",
          "protein_id": "NP_003018.3",
          "transcript_support_level": null,
          "aa_start": 288,
          "aa_end": null,
          "aa_length": 347,
          "cds_start": 863,
          "cds_end": null,
          "cds_length": 1044,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000427482.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_003027.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.863C>A",
          "hgvs_p": "p.Pro288His",
          "transcript": "ENST00000427482.7",
          "protein_id": "ENSP00000391372.2",
          "transcript_support_level": 1,
          "aa_start": 288,
          "aa_end": null,
          "aa_length": 347,
          "cds_start": 863,
          "cds_end": null,
          "cds_length": 1044,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_003027.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000427482.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.*658C>A",
          "hgvs_p": null,
          "transcript": "ENST00000563901.5",
          "protein_id": "ENSP00000456249.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": "ENST00000563901.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.*658C>A",
          "hgvs_p": null,
          "transcript": "ENST00000563901.5",
          "protein_id": "ENSP00000456249.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": "ENST00000563901.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.929C>A",
          "hgvs_p": "p.Pro310His",
          "transcript": "ENST00000903482.1",
          "protein_id": "ENSP00000573541.1",
          "transcript_support_level": null,
          "aa_start": 310,
          "aa_end": null,
          "aa_length": 369,
          "cds_start": 929,
          "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": "ENST00000903482.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.1033C>A",
          "hgvs_p": "p.Pro345Thr",
          "transcript": "NM_001324182.2",
          "protein_id": "NP_001311111.1",
          "transcript_support_level": null,
          "aa_start": 345,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 1033,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001324182.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.887C>A",
          "hgvs_p": "p.Pro296His",
          "transcript": "NM_001301109.2",
          "protein_id": "NP_001288038.1",
          "transcript_support_level": null,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 355,
          "cds_start": 887,
          "cds_end": null,
          "cds_length": 1068,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001301109.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.887C>A",
          "hgvs_p": "p.Pro296His",
          "transcript": "NM_001324183.2",
          "protein_id": "NP_001311112.1",
          "transcript_support_level": null,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 355,
          "cds_start": 887,
          "cds_end": null,
          "cds_length": 1068,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001324183.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.887C>A",
          "hgvs_p": "p.Pro296His",
          "transcript": "ENST00000324537.5",
          "protein_id": "ENSP00000320092.5",
          "transcript_support_level": 2,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 355,
          "cds_start": 887,
          "cds_end": null,
          "cds_length": 1068,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000324537.5"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.794C>A",
          "hgvs_p": "p.Pro265His",
          "transcript": "ENST00000951042.1",
          "protein_id": "ENSP00000621101.1",
          "transcript_support_level": null,
          "aa_start": 265,
          "aa_end": null,
          "aa_length": 324,
          "cds_start": 794,
          "cds_end": null,
          "cds_length": 975,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951042.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.758C>A",
          "hgvs_p": "p.Pro253His",
          "transcript": "NM_001324184.2",
          "protein_id": "NP_001311113.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 312,
          "cds_start": 758,
          "cds_end": null,
          "cds_length": 939,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001324184.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.758C>A",
          "hgvs_p": "p.Pro253His",
          "transcript": "NM_001324186.2",
          "protein_id": "NP_001311115.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 312,
          "cds_start": 758,
          "cds_end": null,
          "cds_length": 939,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001324186.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.656C>A",
          "hgvs_p": "p.Pro219His",
          "transcript": "NM_001301108.2",
          "protein_id": "NP_001288037.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 278,
          "cds_start": 656,
          "cds_end": null,
          "cds_length": 837,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001301108.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.656C>A",
          "hgvs_p": "p.Pro219His",
          "transcript": "NM_001324185.2",
          "protein_id": "NP_001311114.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 278,
          "cds_start": 656,
          "cds_end": null,
          "cds_length": 837,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001324185.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.656C>A",
          "hgvs_p": "p.Pro219His",
          "transcript": "NM_001324187.1",
          "protein_id": "NP_001311116.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 278,
          "cds_start": 656,
          "cds_end": null,
          "cds_length": 837,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001324187.1"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.887C>A",
          "hgvs_p": "p.Pro296His",
          "transcript": "XM_011521889.2",
          "protein_id": "XP_011520191.1",
          "transcript_support_level": null,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 355,
          "cds_start": 887,
          "cds_end": null,
          "cds_length": 1068,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011521889.2"
        },
        {
          "aa_ref": "P",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "c.656C>A",
          "hgvs_p": "p.Pro219His",
          "transcript": "XM_017022486.3",
          "protein_id": "XP_016877975.1",
          "transcript_support_level": null,
          "aa_start": 219,
          "aa_end": null,
          "aa_length": 278,
          "cds_start": 656,
          "cds_end": null,
          "cds_length": 837,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017022486.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.259C>A",
          "hgvs_p": null,
          "transcript": "ENST00000467735.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": "pseudogene",
          "feature": "ENST00000467735.2"
        },
        {
          "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": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.222C>A",
          "hgvs_p": null,
          "transcript": "ENST00000564054.1",
          "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": "pseudogene",
          "feature": "ENST00000564054.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1253C>A",
          "hgvs_p": null,
          "transcript": "NR_125370.2",
          "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": "NR_125370.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1397C>A",
          "hgvs_p": null,
          "transcript": "NR_136711.2",
          "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": "NR_136711.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1584C>A",
          "hgvs_p": null,
          "transcript": "NR_136712.2",
          "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": "NR_136712.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1246C>A",
          "hgvs_p": null,
          "transcript": "NR_136713.2",
          "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": "NR_136713.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1205C>A",
          "hgvs_p": null,
          "transcript": "NR_136714.2",
          "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": "NR_136714.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": 10,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1379+8640C>A",
          "hgvs_p": null,
          "transcript": "XR_007064483.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": "XR_007064483.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": 10,
          "intron_rank_end": null,
          "gene_symbol": "SH3GL3",
          "gene_hgnc_id": 10832,
          "hgvs_c": "n.1379+8640C>A",
          "hgvs_p": null,
          "transcript": "XR_007064484.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": "XR_007064484.1"
        }
      ],
      "gene_symbol": "SH3GL3",
      "gene_hgnc_id": 10832,
      "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.8182104825973511,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.421,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.9325,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.12,
      "bayesdelnoaf_prediction": "Uncertain_significance",
      "phylop100way_score": 7.128,
      "phylop100way_prediction": "Uncertain_significance",
      "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": 3,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,PP3",
      "acmg_by_gene": [
        {
          "score": 3,
          "benign_score": 0,
          "pathogenic_score": 3,
          "criteria": [
            "PM2",
            "PP3"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001324182.2",
          "gene_symbol": "SH3GL3",
          "hgnc_id": 10832,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.1033C>A",
          "hgvs_p": "p.Pro345Thr"
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}