From d1d2f30d56ef598ee51676f2a317f03802cd7a09 Mon Sep 17 00:00:00 2001 From: Dennis Hendriksen Date: Mon, 3 Oct 2022 09:57:07 +0200 Subject: [PATCH] fix:metadata cDNA_position/CDS_position/Protein_position value type should be STRING (only INTEGER when VEP --total_length is not used) chore:bump version 1.2.6 to 1.2.7 --- package.json | 2 +- src/metadata/field_metadata.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 264c861..5849c05 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/metadata/field_metadata.json b/src/metadata/field_metadata.json index 0d44439..e2b862e 100644 --- a/src/metadata/field_metadata.json +++ b/src/metadata/field_metadata.json @@ -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", @@ -235,7 +235,7 @@ "description": "Position within the protein.", "numberType": "NUMBER", "numberCount": 1, - "type": "INTEGER" + "type": "STRING" }, "PUBMED": { "label": "PubMed",