← 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: 17-68250275-A-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "17",
      "pos": 68250275,
      "ref": "A",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "ENST00000359904.8",
      "consequences": [
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_016627.5",
          "protein_id": "NP_057711.3",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 751,
          "cdna_end": null,
          "cdna_length": 1932,
          "mane_select": "ENST00000359904.8",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000359904.8",
          "protein_id": "ENSP00000352976.3",
          "transcript_support_level": 2,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 751,
          "cdna_end": null,
          "cdna_length": 1932,
          "mane_select": "NM_016627.5",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000392720.6",
          "protein_id": "ENSP00000376481.2",
          "transcript_support_level": 1,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 198,
          "cdna_end": null,
          "cdna_length": 1378,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000577985.5",
          "protein_id": "ENSP00000464635.1",
          "transcript_support_level": 1,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 1076,
          "cdna_end": null,
          "cdna_length": 2257,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000612294.4",
          "protein_id": "ENSP00000483162.1",
          "transcript_support_level": 1,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 308,
          "cdna_end": null,
          "cdna_length": 1498,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001033569.2",
          "protein_id": "NP_001028741.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 198,
          "cdna_end": null,
          "cdna_length": 1379,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001033570.2",
          "protein_id": "NP_001028742.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 194,
          "cdna_end": null,
          "cdna_length": 1375,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001033571.1",
          "protein_id": "NP_001028743.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 209,
          "cdna_end": null,
          "cdna_length": 1399,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001033572.1",
          "protein_id": "NP_001028744.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 205,
          "cdna_end": null,
          "cdna_length": 1395,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001289054.2",
          "protein_id": "NP_001275983.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 178,
          "cdna_end": null,
          "cdna_length": 1359,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001289056.2",
          "protein_id": "NP_001275985.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 269,
          "cdna_end": null,
          "cdna_length": 1450,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346471.1",
          "protein_id": "NP_001333400.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 198,
          "cdna_end": null,
          "cdna_length": 1388,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346472.1",
          "protein_id": "NP_001333401.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 343,
          "cdna_end": null,
          "cdna_length": 1533,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346473.1",
          "protein_id": "NP_001333402.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 264,
          "cdna_end": null,
          "cdna_length": 1454,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346474.2",
          "protein_id": "NP_001333403.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 446,
          "cdna_end": null,
          "cdna_length": 1627,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346475.2",
          "protein_id": "NP_001333404.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 442,
          "cdna_end": null,
          "cdna_length": 1623,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346476.2",
          "protein_id": "NP_001333405.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 182,
          "cdna_end": null,
          "cdna_length": 1363,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346477.2",
          "protein_id": "NP_001333406.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 228,
          "cdna_end": null,
          "cdna_length": 1409,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346478.2",
          "protein_id": "NP_001333407.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 222,
          "cdna_end": null,
          "cdna_length": 1403,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346479.2",
          "protein_id": "NP_001333408.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 274,
          "cdna_end": null,
          "cdna_length": 1455,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000577866.5",
          "protein_id": "ENSP00000464133.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 376,
          "cdna_end": null,
          "cdna_length": 1492,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000580753.5",
          "protein_id": "ENSP00000463012.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 174,
          "cdna_end": null,
          "cdna_length": 1339,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000674770.2",
          "protein_id": "ENSP00000501934.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 912,
          "cdna_end": null,
          "cdna_length": 2650,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001033574.2",
          "protein_id": "NP_001028746.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 302,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 909,
          "cdna_start": 751,
          "cdna_end": null,
          "cdna_length": 1758,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "NM_001346480.1",
          "protein_id": "NP_001333409.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 302,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 909,
          "cdna_start": 198,
          "cdna_end": null,
          "cdna_length": 1214,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000359783.8",
          "protein_id": "ENSP00000352831.4",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 302,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 909,
          "cdna_start": 743,
          "cdna_end": null,
          "cdna_length": 1722,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000584494.5",
          "protein_id": "ENSP00000461935.1",
          "transcript_support_level": 3,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 247,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 745,
          "cdna_start": 240,
          "cdna_end": null,
          "cdna_length": 897,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000579724.5",
          "protein_id": "ENSP00000463596.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 205,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 620,
          "cdna_start": 190,
          "cdna_end": null,
          "cdna_length": 722,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000577273.1",
          "protein_id": "ENSP00000462140.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 201,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 606,
          "cdna_start": 89,
          "cdna_end": null,
          "cdna_length": 895,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000580837.5",
          "protein_id": "ENSP00000462292.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 196,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 591,
          "cdna_start": 210,
          "cdna_end": null,
          "cdna_length": 713,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "ENST00000580548.5",
          "protein_id": "ENSP00000462484.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 194,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 586,
          "cdna_start": 331,
          "cdna_end": null,
          "cdna_length": 829,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "XM_024450786.2",
          "protein_id": "XP_024306554.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 270,
          "cdna_end": null,
          "cdna_length": 1460,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "XM_024450787.2",
          "protein_id": "XP_024306555.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 218,
          "cdna_end": null,
          "cdna_length": 1408,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "XM_024450788.2",
          "protein_id": "XP_024306556.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 260,
          "cdna_end": null,
          "cdna_length": 1450,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "N",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His",
          "transcript": "XM_047436210.1",
          "protein_id": "XP_047292166.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 360,
          "cds_start": 88,
          "cds_end": null,
          "cds_length": 1083,
          "cdna_start": 457,
          "cdna_end": null,
          "cdna_length": 1647,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.1115A>C",
          "hgvs_p": null,
          "transcript": "ENST00000578175.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": 2276,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.751A>C",
          "hgvs_p": null,
          "transcript": "NR_144442.2",
          "protein_id": null,
          "transcript_support_level": null,
          "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": 2141,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.751A>C",
          "hgvs_p": null,
          "transcript": "NR_144443.2",
          "protein_id": null,
          "transcript_support_level": null,
          "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": 2151,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "5_prime_UTR_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.-25A>C",
          "hgvs_p": null,
          "transcript": "NM_001346481.1",
          "protein_id": "NP_001333410.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1398,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "5_prime_UTR_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.-25A>C",
          "hgvs_p": null,
          "transcript": "NM_001346482.1",
          "protein_id": "NP_001333411.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1405,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "5_prime_UTR_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.-25A>C",
          "hgvs_p": null,
          "transcript": "NM_001346483.2",
          "protein_id": "NP_001333412.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1389,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "5_prime_UTR_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.-25A>C",
          "hgvs_p": null,
          "transcript": "NM_001346484.2",
          "protein_id": "NP_001333413.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1942,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "5_prime_UTR_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.-25A>C",
          "hgvs_p": null,
          "transcript": "XM_047436211.1",
          "protein_id": "XP_047292167.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 326,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 981,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1290,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 7,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.5-85A>C",
          "hgvs_p": null,
          "transcript": "NM_001346485.2",
          "protein_id": "NP_001333414.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 304,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 915,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 1389,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 2,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "c.89-85A>C",
          "hgvs_p": null,
          "transcript": "ENST00000584837.5",
          "protein_id": "ENSP00000463053.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 220,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 665,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 672,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 4,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.197+147A>C",
          "hgvs_p": null,
          "transcript": "ENST00000582430.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": 387,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "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": 6,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.258-85A>C",
          "hgvs_p": null,
          "transcript": "ENST00000585050.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": 784,
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.-171A>C",
          "hgvs_p": null,
          "transcript": "ENST00000584350.1",
          "protein_id": "ENSP00000463857.1",
          "transcript_support_level": 3,
          "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": 845,
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "AMZ2",
          "gene_hgnc_id": 28041,
          "hgvs_c": "n.-9A>C",
          "hgvs_p": null,
          "transcript": "ENST00000584836.5",
          "protein_id": "ENSP00000463344.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": 783,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "AMZ2",
      "gene_hgnc_id": 28041,
      "dbsnp": "rs3213690",
      "frequency_reference_population": 0.0000013680957,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 2,
      "gnomad_exomes_af": 0.0000013681,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 2,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.03409960865974426,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.015,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0778,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.68,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.851,
      "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": -2,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "PM2,BP4_Strong",
      "acmg_by_gene": [
        {
          "score": -2,
          "benign_score": 4,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Strong"
          ],
          "verdict": "Likely_benign",
          "transcript": "ENST00000359904.8",
          "gene_symbol": "AMZ2",
          "hgnc_id": 28041,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.88A>C",
          "hgvs_p": "p.Asn30His"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}