Skip to content

Commit

Permalink
fix:metadata cDNA_position/CDS_position/Protein_position value type s…
Browse files Browse the repository at this point in the history
…hould be STRING (only INTEGER when VEP --total_length is not used)

chore:bump version 1.2.6 to 1.2.7
  • Loading branch information
dennishendriksen committed Oct 3, 2022
1 parent a6a3269 commit d1d2f30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@molgenis/vip-report-vcf",
"version": "1.2.6",
"version": "1.2.7",
"description": "TypeScript VCF library with support for both reading and writing",
"scripts": {
"build": "tsc --build",
Expand Down
6 changes: 3 additions & 3 deletions src/metadata/field_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"description": "Position within the cDNA.",
"numberType": "NUMBER",
"numberCount": 1,
"type": "INTEGER"
"type": "STRING"
},
"CDS_position": {
"label": "CDS pos",
"description": "Position within the coding sequence.",
"numberType": "NUMBER",
"numberCount": 1,
"type": "INTEGER"
"type": "STRING"
},
"CLIN_SIG": {
"label": "ClinVar",
Expand Down Expand Up @@ -235,7 +235,7 @@
"description": "Position within the protein.",
"numberType": "NUMBER",
"numberCount": 1,
"type": "INTEGER"
"type": "STRING"
},
"PUBMED": {
"label": "PubMed",
Expand Down

0 comments on commit d1d2f30

Please sign in to comment.