Metadata-Version: 1.1
Name: dataset-creator
Version: 0.0.1
Summary: Takes SeqRecordExpanded objects and creates datasets for phylogenetic software
Home-page: https://github.com/carlosp420/dataset-creator
Author: Carlos Peña
Author-email: mycalesis@gmail.com
License: BSD
Description: =========================================
        Dataset creator for phylogenetic software
        =========================================
        
        .. list-table::
            :stub-columns: 1
        
            * - tests
              - | |travis| |requires| |coveralls|
                | |quantified-code|
            * - package
              - |version| |wheel| |supported-versions| |supported-implementations|
        
        .. |travis| image:: https://travis-ci.org/carlosp420/dataset-creator.svg?branch=master
            :alt: Travis-CI Build Status
            :target: https://travis-ci.org/carlosp420/dataset-creator
        
        .. |requires| image:: https://requires.io/github/carlosp420/dataset-creator/requirements.svg?branch=master
            :alt: Requirements Status
            :target: https://requires.io/github/carlosp420/dataset-creator/requirements/?branch=master
        
        .. |coveralls| image:: https://coveralls.io/repos/carlosp420/dataset-creator/badge.svg?branch=master&service=github
            :alt: Coverage Status
            :target: https://coveralls.io/r/carlosp420/dataset-creator
        
        .. |version| image:: https://img.shields.io/pypi/v/dataset_creator.svg?style=flat
            :alt: PyPI Package latest release
            :target: https://pypi.python.org/pypi/dataset_creator
        
        .. |wheel| image:: https://img.shields.io/pypi/wheel/dataset_creator.svg?style=flat
            :alt: PyPI Wheel
            :target: https://pypi.python.org/pypi/dataset_creator
        
        .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/dataset_creator.svg?style=flat
            :alt: Supported versions
            :target: https://pypi.python.org/pypi/dataset_creator
        
        .. |supported-implementations| image:: https://img.shields.io/pypi/implementation/dataset_creator.svg?style=flat
            :alt: Supported implementations
            :target: https://pypi.python.org/pypi/dataset_creator
        
        .. |quantified-code| image:: https://www.quantifiedcode.com/api/v1/project/f059ab475f2547758722b80ea528c457/badge.svg
          :target: https://www.quantifiedcode.com/app/project/f059ab475f2547758722b80ea528c457
          :alt: Code issues
        
        Takes SeqRecordExpanded objects and creates datasets for phylogenetic software
        
        * Free software: BSD license
        
        Installation
        ============
        
        ::
        
            pip install dataset_creator
        
        Usage
        =====
        .. code-block:: python
        
            >>> from seqrecord_expanded import SeqRecord
            >>> from dataset_creator import Dataset
            >>>
            >>> seq_record1 = SeqRecord('ACTACCTA')
            >>> seq_record2 = SeqRecord('ACTACCTA')
            >>>
            >>> seq_records = [
            ...    seq_record1, seq_record2,
            ... ]
            >>> dataset = Dataset(seq_records, format='NEXUS', partitioning='by gene')
            >>> print(dataset.str)
            """#NEXUS
            blah blah
            """
        
        
        
        Development
        ===========
        
        To run the all tests run::
        
            tox
        
        
        Changelog
        =========
        
        0.0.0 (2015-06-10)
        ------------------
        
        * First release on PyPI.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
