← Back to variant description

GeneBe API Showcase

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

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

Documentation & Advanced Usage

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

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

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

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

All tools documented at:docs.genebe.net

API Request Examples for Variant: 17-81245997-C-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "17",
      "pos": 81245997,
      "ref": "C",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "NM_001037984.3",
      "consequences": [
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2919G>C",
          "hgvs_p": "p.Gln973His",
          "transcript": "NM_001037984.3",
          "protein_id": "NP_001033073.1",
          "transcript_support_level": null,
          "aa_start": 973,
          "aa_end": null,
          "aa_length": 1119,
          "cds_start": 2919,
          "cds_end": null,
          "cds_length": 3360,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000374759.8",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001037984.3"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2919G>C",
          "hgvs_p": "p.Gln973His",
          "transcript": "ENST00000374759.8",
          "protein_id": "ENSP00000363891.3",
          "transcript_support_level": 5,
          "aa_start": 973,
          "aa_end": null,
          "aa_length": 1119,
          "cds_start": 2919,
          "cds_end": null,
          "cds_length": 3360,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001037984.3",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000374759.8"
        },
        {
          "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": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "n.995G>C",
          "hgvs_p": null,
          "transcript": "ENST00000539643.1",
          "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": "ENST00000539643.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.3090G>C",
          "hgvs_p": "p.Gln1030His",
          "transcript": "ENST00000947966.1",
          "protein_id": "ENSP00000618025.1",
          "transcript_support_level": null,
          "aa_start": 1030,
          "aa_end": null,
          "aa_length": 1176,
          "cds_start": 3090,
          "cds_end": null,
          "cds_length": 3531,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947966.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.3066G>C",
          "hgvs_p": "p.Gln1022His",
          "transcript": "ENST00000947971.1",
          "protein_id": "ENSP00000618030.1",
          "transcript_support_level": null,
          "aa_start": 1022,
          "aa_end": null,
          "aa_length": 1168,
          "cds_start": 3066,
          "cds_end": null,
          "cds_length": 3507,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947971.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.3057G>C",
          "hgvs_p": "p.Gln1019His",
          "transcript": "ENST00000918313.1",
          "protein_id": "ENSP00000588372.1",
          "transcript_support_level": null,
          "aa_start": 1019,
          "aa_end": null,
          "aa_length": 1165,
          "cds_start": 3057,
          "cds_end": null,
          "cds_length": 3498,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918313.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.3039G>C",
          "hgvs_p": "p.Gln1013His",
          "transcript": "ENST00000947968.1",
          "protein_id": "ENSP00000618027.1",
          "transcript_support_level": null,
          "aa_start": 1013,
          "aa_end": null,
          "aa_length": 1159,
          "cds_start": 3039,
          "cds_end": null,
          "cds_length": 3480,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947968.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.3021G>C",
          "hgvs_p": "p.Gln1007His",
          "transcript": "ENST00000899482.1",
          "protein_id": "ENSP00000569541.1",
          "transcript_support_level": null,
          "aa_start": 1007,
          "aa_end": null,
          "aa_length": 1153,
          "cds_start": 3021,
          "cds_end": null,
          "cds_length": 3462,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899482.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2988G>C",
          "hgvs_p": "p.Gln996His",
          "transcript": "ENST00000947963.1",
          "protein_id": "ENSP00000618022.1",
          "transcript_support_level": null,
          "aa_start": 996,
          "aa_end": null,
          "aa_length": 1142,
          "cds_start": 2988,
          "cds_end": null,
          "cds_length": 3429,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947963.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2961G>C",
          "hgvs_p": "p.Gln987His",
          "transcript": "ENST00000947967.1",
          "protein_id": "ENSP00000618026.1",
          "transcript_support_level": null,
          "aa_start": 987,
          "aa_end": null,
          "aa_length": 1133,
          "cds_start": 2961,
          "cds_end": null,
          "cds_length": 3402,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947967.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2946G>C",
          "hgvs_p": "p.Gln982His",
          "transcript": "ENST00000947959.1",
          "protein_id": "ENSP00000618018.1",
          "transcript_support_level": null,
          "aa_start": 982,
          "aa_end": null,
          "aa_length": 1128,
          "cds_start": 2946,
          "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": "ENST00000947959.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2940G>C",
          "hgvs_p": "p.Gln980His",
          "transcript": "ENST00000899487.1",
          "protein_id": "ENSP00000569546.1",
          "transcript_support_level": null,
          "aa_start": 980,
          "aa_end": null,
          "aa_length": 1126,
          "cds_start": 2940,
          "cds_end": null,
          "cds_length": 3381,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899487.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2940G>C",
          "hgvs_p": "p.Gln980His",
          "transcript": "ENST00000899490.1",
          "protein_id": "ENSP00000569549.1",
          "transcript_support_level": null,
          "aa_start": 980,
          "aa_end": null,
          "aa_length": 1126,
          "cds_start": 2940,
          "cds_end": null,
          "cds_length": 3381,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899490.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2895G>C",
          "hgvs_p": "p.Gln965His",
          "transcript": "ENST00000899495.1",
          "protein_id": "ENSP00000569554.1",
          "transcript_support_level": null,
          "aa_start": 965,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 2895,
          "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": "ENST00000899495.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2883G>C",
          "hgvs_p": "p.Gln961His",
          "transcript": "ENST00000899485.1",
          "protein_id": "ENSP00000569544.1",
          "transcript_support_level": null,
          "aa_start": 961,
          "aa_end": null,
          "aa_length": 1107,
          "cds_start": 2883,
          "cds_end": null,
          "cds_length": 3324,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899485.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2823G>C",
          "hgvs_p": "p.Gln941His",
          "transcript": "ENST00000947965.1",
          "protein_id": "ENSP00000618024.1",
          "transcript_support_level": null,
          "aa_start": 941,
          "aa_end": null,
          "aa_length": 1087,
          "cds_start": 2823,
          "cds_end": null,
          "cds_length": 3264,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947965.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2802G>C",
          "hgvs_p": "p.Gln934His",
          "transcript": "ENST00000899488.1",
          "protein_id": "ENSP00000569547.1",
          "transcript_support_level": null,
          "aa_start": 934,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 2802,
          "cds_end": null,
          "cds_length": 3243,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899488.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2799G>C",
          "hgvs_p": "p.Gln933His",
          "transcript": "ENST00000899491.1",
          "protein_id": "ENSP00000569550.1",
          "transcript_support_level": null,
          "aa_start": 933,
          "aa_end": null,
          "aa_length": 1079,
          "cds_start": 2799,
          "cds_end": null,
          "cds_length": 3240,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899491.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2757G>C",
          "hgvs_p": "p.Gln919His",
          "transcript": "ENST00000947960.1",
          "protein_id": "ENSP00000618019.1",
          "transcript_support_level": null,
          "aa_start": 919,
          "aa_end": null,
          "aa_length": 1065,
          "cds_start": 2757,
          "cds_end": null,
          "cds_length": 3198,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947960.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2736G>C",
          "hgvs_p": "p.Gln912His",
          "transcript": "ENST00000947969.1",
          "protein_id": "ENSP00000618028.1",
          "transcript_support_level": null,
          "aa_start": 912,
          "aa_end": null,
          "aa_length": 1058,
          "cds_start": 2736,
          "cds_end": null,
          "cds_length": 3177,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947969.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2721G>C",
          "hgvs_p": "p.Gln907His",
          "transcript": "ENST00000947964.1",
          "protein_id": "ENSP00000618023.1",
          "transcript_support_level": null,
          "aa_start": 907,
          "aa_end": null,
          "aa_length": 1053,
          "cds_start": 2721,
          "cds_end": null,
          "cds_length": 3162,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947964.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2700G>C",
          "hgvs_p": "p.Gln900His",
          "transcript": "ENST00000899483.1",
          "protein_id": "ENSP00000569542.1",
          "transcript_support_level": null,
          "aa_start": 900,
          "aa_end": null,
          "aa_length": 1046,
          "cds_start": 2700,
          "cds_end": null,
          "cds_length": 3141,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899483.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2631G>C",
          "hgvs_p": "p.Gln877His",
          "transcript": "ENST00000947970.1",
          "protein_id": "ENSP00000618029.1",
          "transcript_support_level": null,
          "aa_start": 877,
          "aa_end": null,
          "aa_length": 1023,
          "cds_start": 2631,
          "cds_end": null,
          "cds_length": 3072,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947970.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2514G>C",
          "hgvs_p": "p.Gln838His",
          "transcript": "ENST00000899484.1",
          "protein_id": "ENSP00000569543.1",
          "transcript_support_level": null,
          "aa_start": 838,
          "aa_end": null,
          "aa_length": 984,
          "cds_start": 2514,
          "cds_end": null,
          "cds_length": 2955,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899484.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2490G>C",
          "hgvs_p": "p.Gln830His",
          "transcript": "ENST00000899481.1",
          "protein_id": "ENSP00000569540.1",
          "transcript_support_level": null,
          "aa_start": 830,
          "aa_end": null,
          "aa_length": 976,
          "cds_start": 2490,
          "cds_end": null,
          "cds_length": 2931,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899481.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2487G>C",
          "hgvs_p": "p.Gln829His",
          "transcript": "ENST00000899494.1",
          "protein_id": "ENSP00000569553.1",
          "transcript_support_level": null,
          "aa_start": 829,
          "aa_end": null,
          "aa_length": 975,
          "cds_start": 2487,
          "cds_end": null,
          "cds_length": 2928,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899494.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2439G>C",
          "hgvs_p": "p.Gln813His",
          "transcript": "ENST00000899492.1",
          "protein_id": "ENSP00000569551.1",
          "transcript_support_level": null,
          "aa_start": 813,
          "aa_end": null,
          "aa_length": 959,
          "cds_start": 2439,
          "cds_end": null,
          "cds_length": 2880,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899492.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2436G>C",
          "hgvs_p": "p.Gln812His",
          "transcript": "ENST00000947962.1",
          "protein_id": "ENSP00000618021.1",
          "transcript_support_level": null,
          "aa_start": 812,
          "aa_end": null,
          "aa_length": 958,
          "cds_start": 2436,
          "cds_end": null,
          "cds_length": 2877,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947962.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2415G>C",
          "hgvs_p": "p.Gln805His",
          "transcript": "ENST00000899486.1",
          "protein_id": "ENSP00000569545.1",
          "transcript_support_level": null,
          "aa_start": 805,
          "aa_end": null,
          "aa_length": 951,
          "cds_start": 2415,
          "cds_end": null,
          "cds_length": 2856,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899486.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2286G>C",
          "hgvs_p": "p.Gln762His",
          "transcript": "ENST00000947961.1",
          "protein_id": "ENSP00000618020.1",
          "transcript_support_level": null,
          "aa_start": 762,
          "aa_end": null,
          "aa_length": 908,
          "cds_start": 2286,
          "cds_end": null,
          "cds_length": 2727,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000947961.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2262G>C",
          "hgvs_p": "p.Gln754His",
          "transcript": "ENST00000899493.1",
          "protein_id": "ENSP00000569552.1",
          "transcript_support_level": null,
          "aa_start": 754,
          "aa_end": null,
          "aa_length": 900,
          "cds_start": 2262,
          "cds_end": null,
          "cds_length": 2703,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899493.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2142G>C",
          "hgvs_p": "p.Gln714His",
          "transcript": "ENST00000899489.1",
          "protein_id": "ENSP00000569548.1",
          "transcript_support_level": null,
          "aa_start": 714,
          "aa_end": null,
          "aa_length": 860,
          "cds_start": 2142,
          "cds_end": null,
          "cds_length": 2583,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000899489.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2112G>C",
          "hgvs_p": "p.Gln704His",
          "transcript": "ENST00000918314.1",
          "protein_id": "ENSP00000588373.1",
          "transcript_support_level": null,
          "aa_start": 704,
          "aa_end": null,
          "aa_length": 850,
          "cds_start": 2112,
          "cds_end": null,
          "cds_length": 2553,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918314.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.1923G>C",
          "hgvs_p": "p.Gln641His",
          "transcript": "ENST00000918317.1",
          "protein_id": "ENSP00000588376.1",
          "transcript_support_level": null,
          "aa_start": 641,
          "aa_end": null,
          "aa_length": 787,
          "cds_start": 1923,
          "cds_end": null,
          "cds_length": 2364,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918317.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.1887G>C",
          "hgvs_p": "p.Gln629His",
          "transcript": "ENST00000918315.1",
          "protein_id": "ENSP00000588374.1",
          "transcript_support_level": null,
          "aa_start": 629,
          "aa_end": null,
          "aa_length": 775,
          "cds_start": 1887,
          "cds_end": null,
          "cds_length": 2328,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918315.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.1848G>C",
          "hgvs_p": "p.Gln616His",
          "transcript": "ENST00000918316.1",
          "protein_id": "ENSP00000588375.1",
          "transcript_support_level": null,
          "aa_start": 616,
          "aa_end": null,
          "aa_length": 762,
          "cds_start": 1848,
          "cds_end": null,
          "cds_length": 2289,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000918316.1"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2964G>C",
          "hgvs_p": "p.Gln988His",
          "transcript": "XM_011524288.2",
          "protein_id": "XP_011522590.1",
          "transcript_support_level": null,
          "aa_start": 988,
          "aa_end": null,
          "aa_length": 1134,
          "cds_start": 2964,
          "cds_end": null,
          "cds_length": 3405,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011524288.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2943G>C",
          "hgvs_p": "p.Gln981His",
          "transcript": "XM_005257019.2",
          "protein_id": "XP_005257076.1",
          "transcript_support_level": null,
          "aa_start": 981,
          "aa_end": null,
          "aa_length": 1127,
          "cds_start": 2943,
          "cds_end": null,
          "cds_length": 3384,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005257019.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2940G>C",
          "hgvs_p": "p.Gln980His",
          "transcript": "XM_011524289.2",
          "protein_id": "XP_011522591.1",
          "transcript_support_level": null,
          "aa_start": 980,
          "aa_end": null,
          "aa_length": 1126,
          "cds_start": 2940,
          "cds_end": null,
          "cds_length": 3381,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011524289.2"
        },
        {
          "aa_ref": "Q",
          "aa_alt": "H",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.2697G>C",
          "hgvs_p": "p.Gln899His",
          "transcript": "XM_011524290.2",
          "protein_id": "XP_011522592.1",
          "transcript_support_level": null,
          "aa_start": 899,
          "aa_end": null,
          "aa_length": 1045,
          "cds_start": 2697,
          "cds_end": null,
          "cds_length": 3138,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011524290.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SLC38A10",
          "gene_hgnc_id": 28237,
          "hgvs_c": "c.*181G>C",
          "hgvs_p": null,
          "transcript": "ENST00000540966.5",
          "protein_id": "ENSP00000437601.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 297,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 896,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000540966.5"
        }
      ],
      "gene_symbol": "SLC38A10",
      "gene_hgnc_id": 28237,
      "dbsnp": "rs1479389389",
      "frequency_reference_population": 0.000009963186,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 16,
      "gnomad_exomes_af": 0.0000103187,
      "gnomad_genomes_af": 0.0000065684,
      "gnomad_exomes_ac": 15,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.13569596409797668,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": null,
      "splice_prediction_selected": null,
      "splice_source_selected": null,
      "revel_score": 0.086,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1383,
      "alphamissense_prediction": "Benign",
      "bayesdelnoaf_score": -0.56,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 0.055,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": null,
      "spliceai_max_prediction": null,
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": -2,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": -2,
          "benign_score": 2,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Moderate"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001037984.3",
          "gene_symbol": "SLC38A10",
          "hgnc_id": 28237,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.2919G>C",
          "hgvs_p": "p.Gln973His"
        }
      ],
      "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
}