← 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: 8-140252867-G-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "8",
      "pos": 140252867,
      "ref": "G",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001374682.1",
      "consequences": [
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "NM_001160372.4",
          "protein_id": "NP_001153844.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000438773.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001160372.4"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000438773.4",
          "protein_id": "ENSP00000405060.3",
          "transcript_support_level": 1,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001160372.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000438773.4"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.1870C>A",
          "hgvs_p": "p.Gln624Lys",
          "transcript": "ENST00000520857.5",
          "protein_id": "ENSP00000430116.1",
          "transcript_support_level": 1,
          "aa_start": 624,
          "aa_end": null,
          "aa_length": 991,
          "cds_start": 1870,
          "cds_end": null,
          "cds_length": 2976,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000520857.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "n.746C>A",
          "hgvs_p": null,
          "transcript": "ENST00000521667.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": "ENST00000521667.5"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2362C>A",
          "hgvs_p": "p.Gln788Lys",
          "transcript": "NM_001374682.1",
          "protein_id": "NP_001361611.1",
          "transcript_support_level": null,
          "aa_start": 788,
          "aa_end": null,
          "aa_length": 1155,
          "cds_start": 2362,
          "cds_end": null,
          "cds_length": 3468,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001374682.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2362C>A",
          "hgvs_p": "p.Gln788Lys",
          "transcript": "ENST00000889106.1",
          "protein_id": "ENSP00000559165.1",
          "transcript_support_level": null,
          "aa_start": 788,
          "aa_end": null,
          "aa_length": 1155,
          "cds_start": 2362,
          "cds_end": null,
          "cds_length": 3468,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889106.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "NM_031466.8",
          "protein_id": "NP_113654.5",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_031466.8"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000648948.2",
          "protein_id": "ENSP00000498020.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000648948.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000889103.1",
          "protein_id": "ENSP00000559162.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889103.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000889105.1",
          "protein_id": "ENSP00000559164.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889105.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000889109.1",
          "protein_id": "ENSP00000559168.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1148,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3447,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889109.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000967712.1",
          "protein_id": "ENSP00000637771.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1146,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3441,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000967712.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2314C>A",
          "hgvs_p": "p.Gln772Lys",
          "transcript": "NM_001321646.2",
          "protein_id": "NP_001308575.1",
          "transcript_support_level": null,
          "aa_start": 772,
          "aa_end": null,
          "aa_length": 1139,
          "cds_start": 2314,
          "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": "NM_001321646.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2314C>A",
          "hgvs_p": "p.Gln772Lys",
          "transcript": "ENST00000920031.1",
          "protein_id": "ENSP00000590090.1",
          "transcript_support_level": null,
          "aa_start": 772,
          "aa_end": null,
          "aa_length": 1137,
          "cds_start": 2314,
          "cds_end": null,
          "cds_length": 3414,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920031.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2305C>A",
          "hgvs_p": "p.Gln769Lys",
          "transcript": "ENST00000920035.1",
          "protein_id": "ENSP00000590094.1",
          "transcript_support_level": null,
          "aa_start": 769,
          "aa_end": null,
          "aa_length": 1136,
          "cds_start": 2305,
          "cds_end": null,
          "cds_length": 3411,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920035.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "NM_001374683.1",
          "protein_id": "NP_001361612.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3336,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001374683.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "ENST00000967713.1",
          "protein_id": "ENSP00000637772.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3336,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000967713.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2212C>A",
          "hgvs_p": "p.Gln738Lys",
          "transcript": "ENST00000889107.1",
          "protein_id": "ENSP00000559166.1",
          "transcript_support_level": null,
          "aa_start": 738,
          "aa_end": null,
          "aa_length": 1105,
          "cds_start": 2212,
          "cds_end": null,
          "cds_length": 3318,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889107.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2314C>A",
          "hgvs_p": "p.Gln772Lys",
          "transcript": "ENST00000920033.1",
          "protein_id": "ENSP00000590092.1",
          "transcript_support_level": null,
          "aa_start": 772,
          "aa_end": null,
          "aa_length": 1102,
          "cds_start": 2314,
          "cds_end": null,
          "cds_length": 3309,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920033.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2197C>A",
          "hgvs_p": "p.Gln733Lys",
          "transcript": "NM_001374684.1",
          "protein_id": "NP_001361613.1",
          "transcript_support_level": null,
          "aa_start": 733,
          "aa_end": null,
          "aa_length": 1100,
          "cds_start": 2197,
          "cds_end": null,
          "cds_length": 3303,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001374684.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2197C>A",
          "hgvs_p": "p.Gln733Lys",
          "transcript": "ENST00000889102.1",
          "protein_id": "ENSP00000559161.1",
          "transcript_support_level": null,
          "aa_start": 733,
          "aa_end": null,
          "aa_length": 1100,
          "cds_start": 2197,
          "cds_end": null,
          "cds_length": 3303,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889102.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2185C>A",
          "hgvs_p": "p.Gln729Lys",
          "transcript": "ENST00000889108.1",
          "protein_id": "ENSP00000559167.1",
          "transcript_support_level": null,
          "aa_start": 729,
          "aa_end": null,
          "aa_length": 1096,
          "cds_start": 2185,
          "cds_end": null,
          "cds_length": 3291,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889108.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2185C>A",
          "hgvs_p": "p.Gln729Lys",
          "transcript": "ENST00000920032.1",
          "protein_id": "ENSP00000590091.1",
          "transcript_support_level": null,
          "aa_start": 729,
          "aa_end": null,
          "aa_length": 1096,
          "cds_start": 2185,
          "cds_end": null,
          "cds_length": 3291,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920032.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2128C>A",
          "hgvs_p": "p.Gln710Lys",
          "transcript": "ENST00000889104.1",
          "protein_id": "ENSP00000559163.1",
          "transcript_support_level": null,
          "aa_start": 710,
          "aa_end": null,
          "aa_length": 1077,
          "cds_start": 2128,
          "cds_end": null,
          "cds_length": 3234,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889104.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2101C>A",
          "hgvs_p": "p.Gln701Lys",
          "transcript": "ENST00000920034.1",
          "protein_id": "ENSP00000590093.1",
          "transcript_support_level": null,
          "aa_start": 701,
          "aa_end": null,
          "aa_length": 1068,
          "cds_start": 2101,
          "cds_end": null,
          "cds_length": 3207,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920034.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2212C>A",
          "hgvs_p": "p.Gln738Lys",
          "transcript": "ENST00000967714.1",
          "protein_id": "ENSP00000637773.1",
          "transcript_support_level": null,
          "aa_start": 738,
          "aa_end": null,
          "aa_length": 1068,
          "cds_start": 2212,
          "cds_end": null,
          "cds_length": 3207,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000967714.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2068C>A",
          "hgvs_p": "p.Gln690Lys",
          "transcript": "ENST00000889101.1",
          "protein_id": "ENSP00000559160.1",
          "transcript_support_level": null,
          "aa_start": 690,
          "aa_end": null,
          "aa_length": 1057,
          "cds_start": 2068,
          "cds_end": null,
          "cds_length": 3174,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000889101.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.157C>A",
          "hgvs_p": "p.Gln53Lys",
          "transcript": "ENST00000634178.1",
          "protein_id": "ENSP00000488007.1",
          "transcript_support_level": 2,
          "aa_start": 53,
          "aa_end": null,
          "aa_length": 90,
          "cds_start": 157,
          "cds_end": null,
          "cds_length": 273,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000634178.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2608C>A",
          "hgvs_p": "p.Gln870Lys",
          "transcript": "XM_011517326.3",
          "protein_id": "XP_011515628.1",
          "transcript_support_level": null,
          "aa_start": 870,
          "aa_end": null,
          "aa_length": 1237,
          "cds_start": 2608,
          "cds_end": null,
          "cds_length": 3714,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011517326.3"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2635C>A",
          "hgvs_p": "p.Gln879Lys",
          "transcript": "XM_011517328.3",
          "protein_id": "XP_011515630.1",
          "transcript_support_level": null,
          "aa_start": 879,
          "aa_end": null,
          "aa_length": 1128,
          "cds_start": 2635,
          "cds_end": null,
          "cds_length": 3387,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011517328.3"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2608C>A",
          "hgvs_p": "p.Gln870Lys",
          "transcript": "XM_047422294.1",
          "protein_id": "XP_047278250.1",
          "transcript_support_level": null,
          "aa_start": 870,
          "aa_end": null,
          "aa_length": 1119,
          "cds_start": 2608,
          "cds_end": null,
          "cds_length": 3360,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422294.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "XM_047422295.1",
          "protein_id": "XP_047278251.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1041,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3126,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422295.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "XM_047422296.1",
          "protein_id": "XP_047278252.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 1030,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 3093,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422296.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 21,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2314C>A",
          "hgvs_p": "p.Gln772Lys",
          "transcript": "XM_047422297.1",
          "protein_id": "XP_047278253.1",
          "transcript_support_level": null,
          "aa_start": 772,
          "aa_end": null,
          "aa_length": 1021,
          "cds_start": 2314,
          "cds_end": null,
          "cds_length": 3066,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422297.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2635C>A",
          "hgvs_p": "p.Gln879Lys",
          "transcript": "XM_017013893.2",
          "protein_id": "XP_016869382.1",
          "transcript_support_level": null,
          "aa_start": 879,
          "aa_end": null,
          "aa_length": 989,
          "cds_start": 2635,
          "cds_end": null,
          "cds_length": 2970,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017013893.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2635C>A",
          "hgvs_p": "p.Gln879Lys",
          "transcript": "XM_047422298.1",
          "protein_id": "XP_047278254.1",
          "transcript_support_level": null,
          "aa_start": 879,
          "aa_end": null,
          "aa_length": 964,
          "cds_start": 2635,
          "cds_end": null,
          "cds_length": 2895,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422298.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2341C>A",
          "hgvs_p": "p.Gln781Lys",
          "transcript": "XM_047422299.1",
          "protein_id": "XP_047278255.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 891,
          "cds_start": 2341,
          "cds_end": null,
          "cds_length": 2676,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047422299.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.961C>A",
          "hgvs_p": "p.Gln321Lys",
          "transcript": "XM_017013894.3",
          "protein_id": "XP_016869383.1",
          "transcript_support_level": null,
          "aa_start": 321,
          "aa_end": null,
          "aa_length": 688,
          "cds_start": 961,
          "cds_end": null,
          "cds_length": 2067,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017013894.3"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.790C>A",
          "hgvs_p": "p.Gln264Lys",
          "transcript": "XM_011517330.3",
          "protein_id": "XP_011515632.1",
          "transcript_support_level": null,
          "aa_start": 264,
          "aa_end": null,
          "aa_length": 631,
          "cds_start": 790,
          "cds_end": null,
          "cds_length": 1896,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011517330.3"
        },
        {
          "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": 21,
          "intron_rank": 14,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "c.2251+22791C>A",
          "hgvs_p": null,
          "transcript": "ENST00000920036.1",
          "protein_id": "ENSP00000590095.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 1088,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 3267,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000920036.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "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": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "n.187C>A",
          "hgvs_p": null,
          "transcript": "ENST00000518839.1",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": "ENST00000518839.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "n.188C>A",
          "hgvs_p": null,
          "transcript": "ENST00000520532.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "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": "ENST00000520532.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "TRAPPC9",
          "gene_hgnc_id": 30832,
          "hgvs_c": "n.2430C>A",
          "hgvs_p": null,
          "transcript": "NR_164662.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_164662.1"
        }
      ],
      "gene_symbol": "TRAPPC9",
      "gene_hgnc_id": 30832,
      "dbsnp": "rs758925630",
      "frequency_reference_population": 0.0000075248868,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 11,
      "gnomad_exomes_af": 0.00000752489,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 11,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.11340400576591492,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.193,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0738,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.47,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 4.783,
      "phylop100way_prediction": "Uncertain_significance",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 0,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001374682.1",
          "gene_symbol": "TRAPPC9",
          "hgnc_id": 30832,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.2362C>A",
          "hgvs_p": "p.Gln788Lys"
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}