allpy
view allpy/util.py @ 1081:43b5207a70d7
Bugfixed the previous commit (decency verification), (see #98)
* Removed the decency verification function itself, it does not seem to be
necessary YET
* Moved the check on alignment quality within processors.FixOrdering, which is
the one that actually fails and is hard to debug if sequences have the same
identification.
* Added a specific testcase for this situation.
author | Daniil Alexeyevsky <dendik@kodomo.fbb.msu.ru> |
---|---|
date | Wed, 30 May 2012 13:35:04 +0400 |
parents | 0e1a20b6abc0 |
children | a3e439d09322 |
line source
1 """Miscellanous utilities.
2 """
7 """The oppozite of zip() builtin."""
15 """Open file. Return stdin/stdout for filename '-'."""
26 """Remove each of substrings from string."""
32 """Clone of dict that user may add attributes to."""
33 pass
36 """Clone of list that user may add attributes to."""
37 pass
40 """Clone of str that user may add attributes to."""
41 pass
44 """Warn about function being deprecated."""
48 """Lazy module import to help breaking bad import loops."""
58 )
62 # vim: set et ts=4 sts=4 sw=4: