← 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: 16-2103574-A-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "16",
      "pos": 2103574,
      "ref": "A",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "ENST00000262304.9",
      "consequences": [
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 46,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8483T>C",
          "hgvs_p": "p.Leu2828Pro",
          "transcript": "NM_001009944.3",
          "protein_id": "NP_001009944.3",
          "transcript_support_level": null,
          "aa_start": 2828,
          "aa_end": null,
          "aa_length": 4303,
          "cds_start": 8483,
          "cds_end": null,
          "cds_length": 12912,
          "cdna_start": 8692,
          "cdna_end": null,
          "cdna_length": 14140,
          "mane_select": "ENST00000262304.9",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 46,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8483T>C",
          "hgvs_p": "p.Leu2828Pro",
          "transcript": "ENST00000262304.9",
          "protein_id": "ENSP00000262304.4",
          "transcript_support_level": 1,
          "aa_start": 2828,
          "aa_end": null,
          "aa_length": 4303,
          "cds_start": 8483,
          "cds_end": null,
          "cds_length": 12912,
          "cdna_start": 8692,
          "cdna_end": null,
          "cdna_length": 14140,
          "mane_select": "NM_001009944.3",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 46,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8483T>C",
          "hgvs_p": "p.Leu2828Pro",
          "transcript": "ENST00000423118.5",
          "protein_id": "ENSP00000399501.1",
          "transcript_support_level": 1,
          "aa_start": 2828,
          "aa_end": null,
          "aa_length": 4302,
          "cds_start": 8483,
          "cds_end": null,
          "cds_length": 12909,
          "cdna_start": 8692,
          "cdna_end": null,
          "cdna_length": 14135,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.220T>C",
          "hgvs_p": null,
          "transcript": "ENST00000480227.5",
          "protein_id": null,
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 2353,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 46,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8483T>C",
          "hgvs_p": "p.Leu2828Pro",
          "transcript": "NM_000296.4",
          "protein_id": "NP_000287.4",
          "transcript_support_level": null,
          "aa_start": 2828,
          "aa_end": null,
          "aa_length": 4302,
          "cds_start": 8483,
          "cds_end": null,
          "cds_length": 12909,
          "cdna_start": 8692,
          "cdna_end": null,
          "cdna_length": 14137,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 48,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8618T>C",
          "hgvs_p": "p.Leu2873Pro",
          "transcript": "XM_047434208.1",
          "protein_id": "XP_047290164.1",
          "transcript_support_level": null,
          "aa_start": 2873,
          "aa_end": null,
          "aa_length": 4348,
          "cds_start": 8618,
          "cds_end": null,
          "cds_length": 13047,
          "cdna_start": 8827,
          "cdna_end": null,
          "cdna_length": 14275,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 47,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8546T>C",
          "hgvs_p": "p.Leu2849Pro",
          "transcript": "XM_047434209.1",
          "protein_id": "XP_047290165.1",
          "transcript_support_level": null,
          "aa_start": 2849,
          "aa_end": null,
          "aa_length": 4324,
          "cds_start": 8546,
          "cds_end": null,
          "cds_length": 12975,
          "cdna_start": 8755,
          "cdna_end": null,
          "cdna_length": 14203,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 47,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8537T>C",
          "hgvs_p": "p.Leu2846Pro",
          "transcript": "XM_011522528.4",
          "protein_id": "XP_011520830.1",
          "transcript_support_level": null,
          "aa_start": 2846,
          "aa_end": null,
          "aa_length": 4321,
          "cds_start": 8537,
          "cds_end": null,
          "cds_length": 12966,
          "cdna_start": 8726,
          "cdna_end": null,
          "cdna_length": 14174,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 47,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8537T>C",
          "hgvs_p": "p.Leu2846Pro",
          "transcript": "XM_011522529.3",
          "protein_id": "XP_011520831.1",
          "transcript_support_level": null,
          "aa_start": 2846,
          "aa_end": null,
          "aa_length": 4320,
          "cds_start": 8537,
          "cds_end": null,
          "cds_length": 12963,
          "cdna_start": 8726,
          "cdna_end": null,
          "cdna_length": 14171,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 48,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8465T>C",
          "hgvs_p": "p.Leu2822Pro",
          "transcript": "XM_047434210.1",
          "protein_id": "XP_047290166.1",
          "transcript_support_level": null,
          "aa_start": 2822,
          "aa_end": null,
          "aa_length": 4297,
          "cds_start": 8465,
          "cds_end": null,
          "cds_length": 12894,
          "cdna_start": 9723,
          "cdna_end": null,
          "cdna_length": 15171,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 48,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.8408T>C",
          "hgvs_p": "p.Leu2803Pro",
          "transcript": "XM_047434211.1",
          "protein_id": "XP_047290167.1",
          "transcript_support_level": null,
          "aa_start": 2803,
          "aa_end": null,
          "aa_length": 4278,
          "cds_start": 8408,
          "cds_end": null,
          "cds_length": 12837,
          "cdna_start": 8627,
          "cdna_end": null,
          "cdna_length": 14075,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 39,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.6578T>C",
          "hgvs_p": "p.Leu2193Pro",
          "transcript": "XM_047434212.1",
          "protein_id": "XP_047290168.1",
          "transcript_support_level": null,
          "aa_start": 2193,
          "aa_end": null,
          "aa_length": 3668,
          "cds_start": 6578,
          "cds_end": null,
          "cds_length": 11007,
          "cdna_start": 6679,
          "cdna_end": null,
          "cdna_length": 12127,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 36,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.5561T>C",
          "hgvs_p": "p.Leu1854Pro",
          "transcript": "XM_011522537.2",
          "protein_id": "XP_011520839.1",
          "transcript_support_level": null,
          "aa_start": 1854,
          "aa_end": null,
          "aa_length": 3329,
          "cds_start": 5561,
          "cds_end": null,
          "cds_length": 9990,
          "cdna_start": 5650,
          "cdna_end": null,
          "cdna_length": 11098,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 36,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.5555T>C",
          "hgvs_p": "p.Leu1852Pro",
          "transcript": "XM_047434213.1",
          "protein_id": "XP_047290169.1",
          "transcript_support_level": null,
          "aa_start": 1852,
          "aa_end": null,
          "aa_length": 3327,
          "cds_start": 5555,
          "cds_end": null,
          "cds_length": 9984,
          "cdna_start": 5644,
          "cdna_end": null,
          "cdna_length": 11092,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "L",
          "aa_alt": "P",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 35,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.5438T>C",
          "hgvs_p": "p.Leu1813Pro",
          "transcript": "XM_005255370.4",
          "protein_id": "XP_005255427.1",
          "transcript_support_level": null,
          "aa_start": 1813,
          "aa_end": null,
          "aa_length": 3288,
          "cds_start": 5438,
          "cds_end": null,
          "cds_length": 9867,
          "cdna_start": 5610,
          "cdna_end": null,
          "cdna_length": 11058,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.1728T>C",
          "hgvs_p": null,
          "transcript": "ENST00000415938.7",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 3386,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.114T>C",
          "hgvs_p": null,
          "transcript": "ENST00000471603.6",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 2505,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.2208T>C",
          "hgvs_p": null,
          "transcript": "ENST00000483731.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 4193,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.2619T>C",
          "hgvs_p": null,
          "transcript": "ENST00000486339.6",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 4443,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.3170T>C",
          "hgvs_p": null,
          "transcript": "ENST00000487932.5",
          "protein_id": "ENSP00000457132.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 6464,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.2719T>C",
          "hgvs_p": null,
          "transcript": "ENST00000496574.6",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 4419,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.907T>C",
          "hgvs_p": null,
          "transcript": "ENST00000561991.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 964,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.216T>C",
          "hgvs_p": null,
          "transcript": "ENST00000562297.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 2040,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": 3,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "c.391+151T>C",
          "hgvs_p": null,
          "transcript": "ENST00000567946.1",
          "protein_id": "ENSP00000457984.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 605,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 1820,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1822,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.-43T>C",
          "hgvs_p": null,
          "transcript": "ENST00000475889.1",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 511,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PKD1",
          "gene_hgnc_id": 9008,
          "hgvs_c": "n.*215T>C",
          "hgvs_p": null,
          "transcript": "ENST00000565639.6",
          "protein_id": null,
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1976,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "PKD1",
      "gene_hgnc_id": 9008,
      "dbsnp": "rs1555451143",
      "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.846488356590271,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.28,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.7751,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.01,
      "bayesdelnoaf_prediction": "Uncertain_significance",
      "phylop100way_score": 1.697,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 12,
      "acmg_classification": "Pathogenic",
      "acmg_criteria": "PM2,PP3_Moderate,PP5_Very_Strong",
      "acmg_by_gene": [
        {
          "score": 12,
          "benign_score": 0,
          "pathogenic_score": 12,
          "criteria": [
            "PM2",
            "PP3_Moderate",
            "PP5_Very_Strong"
          ],
          "verdict": "Pathogenic",
          "transcript": "ENST00000262304.9",
          "gene_symbol": "PKD1",
          "hgnc_id": 9008,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD,AR",
          "hgvs_c": "c.8483T>C",
          "hgvs_p": "p.Leu2828Pro"
        }
      ],
      "clinvar_disease": " adult type,Polycystic kidney disease,not provided",
      "clinvar_classification": "Likely pathogenic",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "LP:2",
      "phenotype_combined": "not provided|Polycystic kidney disease, adult type",
      "pathogenicity_classification_combined": "Likely pathogenic",
      "custom_annotations": null
    }
  ],
  "message": null
}