Skip to content

Commit 217a534

Browse files
authored
fixed bug introduce by change to the VCV header in clinvar on 03.Jun.24 (#81)
1 parent 289d462 commit 217a534

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ The chrome extension is used by the ClinGen curation workflow (link) ...
77

88
## Release Notes
99

10+
### v1.14
11+
* Fixed very minor bug introduced by a ClinVar UI html change to the VCV Germline DIV element. This minor change was introduced by ClinVar on 6/3/2024 and impacted the vcv_revstat and vcv_interp matching logic in content.js.
12+
1013
### v1.13 changes
1114
* Added new combo flagging candidate reason 'Older and Outlier claim with insufficient supporting evidence'.
1215
* Added requirement check that an action is selected.

scvc/content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ chrome.runtime.onMessage.addListener((msg, sender, response) => {
5252

5353
var variantBox = document.evaluate("//div[@id='new-variant-details']//dl", document, null, XPathResult.ANY_TYPE, null );
5454
var variantBoxHTML = variantBox.iterateNext().innerHTML;
55-
var germlineBox = document.evaluate("//div[@class='germline-section']/div[3]", document, null, XPathResult.ANY_TYPE, null );
55+
var germlineBox = document.evaluate("//div[@class='germline-section']/div[2]", document, null, XPathResult.ANY_TYPE, null );
5656
var germlineBoxHTML = germlineBox.iterateNext().innerHTML;
5757

5858
domInfo.name = document.querySelectorAll('#variant-details-table div div dl dd p')[0].innerText;

scvc/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ClinVar Curator",
3-
"version": "1.13",
3+
"version": "1.14",
44
"description": "Capture SCV annotations from ClinVar variant screen in a google sheet.",
55
"manifest_version": 2,
66
"key" : "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwC5g4vkDlMPFTsByPnG9WI9lY+IPWddES8SK3cxCuBQE5qSdgEgtDhrRLhXSvcIdUUCDwD7JzEPdQ0IhC3APwsKQJPQlDRweZvyFaTJOm6r5Blp3HvLphDuKZQwUoEzMuXK7IAby05kXPZTMSHas+0m00hHoR8ls//tqKoYt7N/lVj6Mry6nSpr5wFU17HPO8MksyxFlNDhu5OYcgOdTNjUiWthjZ8Xxd0ajdaR1QRoqVCQduUTSAzeptQ1+zYZtEX7+HF8jfZqc5BQDa5GoCuDyTvFvQAHl3Phz3zMWpvcGWR3jCMHD5zthiO8NKX+h2fXbGGrYhuwtQmHLWmTAsQIDAQAB",

0 commit comments

Comments
 (0)