From 9a803a6df0e6d59672acc070aeefc9f1f1e5ea91 Mon Sep 17 00:00:00 2001 From: TheMadBug Date: Thu, 11 Jul 2024 10:42:58 +1000 Subject: [PATCH] ClinVar VCF correctly map "no assertion criteria provided" to 0 stars --- annotation/clinvar_xml_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotation/clinvar_xml_parser.py b/annotation/clinvar_xml_parser.py index 2ea7d44d1..2ac86b79c 100644 --- a/annotation/clinvar_xml_parser.py +++ b/annotation/clinvar_xml_parser.py @@ -42,7 +42,7 @@ CLINVAR_REVIEW_STATUS_TO_STARS = { - "no assertion criteria provided": 1, + "no assertion criteria provided": 0, "criteria provided, single submitter": 1, #"xx": 2, # not sure individual record can get 2 "reviewed by expert panel": 3,