Skip to content

Commit

Permalink
Fixing problem with ACMD classifiction (#359)
Browse files Browse the repository at this point in the history
Closes: #359
  • Loading branch information
holtgrewe committed Mar 4, 2022
1 parent fbfc86c commit b9b02a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions HISTORY.rst
Expand Up @@ -45,6 +45,7 @@ End-User Summary
- Adding mitochondrial inheritance to case phenotype annotation (#325)
- Fix issue with variant annotation export (#328)
- Allowing direct update of variant annotations and ACMG ratings on case annotations details (#344)
- Fixing problem with ACMD classifiction where VUS-3 was given but should be LB-2 (#359)

Full Change List
================
Expand Down Expand Up @@ -99,6 +100,7 @@ Full Change List
- Adding deep linking into case details tab (#344)
- Allowing direct update of variant annotations and ACMG ratings on case annotations details (#344)
- Removing `display_hgmd_public_membership` (#363)
- Fixing problem with ACMD classifiction where VUS-3 was given but should be LB-2 (#359)

-------
v0.23.9
Expand Down
2 changes: 1 addition & 1 deletion varfish/static/js/flags_comments.js
Expand Up @@ -475,7 +475,7 @@ function updateAcmgRating(theForm) {
(pm == 2 && pp >= 2) ||
(pm == 1 && pp >= 4)
)
const isLikelyBenign = ((bs >= 2) && (bp >= 1) || ((bs >= 1) && (bp >= 2)));
const isLikelyBenign = (((bs >= 1) && (bp >= 1)) || (bp >= 2));
const isBenign = (bas > 0) || (bs >= 2);

const isConflicting = (isPathogenic || isLikelyPathogenic) && (isBenign || isLikelyBenign);
Expand Down

0 comments on commit b9b02a6

Please sign in to comment.