← 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: 2-127428374-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "2",
      "pos": 127428374,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001375607.1",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "NM_000312.4",
          "protein_id": "NP_000303.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000234071.8",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_000312.4"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000234071.8",
          "protein_id": "ENSP00000234071.4",
          "transcript_support_level": 1,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_000312.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000234071.8"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.1000C>T",
          "hgvs_p": "p.Arg334Cys",
          "transcript": "NM_001375607.1",
          "protein_id": "NP_001362536.1",
          "transcript_support_level": null,
          "aa_start": 334,
          "aa_end": null,
          "aa_length": 523,
          "cds_start": 1000,
          "cds_end": null,
          "cds_length": 1572,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375607.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.997C>T",
          "hgvs_p": "p.Arg333Cys",
          "transcript": "NM_001375602.1",
          "protein_id": "NP_001362531.1",
          "transcript_support_level": null,
          "aa_start": 333,
          "aa_end": null,
          "aa_length": 522,
          "cds_start": 997,
          "cds_end": null,
          "cds_length": 1569,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375602.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.988C>T",
          "hgvs_p": "p.Arg330Cys",
          "transcript": "ENST00000883860.1",
          "protein_id": "ENSP00000553919.1",
          "transcript_support_level": null,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 519,
          "cds_start": 988,
          "cds_end": null,
          "cds_length": 1560,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883860.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.988C>T",
          "hgvs_p": "p.Arg330Cys",
          "transcript": "ENST00000883897.1",
          "protein_id": "ENSP00000553956.1",
          "transcript_support_level": null,
          "aa_start": 330,
          "aa_end": null,
          "aa_length": 519,
          "cds_start": 988,
          "cds_end": null,
          "cds_length": 1560,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883897.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.982C>T",
          "hgvs_p": "p.Arg328Cys",
          "transcript": "NM_001375606.1",
          "protein_id": "NP_001362535.1",
          "transcript_support_level": null,
          "aa_start": 328,
          "aa_end": null,
          "aa_length": 517,
          "cds_start": 982,
          "cds_end": null,
          "cds_length": 1554,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375606.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.979C>T",
          "hgvs_p": "p.Arg327Cys",
          "transcript": "NM_001375603.1",
          "protein_id": "NP_001362532.1",
          "transcript_support_level": null,
          "aa_start": 327,
          "aa_end": null,
          "aa_length": 516,
          "cds_start": 979,
          "cds_end": null,
          "cds_length": 1551,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375603.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.967C>T",
          "hgvs_p": "p.Arg323Cys",
          "transcript": "ENST00000883902.1",
          "protein_id": "ENSP00000553961.1",
          "transcript_support_level": null,
          "aa_start": 323,
          "aa_end": null,
          "aa_length": 512,
          "cds_start": 967,
          "cds_end": null,
          "cds_length": 1539,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883902.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "NM_001375605.1",
          "protein_id": "NP_001362534.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375605.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000409048.1",
          "protein_id": "ENSP00000386679.1",
          "transcript_support_level": 5,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000409048.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883843.1",
          "protein_id": "ENSP00000553902.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883843.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883844.1",
          "protein_id": "ENSP00000553903.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883844.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883854.1",
          "protein_id": "ENSP00000553913.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883854.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883858.1",
          "protein_id": "ENSP00000553917.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883858.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883861.1",
          "protein_id": "ENSP00000553920.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883861.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883880.1",
          "protein_id": "ENSP00000553939.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883880.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883881.1",
          "protein_id": "ENSP00000553940.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883881.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883888.1",
          "protein_id": "ENSP00000553947.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883888.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883893.1",
          "protein_id": "ENSP00000553952.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883893.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883894.1",
          "protein_id": "ENSP00000553953.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883894.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.916C>T",
          "hgvs_p": "p.Arg306Cys",
          "transcript": "ENST00000883895.1",
          "protein_id": "ENSP00000553954.1",
          "transcript_support_level": null,
          "aa_start": 306,
          "aa_end": null,
          "aa_length": 495,
          "cds_start": 916,
          "cds_end": null,
          "cds_length": 1488,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883895.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.910C>T",
          "hgvs_p": "p.Arg304Cys",
          "transcript": "ENST00000883865.1",
          "protein_id": "ENSP00000553924.1",
          "transcript_support_level": null,
          "aa_start": 304,
          "aa_end": null,
          "aa_length": 493,
          "cds_start": 910,
          "cds_end": null,
          "cds_length": 1482,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883865.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.910C>T",
          "hgvs_p": "p.Arg304Cys",
          "transcript": "ENST00000883901.1",
          "protein_id": "ENSP00000553960.1",
          "transcript_support_level": null,
          "aa_start": 304,
          "aa_end": null,
          "aa_length": 493,
          "cds_start": 910,
          "cds_end": null,
          "cds_length": 1482,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883901.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.886C>T",
          "hgvs_p": "p.Arg296Cys",
          "transcript": "ENST00000883851.1",
          "protein_id": "ENSP00000553910.1",
          "transcript_support_level": null,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 485,
          "cds_start": 886,
          "cds_end": null,
          "cds_length": 1458,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883851.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.886C>T",
          "hgvs_p": "p.Arg296Cys",
          "transcript": "ENST00000883856.1",
          "protein_id": "ENSP00000553915.1",
          "transcript_support_level": null,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 485,
          "cds_start": 886,
          "cds_end": null,
          "cds_length": 1458,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883856.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.886C>T",
          "hgvs_p": "p.Arg296Cys",
          "transcript": "ENST00000883898.1",
          "protein_id": "ENSP00000553957.1",
          "transcript_support_level": null,
          "aa_start": 296,
          "aa_end": null,
          "aa_length": 485,
          "cds_start": 886,
          "cds_end": null,
          "cds_length": 1458,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883898.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.877C>T",
          "hgvs_p": "p.Arg293Cys",
          "transcript": "NM_001375604.1",
          "protein_id": "NP_001362533.1",
          "transcript_support_level": null,
          "aa_start": 293,
          "aa_end": null,
          "aa_length": 482,
          "cds_start": 877,
          "cds_end": null,
          "cds_length": 1449,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375604.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.865C>T",
          "hgvs_p": "p.Arg289Cys",
          "transcript": "ENST00000883857.1",
          "protein_id": "ENSP00000553916.1",
          "transcript_support_level": null,
          "aa_start": 289,
          "aa_end": null,
          "aa_length": 478,
          "cds_start": 865,
          "cds_end": null,
          "cds_length": 1437,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883857.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.865C>T",
          "hgvs_p": "p.Arg289Cys",
          "transcript": "ENST00000883868.1",
          "protein_id": "ENSP00000553927.1",
          "transcript_support_level": null,
          "aa_start": 289,
          "aa_end": null,
          "aa_length": 478,
          "cds_start": 865,
          "cds_end": null,
          "cds_length": 1437,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883868.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.865C>T",
          "hgvs_p": "p.Arg289Cys",
          "transcript": "ENST00000883870.1",
          "protein_id": "ENSP00000553929.1",
          "transcript_support_level": null,
          "aa_start": 289,
          "aa_end": null,
          "aa_length": 478,
          "cds_start": 865,
          "cds_end": null,
          "cds_length": 1437,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883870.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.865C>T",
          "hgvs_p": "p.Arg289Cys",
          "transcript": "ENST00000883900.1",
          "protein_id": "ENSP00000553959.1",
          "transcript_support_level": null,
          "aa_start": 289,
          "aa_end": null,
          "aa_length": 478,
          "cds_start": 865,
          "cds_end": null,
          "cds_length": 1437,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883900.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.844C>T",
          "hgvs_p": "p.Arg282Cys",
          "transcript": "ENST00000883869.1",
          "protein_id": "ENSP00000553928.1",
          "transcript_support_level": null,
          "aa_start": 282,
          "aa_end": null,
          "aa_length": 471,
          "cds_start": 844,
          "cds_end": null,
          "cds_length": 1416,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883869.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "NM_001375611.1",
          "protein_id": "NP_001362540.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375611.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "NM_001375613.1",
          "protein_id": "NP_001362542.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375613.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883837.1",
          "protein_id": "ENSP00000553896.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883837.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883838.1",
          "protein_id": "ENSP00000553897.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883838.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883839.1",
          "protein_id": "ENSP00000553898.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883839.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883840.1",
          "protein_id": "ENSP00000553899.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883840.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883841.1",
          "protein_id": "ENSP00000553900.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883841.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883842.1",
          "protein_id": "ENSP00000553901.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883842.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883845.1",
          "protein_id": "ENSP00000553904.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883845.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883847.1",
          "protein_id": "ENSP00000553906.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883847.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883849.1",
          "protein_id": "ENSP00000553908.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883849.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883850.1",
          "protein_id": "ENSP00000553909.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883850.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883852.1",
          "protein_id": "ENSP00000553911.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883852.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883859.1",
          "protein_id": "ENSP00000553918.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883859.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883871.1",
          "protein_id": "ENSP00000553930.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883871.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883872.1",
          "protein_id": "ENSP00000553931.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883872.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883873.1",
          "protein_id": "ENSP00000553932.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883873.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883874.1",
          "protein_id": "ENSP00000553933.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883874.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883876.1",
          "protein_id": "ENSP00000553935.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883876.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883877.1",
          "protein_id": "ENSP00000553936.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883877.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883878.1",
          "protein_id": "ENSP00000553937.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883878.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883882.1",
          "protein_id": "ENSP00000553941.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883882.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883884.1",
          "protein_id": "ENSP00000553943.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883884.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883885.1",
          "protein_id": "ENSP00000553944.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883885.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883886.1",
          "protein_id": "ENSP00000553945.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883886.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883887.1",
          "protein_id": "ENSP00000553946.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883887.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883889.1",
          "protein_id": "ENSP00000553948.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883889.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883890.1",
          "protein_id": "ENSP00000553949.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883890.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883891.1",
          "protein_id": "ENSP00000553950.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883891.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.814C>T",
          "hgvs_p": "p.Arg272Cys",
          "transcript": "ENST00000883892.1",
          "protein_id": "ENSP00000553951.1",
          "transcript_support_level": null,
          "aa_start": 272,
          "aa_end": null,
          "aa_length": 461,
          "cds_start": 814,
          "cds_end": null,
          "cds_length": 1386,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883892.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.808C>T",
          "hgvs_p": "p.Arg270Cys",
          "transcript": "NM_001375610.1",
          "protein_id": "NP_001362539.1",
          "transcript_support_level": null,
          "aa_start": 270,
          "aa_end": null,
          "aa_length": 459,
          "cds_start": 808,
          "cds_end": null,
          "cds_length": 1380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375610.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.808C>T",
          "hgvs_p": "p.Arg270Cys",
          "transcript": "ENST00000883848.1",
          "protein_id": "ENSP00000553907.1",
          "transcript_support_level": null,
          "aa_start": 270,
          "aa_end": null,
          "aa_length": 459,
          "cds_start": 808,
          "cds_end": null,
          "cds_length": 1380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883848.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.808C>T",
          "hgvs_p": "p.Arg270Cys",
          "transcript": "ENST00000883863.1",
          "protein_id": "ENSP00000553922.1",
          "transcript_support_level": null,
          "aa_start": 270,
          "aa_end": null,
          "aa_length": 459,
          "cds_start": 808,
          "cds_end": null,
          "cds_length": 1380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883863.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.808C>T",
          "hgvs_p": "p.Arg270Cys",
          "transcript": "ENST00000883866.1",
          "protein_id": "ENSP00000553925.1",
          "transcript_support_level": null,
          "aa_start": 270,
          "aa_end": null,
          "aa_length": 459,
          "cds_start": 808,
          "cds_end": null,
          "cds_length": 1380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883866.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.808C>T",
          "hgvs_p": "p.Arg270Cys",
          "transcript": "ENST00000883875.1",
          "protein_id": "ENSP00000553934.1",
          "transcript_support_level": null,
          "aa_start": 270,
          "aa_end": null,
          "aa_length": 459,
          "cds_start": 808,
          "cds_end": null,
          "cds_length": 1380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883875.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.808C>T",
          "hgvs_p": "p.Arg270Cys",
          "transcript": "ENST00000883899.1",
          "protein_id": "ENSP00000553958.1",
          "transcript_support_level": null,
          "aa_start": 270,
          "aa_end": null,
          "aa_length": 459,
          "cds_start": 808,
          "cds_end": null,
          "cds_length": 1380,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883899.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.790C>T",
          "hgvs_p": "p.Arg264Cys",
          "transcript": "NM_001375609.1",
          "protein_id": "NP_001362538.1",
          "transcript_support_level": null,
          "aa_start": 264,
          "aa_end": null,
          "aa_length": 453,
          "cds_start": 790,
          "cds_end": null,
          "cds_length": 1362,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375609.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.757C>T",
          "hgvs_p": "p.Arg253Cys",
          "transcript": "NM_001375608.1",
          "protein_id": "NP_001362537.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 442,
          "cds_start": 757,
          "cds_end": null,
          "cds_length": 1329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001375608.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.757C>T",
          "hgvs_p": "p.Arg253Cys",
          "transcript": "ENST00000883846.1",
          "protein_id": "ENSP00000553905.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 442,
          "cds_start": 757,
          "cds_end": null,
          "cds_length": 1329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883846.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.757C>T",
          "hgvs_p": "p.Arg253Cys",
          "transcript": "ENST00000883853.1",
          "protein_id": "ENSP00000553912.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 442,
          "cds_start": 757,
          "cds_end": null,
          "cds_length": 1329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883853.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.757C>T",
          "hgvs_p": "p.Arg253Cys",
          "transcript": "ENST00000883879.1",
          "protein_id": "ENSP00000553938.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 442,
          "cds_start": 757,
          "cds_end": null,
          "cds_length": 1329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883879.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.757C>T",
          "hgvs_p": "p.Arg253Cys",
          "transcript": "ENST00000883883.1",
          "protein_id": "ENSP00000553942.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 442,
          "cds_start": 757,
          "cds_end": null,
          "cds_length": 1329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883883.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.757C>T",
          "hgvs_p": "p.Arg253Cys",
          "transcript": "ENST00000883896.1",
          "protein_id": "ENSP00000553955.1",
          "transcript_support_level": null,
          "aa_start": 253,
          "aa_end": null,
          "aa_length": 442,
          "cds_start": 757,
          "cds_end": null,
          "cds_length": 1329,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883896.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.751C>T",
          "hgvs_p": "p.Arg251Cys",
          "transcript": "ENST00000883903.1",
          "protein_id": "ENSP00000553962.1",
          "transcript_support_level": null,
          "aa_start": 251,
          "aa_end": null,
          "aa_length": 440,
          "cds_start": 751,
          "cds_end": null,
          "cds_length": 1323,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883903.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.679C>T",
          "hgvs_p": "p.Arg227Cys",
          "transcript": "ENST00000883867.1",
          "protein_id": "ENSP00000553926.1",
          "transcript_support_level": null,
          "aa_start": 227,
          "aa_end": null,
          "aa_length": 416,
          "cds_start": 679,
          "cds_end": null,
          "cds_length": 1251,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883867.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.676C>T",
          "hgvs_p": "p.Arg226Cys",
          "transcript": "ENST00000883862.1",
          "protein_id": "ENSP00000553921.1",
          "transcript_support_level": null,
          "aa_start": 226,
          "aa_end": null,
          "aa_length": 415,
          "cds_start": 676,
          "cds_end": null,
          "cds_length": 1248,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883862.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.676C>T",
          "hgvs_p": "p.Arg226Cys",
          "transcript": "ENST00000883904.1",
          "protein_id": "ENSP00000553963.1",
          "transcript_support_level": null,
          "aa_start": 226,
          "aa_end": null,
          "aa_length": 415,
          "cds_start": 676,
          "cds_end": null,
          "cds_length": 1248,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883904.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.622C>T",
          "hgvs_p": "p.Arg208Cys",
          "transcript": "ENST00000883855.1",
          "protein_id": "ENSP00000553914.1",
          "transcript_support_level": null,
          "aa_start": 208,
          "aa_end": null,
          "aa_length": 397,
          "cds_start": 622,
          "cds_end": null,
          "cds_length": 1194,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883855.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.622C>T",
          "hgvs_p": "p.Arg208Cys",
          "transcript": "ENST00000883864.1",
          "protein_id": "ENSP00000553923.1",
          "transcript_support_level": null,
          "aa_start": 208,
          "aa_end": null,
          "aa_length": 397,
          "cds_start": 622,
          "cds_end": null,
          "cds_length": 1194,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000883864.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.136C>T",
          "hgvs_p": "p.Arg46Cys",
          "transcript": "ENST00000402125.2",
          "protein_id": "ENSP00000384225.2",
          "transcript_support_level": 2,
          "aa_start": 46,
          "aa_end": null,
          "aa_length": 235,
          "cds_start": 136,
          "cds_end": null,
          "cds_length": 708,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000402125.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.1099C>T",
          "hgvs_p": "p.Arg367Cys",
          "transcript": "XM_024453003.2",
          "protein_id": "XP_024308771.1",
          "transcript_support_level": null,
          "aa_start": 367,
          "aa_end": null,
          "aa_length": 556,
          "cds_start": 1099,
          "cds_end": null,
          "cds_length": 1671,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024453003.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.1003C>T",
          "hgvs_p": "p.Arg335Cys",
          "transcript": "XM_047445117.1",
          "protein_id": "XP_047301073.1",
          "transcript_support_level": null,
          "aa_start": 335,
          "aa_end": null,
          "aa_length": 524,
          "cds_start": 1003,
          "cds_end": null,
          "cds_length": 1575,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445117.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.499C>T",
          "hgvs_p": "p.Arg167Cys",
          "transcript": "XM_024453002.2",
          "protein_id": "XP_024308770.2",
          "transcript_support_level": null,
          "aa_start": 167,
          "aa_end": null,
          "aa_length": 356,
          "cds_start": 499,
          "cds_end": null,
          "cds_length": 1071,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024453002.2"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 8,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.499C>T",
          "hgvs_p": "p.Arg167Cys",
          "transcript": "XM_047445118.1",
          "protein_id": "XP_047301074.1",
          "transcript_support_level": null,
          "aa_start": 167,
          "aa_end": null,
          "aa_length": 356,
          "cds_start": 499,
          "cds_end": null,
          "cds_length": 1071,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047445118.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 9,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "PROC",
          "gene_hgnc_id": 9451,
          "hgvs_c": "c.247C>T",
          "hgvs_p": "p.Arg83Cys",
          "transcript": "XM_017004505.2",
          "protein_id": "XP_016859994.2",
          "transcript_support_level": null,
          "aa_start": 83,
          "aa_end": null,
          "aa_length": 272,
          "cds_start": 247,
          "cds_end": null,
          "cds_length": 819,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017004505.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "LOC105373608",
          "gene_hgnc_id": null,
          "hgvs_c": "n.1041-110G>A",
          "hgvs_p": null,
          "transcript": "XR_007087228.1",
          "protein_id": null,
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "XR_007087228.1"
        }
      ],
      "gene_symbol": "PROC",
      "gene_hgnc_id": 9451,
      "dbsnp": "rs121918154",
      "frequency_reference_population": 0.000021066877,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 34,
      "gnomad_exomes_af": 0.0000191561,
      "gnomad_genomes_af": 0.0000394135,
      "gnomad_exomes_ac": 28,
      "gnomad_genomes_ac": 6,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.8679957389831543,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.616,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.3907,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.06,
      "bayesdelnoaf_prediction": "Uncertain_significance",
      "phylop100way_score": -0.698,
      "phylop100way_prediction": "Benign",
      "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": 13,
      "acmg_classification": "Pathogenic",
      "acmg_criteria": "PM1,PP2,PP3_Moderate,PP5_Very_Strong",
      "acmg_by_gene": [
        {
          "score": 13,
          "benign_score": 0,
          "pathogenic_score": 13,
          "criteria": [
            "PM1",
            "PP2",
            "PP3_Moderate",
            "PP5_Very_Strong"
          ],
          "verdict": "Pathogenic",
          "transcript": "NM_001375607.1",
          "gene_symbol": "PROC",
          "hgnc_id": 9451,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD,AR,SD",
          "hgvs_c": "c.1000C>T",
          "hgvs_p": "p.Arg334Cys"
        },
        {
          "score": 12,
          "benign_score": 0,
          "pathogenic_score": 12,
          "criteria": [
            "PM2",
            "PP3_Moderate",
            "PP5_Very_Strong"
          ],
          "verdict": "Pathogenic",
          "transcript": "XR_007087228.1",
          "gene_symbol": "LOC105373608",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.1041-110G>A",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": " autosomal dominant,Thromboembolism,Thrombophilia due to protein C deficiency,not provided",
      "clinvar_classification": "Pathogenic/Likely pathogenic",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "P:1 LP:3",
      "phenotype_combined": "Thrombophilia due to protein C deficiency, autosomal dominant|Thromboembolism|not provided",
      "pathogenicity_classification_combined": "Pathogenic/Likely pathogenic",
      "custom_annotations": null
    }
  ],
  "message": null
}