Metadata-Version: 2.1
Name: genbank
Version: 0.12
Summary: Code to work with Genbank files
Home-page: https://github.com/deprekate/genbank
Author: Katelyn McNair
Author-email: deprekate@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >3.5.2
Description-Content-Type: text/markdown
License-File: LICENSE

# genbank
Python code to work with Genbank files

This repo contains several classes to help work with Genbank files

The flow goes:
```
File > Read > Locus > Feature
```

To use:
```
from genbank.file import File

f = File('infile.gbk')
for name,locus in f.items():
	print("-----Locus:",name, "-----")
	for feature in locus:
		print(feature)
```
