Skip to content

Commit

Permalink
Bump version to 1.7.0 and vip-utils to 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bartcharbon committed Jan 12, 2024
1 parent e3a7943 commit 55fe8e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/__tests__/MetadataParser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ test("parse format metadata", () => {

test("parse format metadata from json", () => {
const token =
'##FORMAT=<ID=VI,Number=.,Type=String,Description="An enumeration of possible inheritance modes based on the pedigree of the sample. Potential values: AD, AD_IP, AR, AR_C, XLR, XLD">';
'##FORMAT=<ID=VI,Number=.,Type=String,Description="An enumeration of possible inheritance modes based on the pedigree of the sample. Potential values: AD, AD_IP, AR, AR_C, XLR, XLD, YL, MT">';
expect(parseFormatMetadata(token)).toStrictEqual({
id: "VI",
number: { type: "OTHER", count: undefined, separator: "," },
type: "CATEGORICAL",
categories: ["AD", "AD_IP", "AR", "AR_C", "XLD", "XLR"],
categories: ["AD", "AD_IP", "AR", "AR_C", "XLD", "XLR", "YL", "MT"],
label: "Inheritance",
description:
"An enumeration of possible inheritance modes based on the pedigree of the sample. Potential values: AD, AD_IP, AR, AR_C, XLR, XLD",
"An enumeration of possible inheritance modes based on the pedigree of the sample. Potential values: AD, AD_IP, AR, AR_C, XLR, XLD, YL, MT",
});
});

Expand Down

0 comments on commit 55fe8e6

Please sign in to comment.