Skip to content

Commit

Permalink
Merge pull request #62 from cBioPortal/redo-mutations-fix
Browse files Browse the repository at this point in the history
Removing the filtering of amino acid changes with '+' as not relevant anymore
  • Loading branch information
rmadupuri authored Oct 9, 2024
2 parents 5e0f5bc + 23a31ff commit 2efc058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/importer/validateData.py
Original file line number Diff line number Diff line change
Expand Up @@ -2223,9 +2223,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 2efc058

Please sign in to comment.