Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the regex pattern to capture non-word, non-digit ...
We need to be able to capture expressions like ensembl.gene and uniprot.Swiss-Prot which were not captured by the default pattern matching mechanism. <Per regex101> Named Capture Group scope (?P<scope>[\w\W]+) Match a single character present in the list below [\w\W] + matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy) \w matches any word character (equivalent to [a-zA-Z0-9_]) \W matches any non-word character (equivalent to [^a-zA-Z0-9_])
- Loading branch information