Metadata-Version: 2.1
Name: pyabif
Version: 0.1.0
Summary: A Python ABIF reader
Home-page: https://github.com/genadijrazdorov/pyabif
Author: Genadij Razdorov
Author-email: genadijrazdorov@gmail.com
License: MIT
Project-URL: Bug Reports, https://github.com/genadijrazdorov/pyabif/issues
Project-URL: Source, https://github.com/genadijrazdorov/pyabif/
Description: pyABIF
        ======
        
        A Python ABIF (Applied Biosystems Genetic Analysis Data File Format) reader.
        
        * no external dependencies
        * minimal pythonification
        
        ABIF is a directory of items, where every item is identified by unique *name*
        and *number*.
        
        pyABIF is a class with attributes corresponding to name/number items::
        
            >>> from pyabif import pyABIF
        
            >>> abif = pyABIF('abif.fsa')
            >>> abif.User1
            joe
        
            >>> abif.DATA1
        
        
        pyabif can be used as a console script:
        
        .. code-block:: console
        
            $ pyabif abif.fsa
            Converted to txt
        
            $ ls abif
            abif.fsa
            abif.fsa.csv.zip
        
Keywords: abif reader
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5, <4
Description-Content-Type: text/x-rst
Provides-Extra: test
