From 23a31ff9c02e4063102ca6eeadf27d0e93dafc7a Mon Sep 17 00:00:00 2001 From: Matthijs Pon Date: Wed, 9 Oct 2024 16:22:56 +0200 Subject: [PATCH] Removing the filtering of amino acid changes with '+' as not relevant anymore --- scripts/importer/validateData.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/importer/validateData.py b/scripts/importer/validateData.py index 6dc59606..446a5a70 100755 --- a/scripts/importer/validateData.py +++ b/scripts/importer/validateData.py @@ -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