allpy
view allpy/util.py @ 864:cfcbd13f6761
Added fileio.BioPythonFile as a method to parse unknown file formats [closes #106]
Biopython can parse more formats than EMBOSS, but surprisingly, it cannot do msf.
Also, there is no way to see in the current tests, where a test used biopython
or emboss for a particular IO task. This will likely be fixed with the 1.5.0 release
with the new fileio system. For now, Biopython has precedence over EMBOSS, so
an IO test of msf tests EMBOSS, and IO test of Stockholm tests Biopython.
author | Daniil Alexeyevsky <dendik@kodomo.fbb.msu.ru> |
---|---|
date | Mon, 25 Jul 2011 14:40:41 +0400 |
parents | 4fa7b10ce252 |
children | 7b2a37ff1662 |
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: