Metadata-Version: 1.0
Name: pyphylip
Version: 0.0.1
Summary: a python module to read and write phylip alignment files
Home-page: http://pypi.python.org/pypi/pyphylip
Author: Alex Griffing
Author-email: UNKNOWN
License: MIT
Description: 
        About pyphylip
        ==============
        
        Read and write files in the phylip sequence format_.
        
        
        Installation
        ============
        
        Because pyphylip has been packaged for pypi,
        it can be installed using::
        
            $ pip install pyphylip
        
        
        Usage
        =====
        
        Decode a phylip sequence file given a source of lines in the file::
        
            >>> with open('infile.phy') as f:
            ...     headers, sequences = pyphylip.decode(f)
        
        Encode some headers and corresponding sequences as a phylip sequence file::
        
            >>> with open('outfile.phy', 'w') as f:
            ...     f.write(pyphylip.encode(headers, sequences) + '\n')
        
        
        .. _format: http://evolution.genetics.washington.edu/phylip/doc/sequence.html
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
