Metadata-Version: 1.0
Name: nebgb
Version: 0.0.3
Summary: Genbank file parser.
Home-page: http://github.com/davisp/nebgb
Author: Paul Joseph Davis
Author-email: davisp@neb.com
License: MIT
Description: 
        Usage:
        
        >>> import nebgb
        >>> rec = nebgb.parse_file("./test/data/simple-1.gb").next()
        >>> rec.locus["name"]
        'NP_034640'
        >>> rec.locus["length"]
        182
        >>> rec.keywords["source"]["name"]
        'house mouse'
        >>> rec.features[1]["properties"]["product"]
        'interferon beta, fibroblast'
        >>> for seq in rec.seqiter:
        ...    print seq
        mnnrwilhaafllcfsttalsinykqlqlqertnirkcqelleqlngkinltyradfkip
        memtekmqksytafaiqemlqnvflvfrnnfsstgwnetivvrlldelhqqtvflktvle
        ekqeerltwemsstalhlksyywrvqrylklmkynsyawmvvraeifrnfliirrltrnf
        qn
        
        
        Alternatively you can use `nebgb.parse()` to parse a string or iterator that
        yields lines of a Genbank file.
        
Keywords: bioinformatics genbank parser
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
