← 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: 12-54283845-A-T (hg38)
Bash / cURL Example
bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=12&pos=54283845&ref=A&alt=T&genome=hg38&allGenes=true"API Response
json
{
"variants": [
{
"chr": "12",
"pos": 54283845,
"ref": "A",
"alt": "T",
"effect": "missense_variant",
"transcript": "NM_031157.4",
"consequences": [
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.941A>T",
"hgvs_p": "p.Asp314Val",
"transcript": "NM_031157.4",
"protein_id": "NP_112420.1",
"transcript_support_level": null,
"aa_start": 314,
"aa_end": null,
"aa_length": 372,
"cds_start": 941,
"cds_end": null,
"cds_length": 1119,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": "ENST00000340913.11",
"mane_plus": null,
"biotype": "protein_coding",
"feature": "NM_031157.4"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": true,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.941A>T",
"hgvs_p": "p.Asp314Val",
"transcript": "ENST00000340913.11",
"protein_id": "ENSP00000341826.7",
"transcript_support_level": 1,
"aa_start": 314,
"aa_end": null,
"aa_length": 372,
"cds_start": 941,
"cds_end": null,
"cds_length": 1119,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": "NM_031157.4",
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000340913.11"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000546500.5",
"protein_id": "ENSP00000448617.1",
"transcript_support_level": 1,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000546500.5"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.626A>T",
"hgvs_p": "p.Asp209Val",
"transcript": "ENST00000547276.5",
"protein_id": "ENSP00000447260.1",
"transcript_support_level": 1,
"aa_start": 209,
"aa_end": null,
"aa_length": 267,
"cds_start": 626,
"cds_end": null,
"cds_length": 804,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000547276.5"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.785A>T",
"hgvs_p": null,
"transcript": "ENST00000547566.5",
"protein_id": "ENSP00000449913.1",
"transcript_support_level": 1,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "nonsense_mediated_decay",
"feature": "ENST00000547566.5"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.941A>T",
"hgvs_p": "p.Asp314Val",
"transcript": "ENST00000869553.1",
"protein_id": "ENSP00000539612.1",
"transcript_support_level": null,
"aa_start": 314,
"aa_end": null,
"aa_length": 378,
"cds_start": 941,
"cds_end": null,
"cds_length": 1137,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000869553.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.941A>T",
"hgvs_p": "p.Asp314Val",
"transcript": "ENST00000677210.1",
"protein_id": "ENSP00000503610.1",
"transcript_support_level": null,
"aa_start": 314,
"aa_end": null,
"aa_length": 372,
"cds_start": 941,
"cds_end": null,
"cds_length": 1119,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677210.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000677375.1",
"protein_id": "ENSP00000503651.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 326,
"cds_start": 785,
"cds_end": null,
"cds_length": 981,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677375.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.782A>T",
"hgvs_p": "p.Asp261Val",
"transcript": "ENST00000938112.1",
"protein_id": "ENSP00000608171.1",
"transcript_support_level": null,
"aa_start": 261,
"aa_end": null,
"aa_length": 325,
"cds_start": 782,
"cds_end": null,
"cds_length": 978,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000938112.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "NM_002136.4",
"protein_id": "NP_002127.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "NM_002136.4"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000550482.2",
"protein_id": "ENSP00000446486.2",
"transcript_support_level": 2,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000550482.2"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000938109.1",
"protein_id": "ENSP00000608168.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000938109.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000938110.1",
"protein_id": "ENSP00000608169.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000938110.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000938111.1",
"protein_id": "ENSP00000608170.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000938111.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000938113.1",
"protein_id": "ENSP00000608172.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000938113.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000945499.1",
"protein_id": "ENSP00000615558.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000945499.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.785A>T",
"hgvs_p": "p.Asp262Val",
"transcript": "ENST00000945500.1",
"protein_id": "ENSP00000615559.1",
"transcript_support_level": null,
"aa_start": 262,
"aa_end": null,
"aa_length": 320,
"cds_start": 785,
"cds_end": null,
"cds_length": 963,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000945500.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.782A>T",
"hgvs_p": "p.Asp261Val",
"transcript": "ENST00000677249.1",
"protein_id": "ENSP00000503649.1",
"transcript_support_level": null,
"aa_start": 261,
"aa_end": null,
"aa_length": 319,
"cds_start": 782,
"cds_end": null,
"cds_length": 960,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677249.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.746A>T",
"hgvs_p": "p.Asp249Val",
"transcript": "ENST00000330752.12",
"protein_id": "ENSP00000333504.8",
"transcript_support_level": 5,
"aa_start": 249,
"aa_end": null,
"aa_length": 307,
"cds_start": 746,
"cds_end": null,
"cds_length": 924,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000330752.12"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.650A>T",
"hgvs_p": "p.Asp217Val",
"transcript": "ENST00000678077.1",
"protein_id": "ENSP00000504814.1",
"transcript_support_level": null,
"aa_start": 217,
"aa_end": null,
"aa_length": 275,
"cds_start": 650,
"cds_end": null,
"cds_length": 828,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678077.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.437A>T",
"hgvs_p": "p.Asp146Val",
"transcript": "ENST00000547708.5",
"protein_id": "ENSP00000448229.1",
"transcript_support_level": 4,
"aa_start": 146,
"aa_end": null,
"aa_length": 155,
"cds_start": 437,
"cds_end": null,
"cds_length": 470,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000547708.5"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 1,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.32A>T",
"hgvs_p": "p.Asp11Val",
"transcript": "ENST00000677840.1",
"protein_id": "ENSP00000503273.1",
"transcript_support_level": null,
"aa_start": 11,
"aa_end": null,
"aa_length": 107,
"cds_start": 32,
"cds_end": null,
"cds_length": 324,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677840.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.188A>T",
"hgvs_p": "p.Asp63Val",
"transcript": "ENST00000676951.1",
"protein_id": "ENSP00000502981.1",
"transcript_support_level": null,
"aa_start": 63,
"aa_end": null,
"aa_length": 102,
"cds_start": 188,
"cds_end": null,
"cds_length": 310,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000676951.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.173A>T",
"hgvs_p": "p.Asp58Val",
"transcript": "ENST00000678611.1",
"protein_id": "ENSP00000504004.1",
"transcript_support_level": null,
"aa_start": 58,
"aa_end": null,
"aa_length": 97,
"cds_start": 173,
"cds_end": null,
"cds_length": 295,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678611.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.167A>T",
"hgvs_p": "p.Asp56Val",
"transcript": "ENST00000676853.1",
"protein_id": "ENSP00000503749.1",
"transcript_support_level": null,
"aa_start": 56,
"aa_end": null,
"aa_length": 95,
"cds_start": 167,
"cds_end": null,
"cds_length": 289,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000676853.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.167A>T",
"hgvs_p": "p.Asp56Val",
"transcript": "ENST00000678581.1",
"protein_id": "ENSP00000504251.1",
"transcript_support_level": null,
"aa_start": 56,
"aa_end": null,
"aa_length": 95,
"cds_start": 167,
"cds_end": null,
"cds_length": 289,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678581.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.164A>T",
"hgvs_p": "p.Asp55Val",
"transcript": "ENST00000678424.1",
"protein_id": "ENSP00000503030.1",
"transcript_support_level": null,
"aa_start": 55,
"aa_end": null,
"aa_length": 94,
"cds_start": 164,
"cds_end": null,
"cds_length": 286,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678424.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.125A>T",
"hgvs_p": "p.Asp42Val",
"transcript": "ENST00000677636.1",
"protein_id": "ENSP00000503254.1",
"transcript_support_level": null,
"aa_start": 42,
"aa_end": null,
"aa_length": 81,
"cds_start": 125,
"cds_end": null,
"cds_length": 247,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677636.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.125A>T",
"hgvs_p": "p.Asp42Val",
"transcript": "ENST00000678876.1",
"protein_id": "ENSP00000503756.1",
"transcript_support_level": null,
"aa_start": 42,
"aa_end": null,
"aa_length": 81,
"cds_start": 125,
"cds_end": null,
"cds_length": 247,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678876.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.110A>T",
"hgvs_p": "p.Asp37Val",
"transcript": "ENST00000677945.1",
"protein_id": "ENSP00000503056.1",
"transcript_support_level": null,
"aa_start": 37,
"aa_end": null,
"aa_length": 76,
"cds_start": 110,
"cds_end": null,
"cds_length": 232,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677945.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.107A>T",
"hgvs_p": "p.Asp36Val",
"transcript": "ENST00000678873.1",
"protein_id": "ENSP00000503516.1",
"transcript_support_level": null,
"aa_start": 36,
"aa_end": null,
"aa_length": 75,
"cds_start": 107,
"cds_end": null,
"cds_length": 229,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678873.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.107A>T",
"hgvs_p": "p.Asp36Val",
"transcript": "ENST00000679063.1",
"protein_id": "ENSP00000504683.1",
"transcript_support_level": null,
"aa_start": 36,
"aa_end": null,
"aa_length": 75,
"cds_start": 107,
"cds_end": null,
"cds_length": 229,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000679063.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.86A>T",
"hgvs_p": "p.Asp29Val",
"transcript": "ENST00000676707.1",
"protein_id": "ENSP00000504696.1",
"transcript_support_level": null,
"aa_start": 29,
"aa_end": null,
"aa_length": 68,
"cds_start": 86,
"cds_end": null,
"cds_length": 208,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000676707.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.86A>T",
"hgvs_p": "p.Asp29Val",
"transcript": "ENST00000678934.1",
"protein_id": "ENSP00000504850.1",
"transcript_support_level": null,
"aa_start": 29,
"aa_end": null,
"aa_length": 68,
"cds_start": 86,
"cds_end": null,
"cds_length": 208,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678934.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.71A>T",
"hgvs_p": "p.Asp24Val",
"transcript": "ENST00000676472.1",
"protein_id": "ENSP00000503977.1",
"transcript_support_level": null,
"aa_start": 24,
"aa_end": null,
"aa_length": 63,
"cds_start": 71,
"cds_end": null,
"cds_length": 193,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000676472.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.59A>T",
"hgvs_p": "p.Asp20Val",
"transcript": "ENST00000678513.1",
"protein_id": "ENSP00000503162.1",
"transcript_support_level": null,
"aa_start": 20,
"aa_end": null,
"aa_length": 59,
"cds_start": 59,
"cds_end": null,
"cds_length": 181,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678513.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.56A>T",
"hgvs_p": "p.Asp19Val",
"transcript": "ENST00000678597.1",
"protein_id": "ENSP00000504089.1",
"transcript_support_level": null,
"aa_start": 19,
"aa_end": null,
"aa_length": 58,
"cds_start": 56,
"cds_end": null,
"cds_length": 178,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678597.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 1,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.32A>T",
"hgvs_p": "p.Asp11Val",
"transcript": "ENST00000679026.1",
"protein_id": "ENSP00000504539.1",
"transcript_support_level": null,
"aa_start": 11,
"aa_end": null,
"aa_length": 55,
"cds_start": 32,
"cds_end": null,
"cds_length": 168,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000679026.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.41A>T",
"hgvs_p": "p.Asp14Val",
"transcript": "ENST00000677224.1",
"protein_id": "ENSP00000502876.1",
"transcript_support_level": null,
"aa_start": 14,
"aa_end": null,
"aa_length": 53,
"cds_start": 41,
"cds_end": null,
"cds_length": 163,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677224.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.38A>T",
"hgvs_p": "p.Asp13Val",
"transcript": "ENST00000677279.1",
"protein_id": "ENSP00000503602.1",
"transcript_support_level": null,
"aa_start": 13,
"aa_end": null,
"aa_length": 52,
"cds_start": 38,
"cds_end": null,
"cds_length": 160,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677279.1"
},
{
"aa_ref": "D",
"aa_alt": "V",
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"missense_variant"
],
"exon_rank": 1,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.32A>T",
"hgvs_p": "p.Asp11Val",
"transcript": "ENST00000677518.1",
"protein_id": "ENSP00000503537.1",
"transcript_support_level": null,
"aa_start": 11,
"aa_end": null,
"aa_length": 40,
"cds_start": 32,
"cds_end": null,
"cds_length": 124,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677518.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"5_prime_UTR_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.-41A>T",
"hgvs_p": null,
"transcript": "ENST00000676794.1",
"protein_id": "ENSP00000504819.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 45,
"cds_start": null,
"cds_end": null,
"cds_length": 138,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000676794.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.*1127A>T",
"hgvs_p": null,
"transcript": "ENST00000677385.1",
"protein_id": "ENSP00000502985.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 242,
"cds_start": null,
"cds_end": null,
"cds_length": 729,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677385.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": 7,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.704-413A>T",
"hgvs_p": null,
"transcript": "ENST00000938114.1",
"protein_id": "ENSP00000608173.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 252,
"cds_start": null,
"cds_end": null,
"cds_length": 759,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000938114.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.155-47A>T",
"hgvs_p": null,
"transcript": "ENST00000678970.1",
"protein_id": "ENSP00000503825.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 86,
"cds_start": null,
"cds_end": null,
"cds_length": 261,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678970.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.73+971A>T",
"hgvs_p": null,
"transcript": "ENST00000677778.1",
"protein_id": "ENSP00000504642.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 80,
"cds_start": null,
"cds_end": null,
"cds_length": 243,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677778.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.155-413A>T",
"hgvs_p": null,
"transcript": "ENST00000678412.1",
"protein_id": "ENSP00000503562.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 69,
"cds_start": null,
"cds_end": null,
"cds_length": 210,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678412.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.154+611A>T",
"hgvs_p": null,
"transcript": "ENST00000679079.1",
"protein_id": "ENSP00000504545.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 55,
"cds_start": null,
"cds_end": null,
"cds_length": 168,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000679079.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.83-413A>T",
"hgvs_p": null,
"transcript": "ENST00000676886.1",
"protein_id": "ENSP00000503468.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 45,
"cds_start": null,
"cds_end": null,
"cds_length": 138,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000676886.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.74-413A>T",
"hgvs_p": null,
"transcript": "ENST00000678456.1",
"protein_id": "ENSP00000504368.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 42,
"cds_start": null,
"cds_end": null,
"cds_length": 129,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000678456.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": true,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "c.22+10A>T",
"hgvs_p": null,
"transcript": "ENST00000677847.1",
"protein_id": "ENSP00000503848.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": 30,
"cds_start": null,
"cds_end": null,
"cds_length": 94,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "protein_coding",
"feature": "ENST00000677847.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 1,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.123A>T",
"hgvs_p": null,
"transcript": "ENST00000551679.1",
"protein_id": null,
"transcript_support_level": 2,
"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": "ENST00000551679.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*69A>T",
"hgvs_p": null,
"transcript": "ENST00000676572.1",
"protein_id": "ENSP00000503865.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000676572.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 6,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.1115A>T",
"hgvs_p": null,
"transcript": "ENST00000676725.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": "retained_intron",
"feature": "ENST00000676725.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*78A>T",
"hgvs_p": null,
"transcript": "ENST00000677191.1",
"protein_id": "ENSP00000503128.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000677191.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*225A>T",
"hgvs_p": null,
"transcript": "ENST00000677539.1",
"protein_id": "ENSP00000504506.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000677539.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*34A>T",
"hgvs_p": null,
"transcript": "ENST00000678212.1",
"protein_id": "ENSP00000503276.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000678212.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 10,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.1137A>T",
"hgvs_p": null,
"transcript": "ENST00000678418.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": "retained_intron",
"feature": "ENST00000678418.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.133A>T",
"hgvs_p": null,
"transcript": "ENST00000678448.1",
"protein_id": "ENSP00000503619.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000678448.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 7,
"exon_rank_end": null,
"exon_count": 9,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.1136A>T",
"hgvs_p": null,
"transcript": "ENST00000679228.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": "retained_intron",
"feature": "ENST00000679228.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.121A>T",
"hgvs_p": null,
"transcript": "ENST00000679273.1",
"protein_id": "ENSP00000504626.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000679273.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*56A>T",
"hgvs_p": null,
"transcript": "ENST00000679344.1",
"protein_id": "ENSP00000504058.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000679344.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 8,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.867A>T",
"hgvs_p": null,
"transcript": "NR_135167.2",
"protein_id": null,
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": null,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": null,
"mane_select": null,
"mane_plus": null,
"biotype": "pseudogene",
"feature": "NR_135167.2"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*69A>T",
"hgvs_p": null,
"transcript": "ENST00000676572.1",
"protein_id": "ENSP00000503865.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000676572.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*78A>T",
"hgvs_p": null,
"transcript": "ENST00000677191.1",
"protein_id": "ENSP00000503128.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000677191.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*225A>T",
"hgvs_p": null,
"transcript": "ENST00000677539.1",
"protein_id": "ENSP00000504506.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000677539.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*34A>T",
"hgvs_p": null,
"transcript": "ENST00000678212.1",
"protein_id": "ENSP00000503276.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000678212.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"3_prime_UTR_variant"
],
"exon_rank": 2,
"exon_rank_end": null,
"exon_count": 3,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*56A>T",
"hgvs_p": null,
"transcript": "ENST00000679344.1",
"protein_id": "ENSP00000504058.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000679344.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "ENSG00000258344",
"gene_hgnc_id": null,
"hgvs_c": "n.545+6670A>T",
"hgvs_p": null,
"transcript": "ENST00000553061.1",
"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": "ENST00000553061.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 4,
"intron_rank": 2,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.132+2343A>T",
"hgvs_p": null,
"transcript": "ENST00000677220.1",
"protein_id": "ENSP00000502987.1",
"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": "nonsense_mediated_decay",
"feature": "ENST00000677220.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.67-47A>T",
"hgvs_p": null,
"transcript": "ENST00000678279.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": "ENST00000678279.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"intron_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": 1,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.49-2817A>T",
"hgvs_p": null,
"transcript": "ENST00000678365.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": "ENST00000678365.1"
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": true,
"consequences": [
"downstream_gene_variant"
],
"exon_rank": null,
"exon_rank_end": null,
"exon_count": 2,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"hgvs_c": "n.*150A>T",
"hgvs_p": null,
"transcript": "ENST00000679319.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": "ENST00000679319.1"
}
],
"gene_symbol": "HNRNPA1",
"gene_hgnc_id": 5031,
"dbsnp": "rs397518452",
"frequency_reference_population": null,
"hom_count_reference_population": 0,
"allele_count_reference_population": 0,
"gnomad_exomes_af": null,
"gnomad_genomes_af": null,
"gnomad_exomes_ac": null,
"gnomad_genomes_ac": null,
"gnomad_exomes_homalt": null,
"gnomad_genomes_homalt": null,
"gnomad_mito_homoplasmic": null,
"gnomad_mito_heteroplasmic": null,
"computational_score_selected": 0.843396782875061,
"computational_prediction_selected": "Pathogenic",
"computational_source_selected": "MetaRNN",
"splice_score_selected": 0,
"splice_prediction_selected": "Benign",
"splice_source_selected": "max_spliceai",
"revel_score": 0.842,
"revel_prediction": "Pathogenic",
"alphamissense_score": 0.9917,
"alphamissense_prediction": null,
"bayesdelnoaf_score": 0.29,
"bayesdelnoaf_prediction": "Pathogenic",
"phylop100way_score": 9.321,
"phylop100way_prediction": "Pathogenic",
"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": 10,
"acmg_classification": "Pathogenic",
"acmg_criteria": "PM1,PM2,PM5,PP3_Moderate,PP5_Moderate",
"acmg_by_gene": [
{
"score": 10,
"benign_score": 0,
"pathogenic_score": 10,
"criteria": [
"PM1",
"PM2",
"PM5",
"PP3_Moderate",
"PP5_Moderate"
],
"verdict": "Pathogenic",
"transcript": "NM_031157.4",
"gene_symbol": "HNRNPA1",
"hgnc_id": 5031,
"effects": [
"missense_variant"
],
"inheritance_mode": "AD",
"hgvs_c": "c.941A>T",
"hgvs_p": "p.Asp314Val"
},
{
"score": 6,
"benign_score": 0,
"pathogenic_score": 6,
"criteria": [
"PM2",
"PP3_Moderate",
"PP5_Moderate"
],
"verdict": "Likely_pathogenic",
"transcript": "ENST00000553061.1",
"gene_symbol": "ENSG00000258344",
"hgnc_id": null,
"effects": [
"intron_variant"
],
"inheritance_mode": "",
"hgvs_c": "n.545+6670A>T",
"hgvs_p": null
}
],
"clinvar_disease": "Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 3,not provided",
"clinvar_classification": "Likely pathogenic",
"clinvar_review_status": "criteria provided, single submitter",
"clinvar_submissions_summary": "LP:1",
"phenotype_combined": "Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 3|not provided",
"pathogenicity_classification_combined": "Likely pathogenic",
"custom_annotations": null
}
],
"message": null
}