This implements a dictionary-like interface to Biopython file
formats.
Methods: find_builder Find a builder that converts from a format to
an object. find_writer Find a writer that can write an object to a
format.
|
|
__init__(self,
name,
load_path=None,
builder_path='Bio.builders',
writer_path='Bio.writers')
Create a new registry. |
source code
|
|
|
|
|
|
|
| _build_parent_path(self,
format,
visited=None) |
source code
|
|
|
|
| _build_child_path(self,
format,
visited=None) |
source code
|
|
|
|
|
|
|
| find_writer(self,
from_io,
to_format,
outfile) |
source code
|
|
|
Inherited from Registry.Registry:
__getitem__,
__repr__,
__str__,
get,
items,
keys,
register,
values
|