← 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: 4-82819090-T-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "4",
      "pos": 82819090,
      "ref": "T",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "NM_001400154.1",
      "consequences": [
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "NM_001077207.4",
          "protein_id": "NP_001070675.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000395310.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001077207.4"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "ENST00000395310.7",
          "protein_id": "ENSP00000378721.2",
          "transcript_support_level": 1,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001077207.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000395310.7"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "ENST00000508502.5",
          "protein_id": "ENSP00000424635.1",
          "transcript_support_level": 1,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000508502.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "ENST00000348405.8",
          "protein_id": "ENSP00000337602.5",
          "transcript_support_level": 1,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000348405.8"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "ENST00000505984.5",
          "protein_id": "ENSP00000424451.1",
          "transcript_support_level": 1,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000505984.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3305A>G",
          "hgvs_p": "p.Asn1102Ser",
          "transcript": "ENST00000311785.11",
          "protein_id": "ENSP00000309070.7",
          "transcript_support_level": 1,
          "aa_start": 1102,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3305,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000311785.11"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3188A>G",
          "hgvs_p": "p.Asn1063Ser",
          "transcript": "ENST00000513858.5",
          "protein_id": "ENSP00000426886.1",
          "transcript_support_level": 1,
          "aa_start": 1063,
          "aa_end": null,
          "aa_length": 1067,
          "cds_start": 3188,
          "cds_end": null,
          "cds_length": 3204,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000513858.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.1133A>G",
          "hgvs_p": "p.Asn378Ser",
          "transcript": "ENST00000503937.5",
          "protein_id": "ENSP00000422371.1",
          "transcript_support_level": 1,
          "aa_start": 378,
          "aa_end": null,
          "aa_length": 382,
          "cds_start": 1133,
          "cds_end": null,
          "cds_length": 1149,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000503937.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3740A>G",
          "hgvs_p": "p.Asn1247Ser",
          "transcript": "NM_001400154.1",
          "protein_id": "NP_001387083.1",
          "transcript_support_level": null,
          "aa_start": 1247,
          "aa_end": null,
          "aa_length": 1251,
          "cds_start": 3740,
          "cds_end": null,
          "cds_length": 3756,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400154.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3740A>G",
          "hgvs_p": "p.Asn1247Ser",
          "transcript": "NM_001400155.1",
          "protein_id": "NP_001387084.1",
          "transcript_support_level": null,
          "aa_start": 1247,
          "aa_end": null,
          "aa_length": 1251,
          "cds_start": 3740,
          "cds_end": null,
          "cds_length": 3756,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400155.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3740A>G",
          "hgvs_p": "p.Asn1247Ser",
          "transcript": "ENST00000505472.5",
          "protein_id": "ENSP00000421633.1",
          "transcript_support_level": 5,
          "aa_start": 1247,
          "aa_end": null,
          "aa_length": 1251,
          "cds_start": 3740,
          "cds_end": null,
          "cds_length": 3756,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000505472.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3695A>G",
          "hgvs_p": "p.Asn1232Ser",
          "transcript": "NM_001400156.1",
          "protein_id": "NP_001387085.1",
          "transcript_support_level": null,
          "aa_start": 1232,
          "aa_end": null,
          "aa_length": 1236,
          "cds_start": 3695,
          "cds_end": null,
          "cds_length": 3711,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400156.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3695A>G",
          "hgvs_p": "p.Asn1232Ser",
          "transcript": "ENST00000854381.1",
          "protein_id": "ENSP00000524440.1",
          "transcript_support_level": null,
          "aa_start": 1232,
          "aa_end": null,
          "aa_length": 1236,
          "cds_start": 3695,
          "cds_end": null,
          "cds_length": 3711,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854381.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3695A>G",
          "hgvs_p": "p.Asn1232Ser",
          "transcript": "ENST00000951360.1",
          "protein_id": "ENSP00000621419.1",
          "transcript_support_level": null,
          "aa_start": 1232,
          "aa_end": null,
          "aa_length": 1236,
          "cds_start": 3695,
          "cds_end": null,
          "cds_length": 3711,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951360.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3686A>G",
          "hgvs_p": "p.Asn1229Ser",
          "transcript": "NM_001400157.1",
          "protein_id": "NP_001387086.1",
          "transcript_support_level": null,
          "aa_start": 1229,
          "aa_end": null,
          "aa_length": 1233,
          "cds_start": 3686,
          "cds_end": null,
          "cds_length": 3702,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400157.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3686A>G",
          "hgvs_p": "p.Asn1229Ser",
          "transcript": "NM_001400158.1",
          "protein_id": "NP_001387087.1",
          "transcript_support_level": null,
          "aa_start": 1229,
          "aa_end": null,
          "aa_length": 1233,
          "cds_start": 3686,
          "cds_end": null,
          "cds_length": 3702,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400158.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3686A>G",
          "hgvs_p": "p.Asn1229Ser",
          "transcript": "NM_001400159.1",
          "protein_id": "NP_001387088.1",
          "transcript_support_level": null,
          "aa_start": 1229,
          "aa_end": null,
          "aa_length": 1233,
          "cds_start": 3686,
          "cds_end": null,
          "cds_length": 3702,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400159.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3662A>G",
          "hgvs_p": "p.Asn1221Ser",
          "transcript": "NM_001400160.1",
          "protein_id": "NP_001387089.1",
          "transcript_support_level": null,
          "aa_start": 1221,
          "aa_end": null,
          "aa_length": 1225,
          "cds_start": 3662,
          "cds_end": null,
          "cds_length": 3678,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400160.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3662A>G",
          "hgvs_p": "p.Asn1221Ser",
          "transcript": "NM_001400161.1",
          "protein_id": "NP_001387090.1",
          "transcript_support_level": null,
          "aa_start": 1221,
          "aa_end": null,
          "aa_length": 1225,
          "cds_start": 3662,
          "cds_end": null,
          "cds_length": 3678,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400161.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3656A>G",
          "hgvs_p": "p.Asn1219Ser",
          "transcript": "NM_001400162.1",
          "protein_id": "NP_001387091.1",
          "transcript_support_level": null,
          "aa_start": 1219,
          "aa_end": null,
          "aa_length": 1223,
          "cds_start": 3656,
          "cds_end": null,
          "cds_length": 3672,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400162.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "NM_001318120.2",
          "protein_id": "NP_001305049.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001318120.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "NM_001400164.1",
          "protein_id": "NP_001387093.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400164.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "NM_001400165.1",
          "protein_id": "NP_001387094.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400165.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "NM_001400166.1",
          "protein_id": "NP_001387095.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400166.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 29,
          "exon_rank_end": null,
          "exon_count": 29,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "ENST00000355196.6",
          "protein_id": "ENSP00000347329.2",
          "transcript_support_level": 2,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000355196.6"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "ENST00000448323.5",
          "protein_id": "ENSP00000400926.1",
          "transcript_support_level": 5,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000448323.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "ENST00000854405.1",
          "protein_id": "ENSP00000524464.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854405.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "ENST00000854408.1",
          "protein_id": "ENSP00000524467.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854408.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3647A>G",
          "hgvs_p": "p.Asn1216Ser",
          "transcript": "ENST00000951366.1",
          "protein_id": "ENSP00000621425.1",
          "transcript_support_level": null,
          "aa_start": 1216,
          "aa_end": null,
          "aa_length": 1220,
          "cds_start": 3647,
          "cds_end": null,
          "cds_length": 3663,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951366.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3641A>G",
          "hgvs_p": "p.Asn1214Ser",
          "transcript": "ENST00000854391.1",
          "protein_id": "ENSP00000524450.1",
          "transcript_support_level": null,
          "aa_start": 1214,
          "aa_end": null,
          "aa_length": 1218,
          "cds_start": 3641,
          "cds_end": null,
          "cds_length": 3657,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854391.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3641A>G",
          "hgvs_p": "p.Asn1214Ser",
          "transcript": "ENST00000854394.1",
          "protein_id": "ENSP00000524453.1",
          "transcript_support_level": null,
          "aa_start": 1214,
          "aa_end": null,
          "aa_length": 1218,
          "cds_start": 3641,
          "cds_end": null,
          "cds_length": 3657,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854394.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3632A>G",
          "hgvs_p": "p.Asn1211Ser",
          "transcript": "NM_001400214.1",
          "protein_id": "NP_001387143.1",
          "transcript_support_level": null,
          "aa_start": 1211,
          "aa_end": null,
          "aa_length": 1215,
          "cds_start": 3632,
          "cds_end": null,
          "cds_length": 3648,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400214.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3626A>G",
          "hgvs_p": "p.Asn1209Ser",
          "transcript": "ENST00000854410.1",
          "protein_id": "ENSP00000524469.1",
          "transcript_support_level": null,
          "aa_start": 1209,
          "aa_end": null,
          "aa_length": 1213,
          "cds_start": 3626,
          "cds_end": null,
          "cds_length": 3642,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854410.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3623A>G",
          "hgvs_p": "p.Asn1208Ser",
          "transcript": "NM_001400167.1",
          "protein_id": "NP_001387096.1",
          "transcript_support_level": null,
          "aa_start": 1208,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3623,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400167.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3623A>G",
          "hgvs_p": "p.Asn1208Ser",
          "transcript": "NM_001400168.1",
          "protein_id": "NP_001387097.1",
          "transcript_support_level": null,
          "aa_start": 1208,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3623,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400168.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3623A>G",
          "hgvs_p": "p.Asn1208Ser",
          "transcript": "ENST00000854389.1",
          "protein_id": "ENSP00000524448.1",
          "transcript_support_level": null,
          "aa_start": 1208,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3623,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854389.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3623A>G",
          "hgvs_p": "p.Asn1208Ser",
          "transcript": "ENST00000922803.1",
          "protein_id": "ENSP00000592862.1",
          "transcript_support_level": null,
          "aa_start": 1208,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3623,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922803.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3623A>G",
          "hgvs_p": "p.Asn1208Ser",
          "transcript": "ENST00000951357.1",
          "protein_id": "ENSP00000621416.1",
          "transcript_support_level": null,
          "aa_start": 1208,
          "aa_end": null,
          "aa_length": 1212,
          "cds_start": 3623,
          "cds_end": null,
          "cds_length": 3639,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951357.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3617A>G",
          "hgvs_p": "p.Asn1206Ser",
          "transcript": "ENST00000854377.1",
          "protein_id": "ENSP00000524436.1",
          "transcript_support_level": null,
          "aa_start": 1206,
          "aa_end": null,
          "aa_length": 1210,
          "cds_start": 3617,
          "cds_end": null,
          "cds_length": 3633,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854377.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3608A>G",
          "hgvs_p": "p.Asn1203Ser",
          "transcript": "NM_001400180.1",
          "protein_id": "NP_001387109.1",
          "transcript_support_level": null,
          "aa_start": 1203,
          "aa_end": null,
          "aa_length": 1207,
          "cds_start": 3608,
          "cds_end": null,
          "cds_length": 3624,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400180.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3608A>G",
          "hgvs_p": "p.Asn1203Ser",
          "transcript": "NM_001400184.1",
          "protein_id": "NP_001387113.1",
          "transcript_support_level": null,
          "aa_start": 1203,
          "aa_end": null,
          "aa_length": 1207,
          "cds_start": 3608,
          "cds_end": null,
          "cds_length": 3624,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400184.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3608A>G",
          "hgvs_p": "p.Asn1203Ser",
          "transcript": "NM_001400186.1",
          "protein_id": "NP_001387115.1",
          "transcript_support_level": null,
          "aa_start": 1203,
          "aa_end": null,
          "aa_length": 1207,
          "cds_start": 3608,
          "cds_end": null,
          "cds_length": 3624,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400186.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3608A>G",
          "hgvs_p": "p.Asn1203Ser",
          "transcript": "NM_001400188.1",
          "protein_id": "NP_001387117.1",
          "transcript_support_level": null,
          "aa_start": 1203,
          "aa_end": null,
          "aa_length": 1207,
          "cds_start": 3608,
          "cds_end": null,
          "cds_length": 3624,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400188.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "NM_001077208.4",
          "protein_id": "NP_001070676.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001077208.4"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "NM_001318119.2",
          "protein_id": "NP_001305048.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001318119.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "NM_001400190.1",
          "protein_id": "NP_001387119.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400190.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "NM_001400191.1",
          "protein_id": "NP_001387120.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400191.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "NM_001400193.1",
          "protein_id": "NP_001387122.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400193.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "ENST00000854379.1",
          "protein_id": "ENSP00000524438.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854379.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "ENST00000854402.1",
          "protein_id": "ENSP00000524461.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854402.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "ENST00000854406.1",
          "protein_id": "ENSP00000524465.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854406.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3602A>G",
          "hgvs_p": "p.Asn1201Ser",
          "transcript": "ENST00000951361.1",
          "protein_id": "ENSP00000621420.1",
          "transcript_support_level": null,
          "aa_start": 1201,
          "aa_end": null,
          "aa_length": 1205,
          "cds_start": 3602,
          "cds_end": null,
          "cds_length": 3618,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951361.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3587A>G",
          "hgvs_p": "p.Asn1196Ser",
          "transcript": "NM_001191049.2",
          "protein_id": "NP_001177978.1",
          "transcript_support_level": null,
          "aa_start": 1196,
          "aa_end": null,
          "aa_length": 1200,
          "cds_start": 3587,
          "cds_end": null,
          "cds_length": 3603,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001191049.2"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3587A>G",
          "hgvs_p": "p.Asn1196Ser",
          "transcript": "ENST00000443462.6",
          "protein_id": "ENSP00000408027.2",
          "transcript_support_level": 2,
          "aa_start": 1196,
          "aa_end": null,
          "aa_length": 1200,
          "cds_start": 3587,
          "cds_end": null,
          "cds_length": 3603,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000443462.6"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3578A>G",
          "hgvs_p": "p.Asn1193Ser",
          "transcript": "ENST00000854386.1",
          "protein_id": "ENSP00000524445.1",
          "transcript_support_level": null,
          "aa_start": 1193,
          "aa_end": null,
          "aa_length": 1197,
          "cds_start": 3578,
          "cds_end": null,
          "cds_length": 3594,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854386.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3578A>G",
          "hgvs_p": "p.Asn1193Ser",
          "transcript": "ENST00000854387.1",
          "protein_id": "ENSP00000524446.1",
          "transcript_support_level": null,
          "aa_start": 1193,
          "aa_end": null,
          "aa_length": 1197,
          "cds_start": 3578,
          "cds_end": null,
          "cds_length": 3594,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854387.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3575A>G",
          "hgvs_p": "p.Asn1192Ser",
          "transcript": "NM_001400194.1",
          "protein_id": "NP_001387123.1",
          "transcript_support_level": null,
          "aa_start": 1192,
          "aa_end": null,
          "aa_length": 1196,
          "cds_start": 3575,
          "cds_end": null,
          "cds_length": 3591,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400194.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3569A>G",
          "hgvs_p": "p.Asn1190Ser",
          "transcript": "NM_001400197.1",
          "protein_id": "NP_001387126.1",
          "transcript_support_level": null,
          "aa_start": 1190,
          "aa_end": null,
          "aa_length": 1194,
          "cds_start": 3569,
          "cds_end": null,
          "cds_length": 3585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400197.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3569A>G",
          "hgvs_p": "p.Asn1190Ser",
          "transcript": "NM_001400198.1",
          "protein_id": "NP_001387127.1",
          "transcript_support_level": null,
          "aa_start": 1190,
          "aa_end": null,
          "aa_length": 1194,
          "cds_start": 3569,
          "cds_end": null,
          "cds_length": 3585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400198.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3569A>G",
          "hgvs_p": "p.Asn1190Ser",
          "transcript": "NM_001400200.1",
          "protein_id": "NP_001387129.1",
          "transcript_support_level": null,
          "aa_start": 1190,
          "aa_end": null,
          "aa_length": 1194,
          "cds_start": 3569,
          "cds_end": null,
          "cds_length": 3585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400200.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3569A>G",
          "hgvs_p": "p.Asn1190Ser",
          "transcript": "NM_001400202.1",
          "protein_id": "NP_001387131.1",
          "transcript_support_level": null,
          "aa_start": 1190,
          "aa_end": null,
          "aa_length": 1194,
          "cds_start": 3569,
          "cds_end": null,
          "cds_length": 3585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400202.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3569A>G",
          "hgvs_p": "p.Asn1190Ser",
          "transcript": "NM_001400203.1",
          "protein_id": "NP_001387132.1",
          "transcript_support_level": null,
          "aa_start": 1190,
          "aa_end": null,
          "aa_length": 1194,
          "cds_start": 3569,
          "cds_end": null,
          "cds_length": 3585,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400203.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3563A>G",
          "hgvs_p": "p.Asn1188Ser",
          "transcript": "NM_001400204.1",
          "protein_id": "NP_001387133.1",
          "transcript_support_level": null,
          "aa_start": 1188,
          "aa_end": null,
          "aa_length": 1192,
          "cds_start": 3563,
          "cds_end": null,
          "cds_length": 3579,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400204.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3563A>G",
          "hgvs_p": "p.Asn1188Ser",
          "transcript": "NM_001400205.1",
          "protein_id": "NP_001387134.1",
          "transcript_support_level": null,
          "aa_start": 1188,
          "aa_end": null,
          "aa_length": 1192,
          "cds_start": 3563,
          "cds_end": null,
          "cds_length": 3579,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400205.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3563A>G",
          "hgvs_p": "p.Asn1188Ser",
          "transcript": "NM_001400206.1",
          "protein_id": "NP_001387135.1",
          "transcript_support_level": null,
          "aa_start": 1188,
          "aa_end": null,
          "aa_length": 1192,
          "cds_start": 3563,
          "cds_end": null,
          "cds_length": 3579,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400206.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3551A>G",
          "hgvs_p": "p.Asn1184Ser",
          "transcript": "ENST00000951354.1",
          "protein_id": "ENSP00000621413.1",
          "transcript_support_level": null,
          "aa_start": 1184,
          "aa_end": null,
          "aa_length": 1188,
          "cds_start": 3551,
          "cds_end": null,
          "cds_length": 3567,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951354.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "NM_001400207.1",
          "protein_id": "NP_001387136.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400207.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "NM_001400208.1",
          "protein_id": "NP_001387137.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400208.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "NM_001400209.1",
          "protein_id": "NP_001387138.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400209.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "NM_016211.5",
          "protein_id": "NP_057295.2",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_016211.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "ENST00000854380.1",
          "protein_id": "ENSP00000524439.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854380.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3530A>G",
          "hgvs_p": "p.Asn1177Ser",
          "transcript": "ENST00000951372.1",
          "protein_id": "ENSP00000621431.1",
          "transcript_support_level": null,
          "aa_start": 1177,
          "aa_end": null,
          "aa_length": 1181,
          "cds_start": 3530,
          "cds_end": null,
          "cds_length": 3546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951372.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3524A>G",
          "hgvs_p": "p.Asn1175Ser",
          "transcript": "NM_001400210.1",
          "protein_id": "NP_001387139.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1179,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 3540,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400210.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3524A>G",
          "hgvs_p": "p.Asn1175Ser",
          "transcript": "NM_001400211.1",
          "protein_id": "NP_001387140.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1179,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 3540,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400211.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3524A>G",
          "hgvs_p": "p.Asn1175Ser",
          "transcript": "ENST00000854388.1",
          "protein_id": "ENSP00000524447.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1179,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 3540,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854388.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3524A>G",
          "hgvs_p": "p.Asn1175Ser",
          "transcript": "ENST00000854403.1",
          "protein_id": "ENSP00000524462.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1179,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 3540,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854403.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3524A>G",
          "hgvs_p": "p.Asn1175Ser",
          "transcript": "ENST00000922802.1",
          "protein_id": "ENSP00000592861.1",
          "transcript_support_level": null,
          "aa_start": 1175,
          "aa_end": null,
          "aa_length": 1179,
          "cds_start": 3524,
          "cds_end": null,
          "cds_length": 3540,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922802.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3515A>G",
          "hgvs_p": "p.Asn1172Ser",
          "transcript": "NM_001400212.1",
          "protein_id": "NP_001387141.1",
          "transcript_support_level": null,
          "aa_start": 1172,
          "aa_end": null,
          "aa_length": 1176,
          "cds_start": 3515,
          "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": "NM_001400212.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3506A>G",
          "hgvs_p": "p.Asn1169Ser",
          "transcript": "ENST00000951358.1",
          "protein_id": "ENSP00000621417.1",
          "transcript_support_level": null,
          "aa_start": 1169,
          "aa_end": null,
          "aa_length": 1173,
          "cds_start": 3506,
          "cds_end": null,
          "cds_length": 3522,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951358.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3491A>G",
          "hgvs_p": "p.Asn1164Ser",
          "transcript": "NM_001400216.1",
          "protein_id": "NP_001387145.1",
          "transcript_support_level": null,
          "aa_start": 1164,
          "aa_end": null,
          "aa_length": 1168,
          "cds_start": 3491,
          "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": "NM_001400216.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "NM_001300745.3",
          "protein_id": "NP_001287674.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001300745.3"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "NM_001400213.1",
          "protein_id": "NP_001387142.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400213.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "ENST00000854383.1",
          "protein_id": "ENSP00000524442.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854383.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "ENST00000854412.1",
          "protein_id": "ENSP00000524471.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854412.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "ENST00000922809.1",
          "protein_id": "ENSP00000592868.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922809.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3485A>G",
          "hgvs_p": "p.Asn1162Ser",
          "transcript": "ENST00000951373.1",
          "protein_id": "ENSP00000621432.1",
          "transcript_support_level": null,
          "aa_start": 1162,
          "aa_end": null,
          "aa_length": 1166,
          "cds_start": 3485,
          "cds_end": null,
          "cds_length": 3501,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951373.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3482A>G",
          "hgvs_p": "p.Asn1161Ser",
          "transcript": "ENST00000854409.1",
          "protein_id": "ENSP00000524468.1",
          "transcript_support_level": null,
          "aa_start": 1161,
          "aa_end": null,
          "aa_length": 1165,
          "cds_start": 3482,
          "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": "ENST00000854409.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3482A>G",
          "hgvs_p": "p.Asn1161Ser",
          "transcript": "ENST00000922807.1",
          "protein_id": "ENSP00000592866.1",
          "transcript_support_level": null,
          "aa_start": 1161,
          "aa_end": null,
          "aa_length": 1165,
          "cds_start": 3482,
          "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": "ENST00000922807.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3482A>G",
          "hgvs_p": "p.Asn1161Ser",
          "transcript": "ENST00000922808.1",
          "protein_id": "ENSP00000592867.1",
          "transcript_support_level": null,
          "aa_start": 1161,
          "aa_end": null,
          "aa_length": 1165,
          "cds_start": 3482,
          "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": "ENST00000922808.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3437A>G",
          "hgvs_p": "p.Asn1146Ser",
          "transcript": "ENST00000951364.1",
          "protein_id": "ENSP00000621423.1",
          "transcript_support_level": null,
          "aa_start": 1146,
          "aa_end": null,
          "aa_length": 1150,
          "cds_start": 3437,
          "cds_end": null,
          "cds_length": 3453,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951364.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3434A>G",
          "hgvs_p": "p.Asn1145Ser",
          "transcript": "ENST00000922806.1",
          "protein_id": "ENSP00000592865.1",
          "transcript_support_level": null,
          "aa_start": 1145,
          "aa_end": null,
          "aa_length": 1149,
          "cds_start": 3434,
          "cds_end": null,
          "cds_length": 3450,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922806.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3428A>G",
          "hgvs_p": "p.Asn1143Ser",
          "transcript": "ENST00000854390.1",
          "protein_id": "ENSP00000524449.1",
          "transcript_support_level": null,
          "aa_start": 1143,
          "aa_end": null,
          "aa_length": 1147,
          "cds_start": 3428,
          "cds_end": null,
          "cds_length": 3444,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854390.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3410A>G",
          "hgvs_p": "p.Asn1137Ser",
          "transcript": "ENST00000951365.1",
          "protein_id": "ENSP00000621424.1",
          "transcript_support_level": null,
          "aa_start": 1137,
          "aa_end": null,
          "aa_length": 1141,
          "cds_start": 3410,
          "cds_end": null,
          "cds_length": 3426,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951365.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3398A>G",
          "hgvs_p": "p.Asn1133Ser",
          "transcript": "ENST00000951368.1",
          "protein_id": "ENSP00000621427.1",
          "transcript_support_level": null,
          "aa_start": 1133,
          "aa_end": null,
          "aa_length": 1137,
          "cds_start": 3398,
          "cds_end": null,
          "cds_length": 3414,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951368.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3368A>G",
          "hgvs_p": "p.Asn1123Ser",
          "transcript": "NM_001400215.1",
          "protein_id": "NP_001387144.1",
          "transcript_support_level": null,
          "aa_start": 1123,
          "aa_end": null,
          "aa_length": 1127,
          "cds_start": 3368,
          "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": "NM_001400215.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3365A>G",
          "hgvs_p": "p.Asn1122Ser",
          "transcript": "ENST00000854393.1",
          "protein_id": "ENSP00000524452.1",
          "transcript_support_level": null,
          "aa_start": 1122,
          "aa_end": null,
          "aa_length": 1126,
          "cds_start": 3365,
          "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": "ENST00000854393.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3356A>G",
          "hgvs_p": "p.Asn1119Ser",
          "transcript": "ENST00000854411.1",
          "protein_id": "ENSP00000524470.1",
          "transcript_support_level": null,
          "aa_start": 1119,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 3356,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854411.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 28,
          "exon_rank_end": null,
          "exon_count": 28,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3356A>G",
          "hgvs_p": "p.Asn1119Ser",
          "transcript": "ENST00000951355.1",
          "protein_id": "ENSP00000621414.1",
          "transcript_support_level": null,
          "aa_start": 1119,
          "aa_end": null,
          "aa_length": 1123,
          "cds_start": 3356,
          "cds_end": null,
          "cds_length": 3372,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951355.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3350A>G",
          "hgvs_p": "p.Asn1117Ser",
          "transcript": "ENST00000922804.1",
          "protein_id": "ENSP00000592863.1",
          "transcript_support_level": null,
          "aa_start": 1117,
          "aa_end": null,
          "aa_length": 1121,
          "cds_start": 3350,
          "cds_end": null,
          "cds_length": 3366,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922804.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3344A>G",
          "hgvs_p": "p.Asn1115Ser",
          "transcript": "ENST00000854397.1",
          "protein_id": "ENSP00000524456.1",
          "transcript_support_level": null,
          "aa_start": 1115,
          "aa_end": null,
          "aa_length": 1119,
          "cds_start": 3344,
          "cds_end": null,
          "cds_length": 3360,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854397.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3344A>G",
          "hgvs_p": "p.Asn1115Ser",
          "transcript": "ENST00000854413.1",
          "protein_id": "ENSP00000524472.1",
          "transcript_support_level": null,
          "aa_start": 1115,
          "aa_end": null,
          "aa_length": 1119,
          "cds_start": 3344,
          "cds_end": null,
          "cds_length": 3360,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854413.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3341A>G",
          "hgvs_p": "p.Asn1114Ser",
          "transcript": "ENST00000951369.1",
          "protein_id": "ENSP00000621428.1",
          "transcript_support_level": null,
          "aa_start": 1114,
          "aa_end": null,
          "aa_length": 1118,
          "cds_start": 3341,
          "cds_end": null,
          "cds_length": 3357,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951369.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3320A>G",
          "hgvs_p": "p.Asn1107Ser",
          "transcript": "ENST00000922801.1",
          "protein_id": "ENSP00000592860.1",
          "transcript_support_level": null,
          "aa_start": 1107,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 3320,
          "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": "ENST00000922801.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3320A>G",
          "hgvs_p": "p.Asn1107Ser",
          "transcript": "ENST00000951371.1",
          "protein_id": "ENSP00000621430.1",
          "transcript_support_level": null,
          "aa_start": 1107,
          "aa_end": null,
          "aa_length": 1111,
          "cds_start": 3320,
          "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": "ENST00000951371.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3311A>G",
          "hgvs_p": "p.Asn1104Ser",
          "transcript": "ENST00000854396.1",
          "protein_id": "ENSP00000524455.1",
          "transcript_support_level": null,
          "aa_start": 1104,
          "aa_end": null,
          "aa_length": 1108,
          "cds_start": 3311,
          "cds_end": null,
          "cds_length": 3327,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854396.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3311A>G",
          "hgvs_p": "p.Asn1104Ser",
          "transcript": "ENST00000951363.1",
          "protein_id": "ENSP00000621422.1",
          "transcript_support_level": null,
          "aa_start": 1104,
          "aa_end": null,
          "aa_length": 1108,
          "cds_start": 3311,
          "cds_end": null,
          "cds_length": 3327,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951363.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3305A>G",
          "hgvs_p": "p.Asn1102Ser",
          "transcript": "NM_001077206.4",
          "protein_id": "NP_001070674.1",
          "transcript_support_level": null,
          "aa_start": 1102,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3305,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001077206.4"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3305A>G",
          "hgvs_p": "p.Asn1102Ser",
          "transcript": "NM_001400217.1",
          "protein_id": "NP_001387146.1",
          "transcript_support_level": null,
          "aa_start": 1102,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3305,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400217.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3305A>G",
          "hgvs_p": "p.Asn1102Ser",
          "transcript": "ENST00000509142.5",
          "protein_id": "ENSP00000426569.1",
          "transcript_support_level": 5,
          "aa_start": 1102,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3305,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000509142.5"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3305A>G",
          "hgvs_p": "p.Asn1102Ser",
          "transcript": "ENST00000854407.1",
          "protein_id": "ENSP00000524466.1",
          "transcript_support_level": null,
          "aa_start": 1102,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3305,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854407.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3305A>G",
          "hgvs_p": "p.Asn1102Ser",
          "transcript": "ENST00000951367.1",
          "protein_id": "ENSP00000621426.1",
          "transcript_support_level": null,
          "aa_start": 1102,
          "aa_end": null,
          "aa_length": 1106,
          "cds_start": 3305,
          "cds_end": null,
          "cds_length": 3321,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951367.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3281A>G",
          "hgvs_p": "p.Asn1094Ser",
          "transcript": "NM_001400218.1",
          "protein_id": "NP_001387147.1",
          "transcript_support_level": null,
          "aa_start": 1094,
          "aa_end": null,
          "aa_length": 1098,
          "cds_start": 3281,
          "cds_end": null,
          "cds_length": 3297,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400218.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3239A>G",
          "hgvs_p": "p.Asn1080Ser",
          "transcript": "ENST00000951375.1",
          "protein_id": "ENSP00000621434.1",
          "transcript_support_level": null,
          "aa_start": 1080,
          "aa_end": null,
          "aa_length": 1084,
          "cds_start": 3239,
          "cds_end": null,
          "cds_length": 3255,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951375.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3233A>G",
          "hgvs_p": "p.Asn1078Ser",
          "transcript": "NM_001400219.1",
          "protein_id": "NP_001387148.1",
          "transcript_support_level": null,
          "aa_start": 1078,
          "aa_end": null,
          "aa_length": 1082,
          "cds_start": 3233,
          "cds_end": null,
          "cds_length": 3249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400219.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3233A>G",
          "hgvs_p": "p.Asn1078Ser",
          "transcript": "NM_001400220.1",
          "protein_id": "NP_001387149.1",
          "transcript_support_level": null,
          "aa_start": 1078,
          "aa_end": null,
          "aa_length": 1082,
          "cds_start": 3233,
          "cds_end": null,
          "cds_length": 3249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400220.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3227A>G",
          "hgvs_p": "p.Asn1076Ser",
          "transcript": "NM_001400221.1",
          "protein_id": "NP_001387150.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 3227,
          "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": "NM_001400221.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3227A>G",
          "hgvs_p": "p.Asn1076Ser",
          "transcript": "NM_001400222.1",
          "protein_id": "NP_001387151.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 3227,
          "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": "NM_001400222.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3227A>G",
          "hgvs_p": "p.Asn1076Ser",
          "transcript": "ENST00000854384.1",
          "protein_id": "ENSP00000524443.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 3227,
          "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": "ENST00000854384.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3227A>G",
          "hgvs_p": "p.Asn1076Ser",
          "transcript": "ENST00000854395.1",
          "protein_id": "ENSP00000524454.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 3227,
          "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": "ENST00000854395.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3227A>G",
          "hgvs_p": "p.Asn1076Ser",
          "transcript": "ENST00000854404.1",
          "protein_id": "ENSP00000524463.1",
          "transcript_support_level": null,
          "aa_start": 1076,
          "aa_end": null,
          "aa_length": 1080,
          "cds_start": 3227,
          "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": "ENST00000854404.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3209A>G",
          "hgvs_p": "p.Asn1070Ser",
          "transcript": "ENST00000854382.1",
          "protein_id": "ENSP00000524441.1",
          "transcript_support_level": null,
          "aa_start": 1070,
          "aa_end": null,
          "aa_length": 1074,
          "cds_start": 3209,
          "cds_end": null,
          "cds_length": 3225,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854382.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3209A>G",
          "hgvs_p": "p.Asn1070Ser",
          "transcript": "ENST00000951370.1",
          "protein_id": "ENSP00000621429.1",
          "transcript_support_level": null,
          "aa_start": 1070,
          "aa_end": null,
          "aa_length": 1074,
          "cds_start": 3209,
          "cds_end": null,
          "cds_length": 3225,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951370.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3188A>G",
          "hgvs_p": "p.Asn1063Ser",
          "transcript": "NM_001300744.3",
          "protein_id": "NP_001287673.1",
          "transcript_support_level": null,
          "aa_start": 1063,
          "aa_end": null,
          "aa_length": 1067,
          "cds_start": 3188,
          "cds_end": null,
          "cds_length": 3204,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001300744.3"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3188A>G",
          "hgvs_p": "p.Asn1063Ser",
          "transcript": "NM_001400223.1",
          "protein_id": "NP_001387152.1",
          "transcript_support_level": null,
          "aa_start": 1063,
          "aa_end": null,
          "aa_length": 1067,
          "cds_start": 3188,
          "cds_end": null,
          "cds_length": 3204,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400223.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3188A>G",
          "hgvs_p": "p.Asn1063Ser",
          "transcript": "ENST00000500777.6",
          "protein_id": "ENSP00000421464.1",
          "transcript_support_level": 5,
          "aa_start": 1063,
          "aa_end": null,
          "aa_length": 1067,
          "cds_start": 3188,
          "cds_end": null,
          "cds_length": 3204,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000500777.6"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3188A>G",
          "hgvs_p": "p.Asn1063Ser",
          "transcript": "ENST00000854378.1",
          "protein_id": "ENSP00000524437.1",
          "transcript_support_level": null,
          "aa_start": 1063,
          "aa_end": null,
          "aa_length": 1067,
          "cds_start": 3188,
          "cds_end": null,
          "cds_length": 3204,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854378.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3185A>G",
          "hgvs_p": "p.Asn1062Ser",
          "transcript": "ENST00000854400.1",
          "protein_id": "ENSP00000524459.1",
          "transcript_support_level": null,
          "aa_start": 1062,
          "aa_end": null,
          "aa_length": 1066,
          "cds_start": 3185,
          "cds_end": null,
          "cds_length": 3201,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854400.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3173A>G",
          "hgvs_p": "p.Asn1058Ser",
          "transcript": "NM_001400224.1",
          "protein_id": "NP_001387153.1",
          "transcript_support_level": null,
          "aa_start": 1058,
          "aa_end": null,
          "aa_length": 1062,
          "cds_start": 3173,
          "cds_end": null,
          "cds_length": 3189,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001400224.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3131A>G",
          "hgvs_p": "p.Asn1044Ser",
          "transcript": "ENST00000854392.1",
          "protein_id": "ENSP00000524451.1",
          "transcript_support_level": null,
          "aa_start": 1044,
          "aa_end": null,
          "aa_length": 1048,
          "cds_start": 3131,
          "cds_end": null,
          "cds_length": 3147,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854392.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3092A>G",
          "hgvs_p": "p.Asn1031Ser",
          "transcript": "ENST00000854385.1",
          "protein_id": "ENSP00000524444.1",
          "transcript_support_level": null,
          "aa_start": 1031,
          "aa_end": null,
          "aa_length": 1035,
          "cds_start": 3092,
          "cds_end": null,
          "cds_length": 3108,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854385.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3092A>G",
          "hgvs_p": "p.Asn1031Ser",
          "transcript": "ENST00000951356.1",
          "protein_id": "ENSP00000621415.1",
          "transcript_support_level": null,
          "aa_start": 1031,
          "aa_end": null,
          "aa_length": 1035,
          "cds_start": 3092,
          "cds_end": null,
          "cds_length": 3108,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951356.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3068A>G",
          "hgvs_p": "p.Asn1023Ser",
          "transcript": "ENST00000854401.1",
          "protein_id": "ENSP00000524460.1",
          "transcript_support_level": null,
          "aa_start": 1023,
          "aa_end": null,
          "aa_length": 1027,
          "cds_start": 3068,
          "cds_end": null,
          "cds_length": 3084,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854401.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 24,
          "exon_rank_end": null,
          "exon_count": 24,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3068A>G",
          "hgvs_p": "p.Asn1023Ser",
          "transcript": "ENST00000951359.1",
          "protein_id": "ENSP00000621418.1",
          "transcript_support_level": null,
          "aa_start": 1023,
          "aa_end": null,
          "aa_length": 1027,
          "cds_start": 3068,
          "cds_end": null,
          "cds_length": 3084,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951359.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.3014A>G",
          "hgvs_p": "p.Asn1005Ser",
          "transcript": "ENST00000854398.1",
          "protein_id": "ENSP00000524457.1",
          "transcript_support_level": null,
          "aa_start": 1005,
          "aa_end": null,
          "aa_length": 1009,
          "cds_start": 3014,
          "cds_end": null,
          "cds_length": 3030,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854398.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 22,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.2951A>G",
          "hgvs_p": "p.Asn984Ser",
          "transcript": "ENST00000854399.1",
          "protein_id": "ENSP00000524458.1",
          "transcript_support_level": null,
          "aa_start": 984,
          "aa_end": null,
          "aa_length": 988,
          "cds_start": 2951,
          "cds_end": null,
          "cds_length": 2967,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854399.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 20,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.2894A>G",
          "hgvs_p": "p.Asn965Ser",
          "transcript": "ENST00000264405.9",
          "protein_id": "ENSP00000264405.5",
          "transcript_support_level": 2,
          "aa_start": 965,
          "aa_end": null,
          "aa_length": 969,
          "cds_start": 2894,
          "cds_end": null,
          "cds_length": 2910,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000264405.9"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "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": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.2129A>G",
          "hgvs_p": "p.Asn710Ser",
          "transcript": "ENST00000951374.1",
          "protein_id": "ENSP00000621433.1",
          "transcript_support_level": null,
          "aa_start": 710,
          "aa_end": null,
          "aa_length": 714,
          "cds_start": 2129,
          "cds_end": null,
          "cds_length": 2145,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951374.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "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": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.1865A>G",
          "hgvs_p": "p.Asn622Ser",
          "transcript": "ENST00000951362.1",
          "protein_id": "ENSP00000621421.1",
          "transcript_support_level": null,
          "aa_start": 622,
          "aa_end": null,
          "aa_length": 626,
          "cds_start": 1865,
          "cds_end": null,
          "cds_length": 1881,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000951362.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.917A>G",
          "hgvs_p": "p.Asn306Ser",
          "transcript": "ENST00000922805.1",
          "protein_id": "ENSP00000592864.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 310,
          "cds_start": 917,
          "cds_end": null,
          "cds_length": 933,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000922805.1"
        },
        {
          "aa_ref": "N",
          "aa_alt": "S",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "c.527A>G",
          "hgvs_p": "p.Asn176Ser",
          "transcript": "ENST00000515062.5",
          "protein_id": "ENSP00000426943.1",
          "transcript_support_level": 3,
          "aa_start": 176,
          "aa_end": null,
          "aa_length": 180,
          "cds_start": 527,
          "cds_end": null,
          "cds_length": 543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000515062.5"
        },
        {
          "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": "SEC31A",
          "gene_hgnc_id": 17052,
          "hgvs_c": "n.579A>G",
          "hgvs_p": null,
          "transcript": "ENST00000505479.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": "ENST00000505479.1"
        }
      ],
      "gene_symbol": "SEC31A",
      "gene_hgnc_id": 17052,
      "dbsnp": "rs142745636",
      "frequency_reference_population": 0.000013096042,
      "hom_count_reference_population": 1,
      "allele_count_reference_population": 21,
      "gnomad_exomes_af": 0.0000130925,
      "gnomad_genomes_af": 0.0000131299,
      "gnomad_exomes_ac": 19,
      "gnomad_genomes_ac": 2,
      "gnomad_exomes_homalt": 1,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.05746197700500488,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.111,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0648,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.63,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 4.23,
      "phylop100way_prediction": "Uncertain_significance",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": -4,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "BP4_Strong",
      "acmg_by_gene": [
        {
          "score": -4,
          "benign_score": 4,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001400154.1",
          "gene_symbol": "SEC31A",
          "hgnc_id": 17052,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "Unknown,AR",
          "hgvs_c": "c.3740A>G",
          "hgvs_p": "p.Asn1247Ser"
        }
      ],
      "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
}