← Back to variant description

GeneBe API Showcase

This page demonstrates how to use the GeneBe API to query variant information. The API provides programmatic access to genomic annotations and variant data.

API presented here should be used for checking single variants. If you want to check many variants at once, please use other API endpoints that you will find in the documentation.

Documentation & Advanced Usage

Complete API documentation:docs.genebe.net/docs/api/overview/

Interactive endpoint tester:api.genebe.net/cloud/gb-api-doc/swagger-ui/

Python client for pandas:pypi.org/project/genebe/

Java CLI for VCF files:github.com/pstawinski/genebe-cli

All tools documented at:docs.genebe.net

API Request Examples for Variant: 15-90905989-A-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "15",
      "pos": 90905989,
      "ref": "A",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "NM_001320977.2",
      "consequences": [
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "NM_006122.4",
          "protein_id": "NP_006113.2",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000559717.6",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_006122.4"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "ENST00000559717.6",
          "protein_id": "ENSP00000452948.1",
          "transcript_support_level": 2,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_006122.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000559717.6"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "ENST00000360468.7",
          "protein_id": "ENSP00000353655.3",
          "transcript_support_level": 1,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000360468.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.680A>G",
          "hgvs_p": null,
          "transcript": "ENST00000558161.5",
          "protein_id": "ENSP00000452631.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000558161.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.1042A>G",
          "hgvs_p": null,
          "transcript": "ENST00000560192.5",
          "protein_id": null,
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "retained_intron",
          "feature": "ENST00000560192.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.680A>G",
          "hgvs_p": null,
          "transcript": "ENST00000560451.6",
          "protein_id": "ENSP00000453999.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000560451.6"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "NM_001320977.2",
          "protein_id": "NP_001307906.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1175,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3528,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001320977.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "ENST00000855659.1",
          "protein_id": "ENSP00000525718.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1156,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3471,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000855659.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "ENST00000855658.1",
          "protein_id": "ENSP00000525717.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1139,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3420,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000855658.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "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": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.308A>G",
          "hgvs_p": "p.Asn103Ser",
          "transcript": "ENST00000559132.3",
          "protein_id": "ENSP00000452897.3",
          "transcript_support_level": 3,
          "aa_start": 103,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 308,
          "cds_end": null,
          "cds_length": 582,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000559132.3"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_005254910.4",
          "protein_id": "XP_005254967.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1175,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3528,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005254910.4"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_017022184.2",
          "protein_id": "XP_016877673.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1175,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3528,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017022184.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_024449920.2",
          "protein_id": "XP_024305688.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1175,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3528,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024449920.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_024449921.2",
          "protein_id": "XP_024305689.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1175,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3528,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024449921.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432507.1",
          "protein_id": "XP_047288463.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1175,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3528,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432507.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_017022185.2",
          "protein_id": "XP_016877674.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017022185.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_024449922.2",
          "protein_id": "XP_024305690.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024449922.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_024449923.2",
          "protein_id": "XP_024305691.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024449923.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_024449924.2",
          "protein_id": "XP_024305692.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024449924.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432508.1",
          "protein_id": "XP_047288464.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432508.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432509.1",
          "protein_id": "XP_047288465.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432509.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432510.1",
          "protein_id": "XP_047288466.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432510.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432511.1",
          "protein_id": "XP_047288467.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 1003,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 3012,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432511.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432512.1",
          "protein_id": "XP_047288468.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 938,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 2817,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432512.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432513.1",
          "protein_id": "XP_047288469.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 796,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 2391,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432513.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser",
          "transcript": "XM_047432514.1",
          "protein_id": "XP_047288470.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 785,
          "cds_start": 680,
          "cds_end": null,
          "cds_length": 2358,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047432514.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.10A>G",
          "hgvs_p": null,
          "transcript": "ENST00000558640.5",
          "protein_id": null,
          "transcript_support_level": 3,
          "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": "ENST00000558640.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.1009A>G",
          "hgvs_p": null,
          "transcript": "NR_135502.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_135502.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.1009A>G",
          "hgvs_p": null,
          "transcript": "NR_135503.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_135503.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "MAN2A2",
          "gene_hgnc_id": 6825,
          "hgvs_c": "n.698A>G",
          "hgvs_p": null,
          "transcript": "NR_135504.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": "NR_135504.1"
        }
      ],
      "gene_symbol": "MAN2A2",
      "gene_hgnc_id": 6825,
      "dbsnp": "rs775545570",
      "frequency_reference_population": 0.000020447565,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 33,
      "gnomad_exomes_af": 0.0000218924,
      "gnomad_genomes_af": 0.00000657082,
      "gnomad_exomes_ac": 32,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.032481610774993896,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.009999999776482582,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.142,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0486,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.71,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 1.21,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.01,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": -6,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "BP4_Strong,BP6_Moderate",
      "acmg_by_gene": [
        {
          "score": -6,
          "benign_score": 6,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Moderate"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001320977.2",
          "gene_symbol": "MAN2A2",
          "hgnc_id": 6825,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.680A>G",
          "hgvs_p": "p.Asn227Ser"
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Likely benign",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "LB:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Likely benign",
      "custom_annotations": null
    }
  ],
  "message": null
}