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

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "20",
      "pos": 63889210,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_199360.3",
      "consequences": [
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.497C>T",
          "hgvs_p": "p.Ser166Leu",
          "transcript": "NM_003288.4",
          "protein_id": "NP_003279.2",
          "transcript_support_level": null,
          "aa_start": 166,
          "aa_end": null,
          "aa_length": 206,
          "cds_start": 497,
          "cds_end": null,
          "cds_length": 621,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000346249.9",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_003288.4"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.497C>T",
          "hgvs_p": "p.Ser166Leu",
          "transcript": "ENST00000346249.9",
          "protein_id": "ENSP00000343547.4",
          "transcript_support_level": 1,
          "aa_start": 166,
          "aa_end": null,
          "aa_length": 206,
          "cds_start": 497,
          "cds_end": null,
          "cds_length": 621,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_003288.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000346249.9"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.539C>T",
          "hgvs_p": "p.Ser180Leu",
          "transcript": "ENST00000352482.8",
          "protein_id": "ENSP00000344647.4",
          "transcript_support_level": 1,
          "aa_start": 180,
          "aa_end": null,
          "aa_length": 220,
          "cds_start": 539,
          "cds_end": null,
          "cds_length": 663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000352482.8"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.437C>T",
          "hgvs_p": "p.Ser146Leu",
          "transcript": "ENST00000348257.9",
          "protein_id": "ENSP00000343554.5",
          "transcript_support_level": 1,
          "aa_start": 146,
          "aa_end": null,
          "aa_length": 186,
          "cds_start": 437,
          "cds_end": null,
          "cds_length": 561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000348257.9"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.761C>T",
          "hgvs_p": "p.Ser254Leu",
          "transcript": "ENST00000941625.1",
          "protein_id": "ENSP00000611684.1",
          "transcript_support_level": null,
          "aa_start": 254,
          "aa_end": null,
          "aa_length": 294,
          "cds_start": 761,
          "cds_end": null,
          "cds_length": 885,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941625.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.566C>T",
          "hgvs_p": "p.Ser189Leu",
          "transcript": "NM_199360.3",
          "protein_id": "NP_955392.1",
          "transcript_support_level": null,
          "aa_start": 189,
          "aa_end": null,
          "aa_length": 229,
          "cds_start": 566,
          "cds_end": null,
          "cds_length": 690,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_199360.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.566C>T",
          "hgvs_p": "p.Ser189Leu",
          "transcript": "ENST00000217121.9",
          "protein_id": "ENSP00000217121.5",
          "transcript_support_level": 2,
          "aa_start": 189,
          "aa_end": null,
          "aa_length": 229,
          "cds_start": 566,
          "cds_end": null,
          "cds_length": 690,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000217121.9"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.545C>T",
          "hgvs_p": "p.Ser182Leu",
          "transcript": "ENST00000879324.1",
          "protein_id": "ENSP00000549383.1",
          "transcript_support_level": null,
          "aa_start": 182,
          "aa_end": null,
          "aa_length": 222,
          "cds_start": 545,
          "cds_end": null,
          "cds_length": 669,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879324.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.542C>T",
          "hgvs_p": "p.Ser181Leu",
          "transcript": "ENST00000938339.1",
          "protein_id": "ENSP00000608398.1",
          "transcript_support_level": null,
          "aa_start": 181,
          "aa_end": null,
          "aa_length": 221,
          "cds_start": 542,
          "cds_end": null,
          "cds_length": 666,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000938339.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.539C>T",
          "hgvs_p": "p.Ser180Leu",
          "transcript": "NM_199362.3",
          "protein_id": "NP_955394.1",
          "transcript_support_level": null,
          "aa_start": 180,
          "aa_end": null,
          "aa_length": 220,
          "cds_start": 539,
          "cds_end": null,
          "cds_length": 663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_199362.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.512C>T",
          "hgvs_p": "p.Ser171Leu",
          "transcript": "ENST00000879322.1",
          "protein_id": "ENSP00000549381.1",
          "transcript_support_level": null,
          "aa_start": 171,
          "aa_end": null,
          "aa_length": 211,
          "cds_start": 512,
          "cds_end": null,
          "cds_length": 636,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879322.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.509C>T",
          "hgvs_p": "p.Ser170Leu",
          "transcript": "ENST00000941624.1",
          "protein_id": "ENSP00000611683.1",
          "transcript_support_level": null,
          "aa_start": 170,
          "aa_end": null,
          "aa_length": 210,
          "cds_start": 509,
          "cds_end": null,
          "cds_length": 633,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941624.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.506C>T",
          "hgvs_p": "p.Ser169Leu",
          "transcript": "NM_199361.3",
          "protein_id": "NP_955393.1",
          "transcript_support_level": null,
          "aa_start": 169,
          "aa_end": null,
          "aa_length": 209,
          "cds_start": 506,
          "cds_end": null,
          "cds_length": 630,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_199361.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.506C>T",
          "hgvs_p": "p.Ser169Leu",
          "transcript": "ENST00000351424.8",
          "protein_id": "ENSP00000340006.4",
          "transcript_support_level": 2,
          "aa_start": 169,
          "aa_end": null,
          "aa_length": 209,
          "cds_start": 506,
          "cds_end": null,
          "cds_length": 630,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000351424.8"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.497C>T",
          "hgvs_p": "p.Ser166Leu",
          "transcript": "ENST00000938341.1",
          "protein_id": "ENSP00000608400.1",
          "transcript_support_level": null,
          "aa_start": 166,
          "aa_end": null,
          "aa_length": 204,
          "cds_start": 497,
          "cds_end": null,
          "cds_length": 615,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000938341.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.482C>T",
          "hgvs_p": "p.Ser161Leu",
          "transcript": "ENST00000938343.1",
          "protein_id": "ENSP00000608402.1",
          "transcript_support_level": null,
          "aa_start": 161,
          "aa_end": null,
          "aa_length": 201,
          "cds_start": 482,
          "cds_end": null,
          "cds_length": 606,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000938343.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.479C>T",
          "hgvs_p": "p.Ser160Leu",
          "transcript": "NM_199363.3",
          "protein_id": "NP_955395.1",
          "transcript_support_level": null,
          "aa_start": 160,
          "aa_end": null,
          "aa_length": 200,
          "cds_start": 479,
          "cds_end": null,
          "cds_length": 603,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_199363.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.479C>T",
          "hgvs_p": "p.Ser160Leu",
          "transcript": "ENST00000358548.4",
          "protein_id": "ENSP00000351350.4",
          "transcript_support_level": 2,
          "aa_start": 160,
          "aa_end": null,
          "aa_length": 200,
          "cds_start": 479,
          "cds_end": null,
          "cds_length": 603,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000358548.4"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.437C>T",
          "hgvs_p": "p.Ser146Leu",
          "transcript": "ENST00000938344.1",
          "protein_id": "ENSP00000608403.1",
          "transcript_support_level": null,
          "aa_start": 146,
          "aa_end": null,
          "aa_length": 198,
          "cds_start": 437,
          "cds_end": null,
          "cds_length": 597,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000938344.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.437C>T",
          "hgvs_p": "p.Ser146Leu",
          "transcript": "NM_199359.3",
          "protein_id": "NP_955391.1",
          "transcript_support_level": null,
          "aa_start": 146,
          "aa_end": null,
          "aa_length": 186,
          "cds_start": 437,
          "cds_end": null,
          "cds_length": 561,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_199359.3"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.437C>T",
          "hgvs_p": "p.Ser146Leu",
          "transcript": "ENST00000938340.1",
          "protein_id": "ENSP00000608399.1",
          "transcript_support_level": null,
          "aa_start": 146,
          "aa_end": null,
          "aa_length": 184,
          "cds_start": 437,
          "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": "ENST00000938340.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ser143Leu",
          "transcript": "ENST00000941623.1",
          "protein_id": "ENSP00000611682.1",
          "transcript_support_level": null,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 183,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 552,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941623.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.422C>T",
          "hgvs_p": "p.Ser141Leu",
          "transcript": "NM_001243891.2",
          "protein_id": "NP_001230820.1",
          "transcript_support_level": null,
          "aa_start": 141,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": 422,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001243891.2"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.422C>T",
          "hgvs_p": "p.Ser141Leu",
          "transcript": "ENST00000879320.1",
          "protein_id": "ENSP00000549379.1",
          "transcript_support_level": null,
          "aa_start": 141,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": 422,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879320.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.395C>T",
          "hgvs_p": "p.Ser132Leu",
          "transcript": "ENST00000879321.1",
          "protein_id": "ENSP00000549380.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 172,
          "cds_start": 395,
          "cds_end": null,
          "cds_length": 519,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879321.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.395C>T",
          "hgvs_p": "p.Ser132Leu",
          "transcript": "ENST00000938342.1",
          "protein_id": "ENSP00000608401.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 172,
          "cds_start": 395,
          "cds_end": null,
          "cds_length": 519,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000938342.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.368C>T",
          "hgvs_p": "p.Ser123Leu",
          "transcript": "NM_001243892.2",
          "protein_id": "NP_001230821.1",
          "transcript_support_level": null,
          "aa_start": 123,
          "aa_end": null,
          "aa_length": 163,
          "cds_start": 368,
          "cds_end": null,
          "cds_length": 492,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001243892.2"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.368C>T",
          "hgvs_p": "p.Ser123Leu",
          "transcript": "ENST00000369927.8",
          "protein_id": "ENSP00000358943.2",
          "transcript_support_level": 4,
          "aa_start": 123,
          "aa_end": null,
          "aa_length": 163,
          "cds_start": 368,
          "cds_end": null,
          "cds_length": 492,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000369927.8"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.362C>T",
          "hgvs_p": "p.Ser121Leu",
          "transcript": "ENST00000879323.1",
          "protein_id": "ENSP00000549382.1",
          "transcript_support_level": null,
          "aa_start": 121,
          "aa_end": null,
          "aa_length": 161,
          "cds_start": 362,
          "cds_end": null,
          "cds_length": 486,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000879323.1"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.335C>T",
          "hgvs_p": "p.Ser112Leu",
          "transcript": "NM_001243894.2",
          "protein_id": "NP_001230823.1",
          "transcript_support_level": null,
          "aa_start": 112,
          "aa_end": null,
          "aa_length": 152,
          "cds_start": 335,
          "cds_end": null,
          "cds_length": 459,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001243894.2"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.335C>T",
          "hgvs_p": "p.Ser112Leu",
          "transcript": "ENST00000611972.4",
          "protein_id": "ENSP00000482370.1",
          "transcript_support_level": 3,
          "aa_start": 112,
          "aa_end": null,
          "aa_length": 152,
          "cds_start": 335,
          "cds_end": null,
          "cds_length": 459,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000611972.4"
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.257C>T",
          "hgvs_p": "p.Ser86Leu",
          "transcript": "ENST00000938345.1",
          "protein_id": "ENSP00000608404.1",
          "transcript_support_level": null,
          "aa_start": 86,
          "aa_end": null,
          "aa_length": 126,
          "cds_start": 257,
          "cds_end": null,
          "cds_length": 381,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000938345.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.477-640C>T",
          "hgvs_p": null,
          "transcript": "NM_001243895.2",
          "protein_id": "NP_001230824.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 222,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 669,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001243895.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "c.477-640C>T",
          "hgvs_p": null,
          "transcript": "ENST00000615907.4",
          "protein_id": "ENSP00000482024.1",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 222,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 669,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000615907.4"
        },
        {
          "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": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "n.2329C>T",
          "hgvs_p": null,
          "transcript": "ENST00000474176.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": "ENST00000474176.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TPD52L2",
          "gene_hgnc_id": 12007,
          "hgvs_c": "n.562C>T",
          "hgvs_p": null,
          "transcript": "NR_045090.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_045090.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": 5,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000290226",
          "gene_hgnc_id": null,
          "hgvs_c": "n.453+6390C>T",
          "hgvs_p": null,
          "transcript": "ENST00000703636.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": "ENST00000703636.1"
        }
      ],
      "gene_symbol": "TPD52L2",
      "gene_hgnc_id": 12007,
      "dbsnp": "rs150777439",
      "frequency_reference_population": 0.00009049471,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 146,
      "gnomad_exomes_af": 0.0000889678,
      "gnomad_genomes_af": 0.000105158,
      "gnomad_exomes_ac": 130,
      "gnomad_genomes_ac": 16,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.4182214140892029,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.383,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.6419,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.18,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 6.785,
      "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": 1,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4",
      "acmg_by_gene": [
        {
          "score": 1,
          "benign_score": 1,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_199360.3",
          "gene_symbol": "TPD52L2",
          "hgnc_id": 12007,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.566C>T",
          "hgvs_p": "p.Ser189Leu"
        },
        {
          "score": 1,
          "benign_score": 1,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000703636.1",
          "gene_symbol": "ENSG00000290226",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.453+6390C>T",
          "hgvs_p": null
        }
      ],
      "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
}