allpy
view allpy/fileio.py @ 500:9665a6acdd53
allpy/structure: fix bugs
* no not use yields
* monomer has not .sequence and .column (!) attributes
* set can not be treated with +=
* continuous_blocks() should return the last batch
* continuous_blocks() has now min_width=1 parameter
* set cannot be sorted with .sort()
author | boris (netbook) <bnagaev@gmail.com> |
---|---|
date | Tue, 22 Feb 2011 19:18:03 +0300 |
parents | 0bd118c2d72b |
children | 5dfb9b9761d5 |
line source
7 """ Base class providing alignment/sequence import and export
9 Data:
10 * file - file object
11 """
17 """ Saves given string to file
19 Splits long lines to substrings of length=long_line
20 To prevent this, set long_line=None
21 """
22 pass
25 """Parse fasta file, remove spaces and newlines from sequence bodies.
27 Return a list of tuples (name, description, sequence_body).
28 """
29 pass
32 """ return tuple (name, description, string) for sequence with name name """
38 """ Fasta import and export
40 Additional data:
41 * long_line - max length of file line while export
42 Splits long lines to substrings of length=long_line
43 To prevent this, set long_line=None
44 """
78 """ Msf import and export """