Skip to content

Commit

Permalink
fix:clinVar metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
dennishendriksen committed Jun 23, 2022
1 parent f07b6aa commit b1c364e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/VepMetadataParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ function parseVepInfoMetadata(infoMetadata: InfoMetadata, token: string): InfoMe
case "clinVar":
label = "ClinVar ID";
description = "ClinVar Variation ID";
numberType = "NUMBER";
numberCount = 1;
numberType = "OTHER";
type = "INTEGER";
break;
case "clinVar_CLNSIG":
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/VepMetadataParser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ test("create vep metadata", () => {
},
{
id: "clinVar",
number: { type: "NUMBER", count: 1 },
number: { type: "OTHER" },
type: "INTEGER",
parent: {
id: "CSQ",
Expand Down

0 comments on commit b1c364e

Please sign in to comment.