allpy
view allpy/fileio.py @ 460:563a5b6eb954
blocks3d/wt: move all messages and other texts to xml file
this xml file can be usefull for localization
Other changes:
 * render corformity file widgets, but then hide them
   (to avoid possible memory leak)
 * fix mistake in confirmity file label buddy
| author | boris <bnagaev@gmail.com> | 
|---|---|
| date | Thu, 17 Feb 2011 00:09:01 +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 """
