skbio.io.registry.IORegistry#
- class skbio.io.registry.IORegistry[source]#
Create a registry of formats and implementations which map to classes.
Methods
Add a format to the registry.
Create new file formats.
Locate the reader for a format and class.
Locate the sniffer for a format.
Locate the writer for a format and class.
Return a list of available read formats for a given cls type.
Return a list of available write formats for a given cls type.
Read a file as certain format into an object.
Remove a format from the IORegistry.
Detect the format of a given file and suggest kwargs for reading.
Write an object as certain format into a file.
Special methods (inherited)
__eq__Return self==value.
__ge__Return self>=value.
__getstate__Helper for pickle.
__gt__Return self>value.
__hash__Return hash(self).
__le__Return self<=value.
__lt__Return self<value.
__ne__Return self!=value.
__str__Return str(self).
Details