← 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: 21-45509458-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "message": null,
  "variants": [
    {
      "acmg_by_gene": [
        {
          "benign_score": 16,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BS2"
          ],
          "effects": [
            "missense_variant"
          ],
          "gene_symbol": "COL18A1",
          "hgnc_id": 2195,
          "hgvs_c": "c.4597G>A",
          "hgvs_p": "p.Ala1533Thr",
          "inheritance_mode": "AR,AD",
          "pathogenic_score": 0,
          "score": -16,
          "transcript": "NM_130444.3",
          "verdict": "Benign"
        },
        {
          "benign_score": 16,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BS2"
          ],
          "effects": [
            "intron_variant"
          ],
          "gene_symbol": "SLC19A1",
          "hgnc_id": 10937,
          "hgvs_c": "c.1294-10846C>T",
          "hgvs_p": null,
          "inheritance_mode": "AR",
          "pathogenic_score": 0,
          "score": -16,
          "transcript": "ENST00000567670.5",
          "verdict": "Benign"
        }
      ],
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Very_Strong,BS2",
      "acmg_score": -16,
      "allele_count_reference_population": 16175,
      "alphamissense_prediction": null,
      "alphamissense_score": 0.1456,
      "alt": "A",
      "apogee2_prediction": null,
      "apogee2_score": null,
      "bayesdelnoaf_prediction": "Benign",
      "bayesdelnoaf_score": -0.2,
      "chr": "21",
      "clinvar_classification": "Benign/Likely benign",
      "clinvar_disease": "not provided",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "LB:1 B:2",
      "computational_prediction_selected": "Benign",
      "computational_score_selected": 0.006715893745422363,
      "computational_source_selected": "MetaRNN",
      "consequences": [
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1339,
          "aa_ref": "A",
          "aa_start": 1118,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5408,
          "cdna_start": 3418,
          "cds_end": null,
          "cds_length": 4020,
          "cds_start": 3352,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 42,
          "exon_rank": 39,
          "exon_rank_end": null,
          "feature": "NM_001379500.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3352G>A",
          "hgvs_p": "p.Ala1118Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "ENST00000651438.1",
          "protein_coding": true,
          "protein_id": "NP_001366429.1",
          "strand": true,
          "transcript": "NM_001379500.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1339,
          "aa_ref": "A",
          "aa_start": 1118,
          "biotype": "protein_coding",
          "canonical": true,
          "cdna_end": null,
          "cdna_length": 5408,
          "cdna_start": 3418,
          "cds_end": null,
          "cds_length": 4020,
          "cds_start": 3352,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 42,
          "exon_rank": 39,
          "exon_rank_end": null,
          "feature": "ENST00000651438.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3352G>A",
          "hgvs_p": "p.Ala1118Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "NM_001379500.1",
          "protein_coding": true,
          "protein_id": "ENSP00000498485.1",
          "strand": true,
          "transcript": "ENST00000651438.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1519,
          "aa_ref": "A",
          "aa_start": 1298,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5891,
          "cdna_start": 3901,
          "cds_end": null,
          "cds_length": 4560,
          "cds_start": 3892,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000355480.10",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3892G>A",
          "hgvs_p": "p.Ala1298Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000347665.5",
          "strand": true,
          "transcript": "ENST00000355480.10",
          "transcript_support_level": 1
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": 545,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2029,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": 1638,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 6,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000567670.5",
          "gene_hgnc_id": 10937,
          "gene_symbol": "SLC19A1",
          "hgvs_c": "c.1294-10846C>T",
          "hgvs_p": null,
          "intron_rank": 5,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000457278.1",
          "strand": false,
          "transcript": "ENST00000567670.5",
          "transcript_support_level": 1
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": 268,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 3572,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": 807,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 5,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000417954.5",
          "gene_hgnc_id": 10937,
          "gene_symbol": "SLC19A1",
          "hgvs_c": "c.496-10846C>T",
          "hgvs_p": null,
          "intron_rank": 3,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000393988.1",
          "strand": false,
          "transcript": "ENST00000417954.5",
          "transcript_support_level": 1
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1754,
          "aa_ref": "A",
          "aa_start": 1533,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6596,
          "cdna_start": 4606,
          "cds_end": null,
          "cds_length": 5265,
          "cds_start": 4597,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "NM_130444.3",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.4597G>A",
          "hgvs_p": "p.Ala1533Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_569711.2",
          "strand": true,
          "transcript": "NM_130444.3",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1754,
          "aa_ref": "A",
          "aa_start": 1533,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6586,
          "cdna_start": 4597,
          "cds_end": null,
          "cds_length": 5265,
          "cds_start": 4597,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000359759.8",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.4597G>A",
          "hgvs_p": "p.Ala1533Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000352798.4",
          "strand": true,
          "transcript": "ENST00000359759.8",
          "transcript_support_level": 5
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1519,
          "aa_ref": "A",
          "aa_start": 1298,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5891,
          "cdna_start": 3901,
          "cds_end": null,
          "cds_length": 4560,
          "cds_start": 3892,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "NM_030582.4",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3892G>A",
          "hgvs_p": "p.Ala1298Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_085059.2",
          "strand": true,
          "transcript": "NM_030582.4",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1483,
          "aa_ref": "A",
          "aa_start": 1262,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5863,
          "cdna_start": 3873,
          "cds_end": null,
          "cds_length": 4452,
          "cds_start": 3784,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 43,
          "exon_rank": 40,
          "exon_rank_end": null,
          "feature": "ENST00000859062.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3784G>A",
          "hgvs_p": "p.Ala1262Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529121.1",
          "strand": true,
          "transcript": "ENST00000859062.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1421,
          "aa_ref": "A",
          "aa_start": 1200,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4497,
          "cdna_start": 3659,
          "cds_end": null,
          "cds_length": 4266,
          "cds_start": 3598,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000930602.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3598G>A",
          "hgvs_p": "p.Ala1200Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600661.1",
          "strand": true,
          "transcript": "ENST00000930602.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1362,
          "aa_ref": "A",
          "aa_start": 1141,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4317,
          "cdna_start": 3482,
          "cds_end": null,
          "cds_length": 4089,
          "cds_start": 3421,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 43,
          "exon_rank": 40,
          "exon_rank_end": null,
          "feature": "ENST00000859069.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3421G>A",
          "hgvs_p": "p.Ala1141Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529128.1",
          "strand": true,
          "transcript": "ENST00000859069.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1359,
          "aa_ref": "A",
          "aa_start": 1138,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4313,
          "cdna_start": 3478,
          "cds_end": null,
          "cds_length": 4080,
          "cds_start": 3412,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 42,
          "exon_rank": 39,
          "exon_rank_end": null,
          "feature": "ENST00000859068.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3412G>A",
          "hgvs_p": "p.Ala1138Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529127.1",
          "strand": true,
          "transcript": "ENST00000859068.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1357,
          "aa_ref": "A",
          "aa_start": 1136,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5482,
          "cdna_start": 3492,
          "cds_end": null,
          "cds_length": 4074,
          "cds_start": 3406,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 42,
          "exon_rank": 39,
          "exon_rank_end": null,
          "feature": "ENST00000859063.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3406G>A",
          "hgvs_p": "p.Ala1136Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529122.1",
          "strand": true,
          "transcript": "ENST00000859063.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1350,
          "aa_ref": "A",
          "aa_start": 1129,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5475,
          "cdna_start": 3486,
          "cds_end": null,
          "cds_length": 4053,
          "cds_start": 3385,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 43,
          "exon_rank": 40,
          "exon_rank_end": null,
          "feature": "ENST00000859060.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3385G>A",
          "hgvs_p": "p.Ala1129Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529119.1",
          "strand": true,
          "transcript": "ENST00000859060.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1336,
          "aa_ref": "A",
          "aa_start": 1115,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5393,
          "cdna_start": 3404,
          "cds_end": null,
          "cds_length": 4011,
          "cds_start": 3343,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 42,
          "exon_rank": 39,
          "exon_rank_end": null,
          "feature": "ENST00000970099.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3343G>A",
          "hgvs_p": "p.Ala1115Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000640158.1",
          "strand": true,
          "transcript": "ENST00000970099.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1331,
          "aa_ref": "A",
          "aa_start": 1110,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4248,
          "cdna_start": 3417,
          "cds_end": null,
          "cds_length": 3996,
          "cds_start": 3328,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000859066.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3328G>A",
          "hgvs_p": "p.Ala1110Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529125.1",
          "strand": true,
          "transcript": "ENST00000859066.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1330,
          "aa_ref": "A",
          "aa_start": 1109,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5399,
          "cdna_start": 3410,
          "cds_end": null,
          "cds_length": 3993,
          "cds_start": 3325,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000930597.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3325G>A",
          "hgvs_p": "p.Ala1109Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600656.1",
          "strand": true,
          "transcript": "ENST00000930597.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1330,
          "aa_ref": "A",
          "aa_start": 1109,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5406,
          "cdna_start": 3417,
          "cds_end": null,
          "cds_length": 3993,
          "cds_start": 3325,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000970097.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3325G>A",
          "hgvs_p": "p.Ala1109Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000640156.1",
          "strand": true,
          "transcript": "ENST00000970097.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1329,
          "aa_ref": "A",
          "aa_start": 1108,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4241,
          "cdna_start": 3388,
          "cds_end": null,
          "cds_length": 3990,
          "cds_start": 3322,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000859067.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3322G>A",
          "hgvs_p": "p.Ala1108Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529126.1",
          "strand": true,
          "transcript": "ENST00000859067.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1327,
          "aa_ref": "A",
          "aa_start": 1106,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5414,
          "cdna_start": 3424,
          "cds_end": null,
          "cds_length": 3984,
          "cds_start": 3316,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000859059.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3316G>A",
          "hgvs_p": "p.Ala1106Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529118.1",
          "strand": true,
          "transcript": "ENST00000859059.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1321,
          "aa_ref": "A",
          "aa_start": 1100,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4202,
          "cdna_start": 3364,
          "cds_end": null,
          "cds_length": 3966,
          "cds_start": 3298,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000930601.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3298G>A",
          "hgvs_p": "p.Ala1100Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600660.1",
          "strand": true,
          "transcript": "ENST00000930601.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1318,
          "aa_ref": "A",
          "aa_start": 1097,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5373,
          "cdna_start": 3383,
          "cds_end": null,
          "cds_length": 3957,
          "cds_start": 3289,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000930595.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3289G>A",
          "hgvs_p": "p.Ala1097Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600654.1",
          "strand": true,
          "transcript": "ENST00000930595.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1310,
          "aa_ref": "A",
          "aa_start": 1089,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5318,
          "cdna_start": 3331,
          "cds_end": null,
          "cds_length": 3933,
          "cds_start": 3265,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000859064.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3265G>A",
          "hgvs_p": "p.Ala1089Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529123.1",
          "strand": true,
          "transcript": "ENST00000859064.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1297,
          "aa_ref": "A",
          "aa_start": 1076,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5303,
          "cdna_start": 3312,
          "cds_end": null,
          "cds_length": 3894,
          "cds_start": 3226,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 39,
          "exon_rank": 36,
          "exon_rank_end": null,
          "feature": "ENST00000970098.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3226G>A",
          "hgvs_p": "p.Ala1076Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000640157.1",
          "strand": true,
          "transcript": "ENST00000970098.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1293,
          "aa_ref": "A",
          "aa_start": 1072,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5289,
          "cdna_start": 3299,
          "cds_end": null,
          "cds_length": 3882,
          "cds_start": 3214,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000930596.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3214G>A",
          "hgvs_p": "p.Ala1072Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600655.1",
          "strand": true,
          "transcript": "ENST00000930596.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1292,
          "aa_ref": "A",
          "aa_start": 1071,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5296,
          "cdna_start": 3305,
          "cds_end": null,
          "cds_length": 3879,
          "cds_start": 3211,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000859061.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3211G>A",
          "hgvs_p": "p.Ala1071Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529120.1",
          "strand": true,
          "transcript": "ENST00000859061.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1286,
          "aa_ref": "A",
          "aa_start": 1065,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4116,
          "cdna_start": 3259,
          "cds_end": null,
          "cds_length": 3861,
          "cds_start": 3193,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 41,
          "exon_rank": 38,
          "exon_rank_end": null,
          "feature": "ENST00000859065.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3193G>A",
          "hgvs_p": "p.Ala1065Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000529124.1",
          "strand": true,
          "transcript": "ENST00000859065.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1274,
          "aa_ref": "A",
          "aa_start": 1053,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5242,
          "cdna_start": 3251,
          "cds_end": null,
          "cds_length": 3825,
          "cds_start": 3157,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 40,
          "exon_rank": 37,
          "exon_rank_end": null,
          "feature": "ENST00000930594.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3157G>A",
          "hgvs_p": "p.Ala1053Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600653.1",
          "strand": true,
          "transcript": "ENST00000930594.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1268,
          "aa_ref": "A",
          "aa_start": 1047,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4062,
          "cdna_start": 3209,
          "cds_end": null,
          "cds_length": 3807,
          "cds_start": 3139,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 40,
          "exon_rank": 37,
          "exon_rank_end": null,
          "feature": "ENST00000930600.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3139G>A",
          "hgvs_p": "p.Ala1047Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600659.1",
          "strand": true,
          "transcript": "ENST00000930600.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1266,
          "aa_ref": "A",
          "aa_start": 1045,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5201,
          "cdna_start": 3211,
          "cds_end": null,
          "cds_length": 3801,
          "cds_start": 3133,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 38,
          "exon_rank": 35,
          "exon_rank_end": null,
          "feature": "ENST00000930598.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3133G>A",
          "hgvs_p": "p.Ala1045Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600657.1",
          "strand": true,
          "transcript": "ENST00000930598.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 1239,
          "aa_ref": "A",
          "aa_start": 1018,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5104,
          "cdna_start": 3117,
          "cds_end": null,
          "cds_length": 3720,
          "cds_start": 3052,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 40,
          "exon_rank": 37,
          "exon_rank_end": null,
          "feature": "ENST00000930599.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.3052G>A",
          "hgvs_p": "p.Ala1018Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000600658.1",
          "strand": true,
          "transcript": "ENST00000930599.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 961,
          "aa_ref": "A",
          "aa_start": 740,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 3111,
          "cdna_start": 2275,
          "cds_end": null,
          "cds_length": 2886,
          "cds_start": 2218,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 24,
          "exon_rank_end": null,
          "feature": "ENST00000970100.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.2218G>A",
          "hgvs_p": "p.Ala740Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000640159.1",
          "strand": true,
          "transcript": "ENST00000970100.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 687,
          "aa_ref": "A",
          "aa_start": 466,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 3386,
          "cdna_start": 1396,
          "cds_end": null,
          "cds_length": 2064,
          "cds_start": 1396,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 23,
          "exon_rank": 20,
          "exon_rank_end": null,
          "feature": "ENST00000342220.9",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.1396G>A",
          "hgvs_p": "p.Ala466Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000339118.5",
          "strand": true,
          "transcript": "ENST00000342220.9",
          "transcript_support_level": 2
        },
        {
          "aa_alt": "T",
          "aa_end": null,
          "aa_length": 278,
          "aa_ref": "A",
          "aa_start": 102,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 839,
          "cdna_start": 306,
          "cds_end": null,
          "cds_length": 837,
          "cds_start": 304,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 6,
          "exon_rank": 3,
          "exon_rank_end": null,
          "feature": "ENST00000423214.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "c.304G>A",
          "hgvs_p": "p.Ala102Thr",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000415692.1",
          "strand": true,
          "transcript": "ENST00000423214.1",
          "transcript_support_level": 5
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": 466,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2187,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": 1401,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 6,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "XM_047440957.1",
          "gene_hgnc_id": 10937,
          "gene_symbol": "SLC19A1",
          "hgvs_c": "c.1360-6489C>T",
          "hgvs_p": null,
          "intron_rank": 5,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047296913.1",
          "strand": false,
          "transcript": "XM_047440957.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": 444,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1868,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": 1335,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 6,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "XM_047440963.1",
          "gene_hgnc_id": 10937,
          "gene_symbol": "SLC19A1",
          "hgvs_c": "c.1294-6489C>T",
          "hgvs_p": null,
          "intron_rank": 5,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047296919.1",
          "strand": false,
          "transcript": "XM_047440963.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": 444,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1855,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": 1335,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 6,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "XM_047440964.1",
          "gene_hgnc_id": 10937,
          "gene_symbol": "SLC19A1",
          "hgvs_c": "c.1294-6489C>T",
          "hgvs_p": null,
          "intron_rank": 5,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047296920.1",
          "strand": false,
          "transcript": "XM_047440964.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "retained_intron",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2515,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_count": 5,
          "exon_rank": 2,
          "exon_rank_end": null,
          "feature": "ENST00000473212.1",
          "gene_hgnc_id": 2195,
          "gene_symbol": "COL18A1",
          "hgvs_c": "n.1678G>A",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000473212.1",
          "transcript_support_level": 2
        }
      ],
      "custom_annotations": null,
      "dbscsnv_ada_prediction": null,
      "dbscsnv_ada_score": null,
      "dbsnp": "rs113268527",
      "effect": "missense_variant",
      "frequency_reference_population": 0.0105484,
      "gene_hgnc_id": 2195,
      "gene_symbol": "COL18A1",
      "gnomad_exomes_ac": 15131,
      "gnomad_exomes_af": 0.0109547,
      "gnomad_exomes_homalt": 114,
      "gnomad_genomes_ac": 1044,
      "gnomad_genomes_af": 0.00686057,
      "gnomad_genomes_homalt": 6,
      "gnomad_mito_heteroplasmic": null,
      "gnomad_mito_homoplasmic": null,
      "hom_count_reference_population": 120,
      "mitotip_prediction": null,
      "mitotip_score": null,
      "pathogenicity_classification_combined": "Benign/Likely benign",
      "phenotype_combined": "not provided",
      "phylop100way_prediction": "Benign",
      "phylop100way_score": 0.715,
      "pos": 45509458,
      "ref": "G",
      "revel_prediction": "Benign",
      "revel_score": 0.284,
      "splice_prediction_selected": "Benign",
      "splice_score_selected": 0,
      "splice_source_selected": "max_spliceai",
      "spliceai_max_prediction": "Benign",
      "spliceai_max_score": 0,
      "transcript": "NM_130444.3"
    }
  ]
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.