| Trees | Indices | Help |
|
|---|
|
|
This module provides code to work with the KEGG Enzyme database. Functions: parse - Returns an iterator giving Record objects. Classes: Record -- Holds the information from a KEGG Enzyme record.
|
|||
|
Record Holds info from a KEGG Enzyme record. |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
rxn_wrap =
|
|||
name_wrap =
|
|||
|
|||
Parse a KEGG Enzyme file, returning Record objects.
This is an iterator function, typically used in a for loop. For
example, using one of the example KEGG files in the Biopython
test suite,
>>> handle = open("KEGG/enzyme.sample")
>>> for record in parse(handle):
... print record.entry, record.name[0]
...
1.1.1.1 Alcohol dehydrogenase
1.1.1.62 Estradiol 17beta-dehydrogenase
1.1.1.68 Transferred to EC 1.7.99.5
1.6.5.3 NADH dehydrogenase (ubiquinone)
1.14.13.28 3,9-Dihydroxypterocarpan 6a-monooxygenase
2.4.1.68 Glycoprotein 6-alpha-L-fucosyltransferase
3.1.1.6 Acetylesterase
2.7.2.1 Acetate kinase
|
|
|||
rxn_wrap
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Tue Feb 5 17:59:45 2013 | http://epydoc.sourceforge.net |