Skip to content
Snippets Groups Projects
Commit eee9208e authored by Laros's avatar Laros Committed by Vermaat
Browse files

Added a dash ('-') as an allowed character in the gene name.

parent 76ccaf40
No related branches found
No related tags found
No related merge requests found
......@@ -78,8 +78,11 @@ class Grammar():
# BNF: ProtIso -> `_i' Number
ProtIso = Suppress('_i') + Number('ProtIso')
# BNF: GeneName -> ([a-Z] | [0-9] | `-')+
GeneName = Word(alphanums + '-', min=1)
# BNF: GeneSymbol -> `(' Name (TransVar | ProtIso)? `)'
GeneSymbol = Suppress('(') + Group(Name('GeneSymbol') + \
GeneSymbol = Suppress('(') + Group(GeneName('GeneSymbol') + \
Optional(TransVar ^ ProtIso))('Gene') + Suppress(')')
# BNF: GI -> (`GI' | `GI:')? Number
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment