Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. Traceback (most recent call last):
  2. File "./hamming_sanity", line 9, in <module>
  3. s = checker.parse_string("s_%d" % i, min_length=N, max_length=N, valid_chars="ACTG")
  4. File "/usr/local/lib/python2.6/dist-packages/sanity.py", line 252, in parse_string
  5. if not _re_match("^[%s]{%d,%d}$" % (valid_chars, min_length, max_length), line):
  6. File "/usr/local/lib/python2.6/dist-packages/sanity.py", line 56, in _re_match
  7. return re.match(pattern, text)
  8. File "/usr/lib/python2.6/re.py", line 137, in match
  9. return _compile(pattern, flags).match(string)
  10. File "/usr/lib/python2.6/re.py", line 243, in _compile
  11. p = sre_compile.compile(pattern, flags)
  12. File "/usr/lib/python2.6/sre_compile.py", line 529, in compile
  13. groupindex, indexgroup
  14. RuntimeError: invalid SRE code
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement