Skip to content

Commit

Permalink
Merge pull request #10487 from sowmiyaa-kumar/validator-fixes
Browse files Browse the repository at this point in the history
Removing the filtering of amino acid changes with '+' as not relevant…
  • Loading branch information
rmadupuri committed Dec 12, 2023
2 parents db2a975 + ac0ebbb commit c6d90e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scripts/importer/validateData.py
Original file line number Diff line number Diff line change
Expand Up @@ -2221,9 +2221,9 @@ def checkAminoAcidChange(self, value):
return False
# lines in this format are single mutations, so the haplotype
# syntax supported by HGVS strings is not applicable
if ';' in value or '+' in value:
if ';' in value:
# return with an error message
self.extra = ("Unexpected ';' or '+' in amino acid change, "
self.extra = ("Unexpected ';' in amino acid change, "
"multi-variant allele notation is not supported")
self.extra_exists = True
return False
Expand Down

0 comments on commit c6d90e6

Please sign in to comment.