skbio.io.registry.IORegistry.write#
- IORegistry.write(obj, format, into, **kwargs)[source]#
Write an object as certain format into a file.
- Parameters:
- objobject
The object to write as
format.- formatstr
The format to write
objas.- intoopenable (filepath, URL, filehandle, etc.)
What to write
objto. Something that is understood byskbio.io.open.- kwargsdict, optional
Keyword arguments will be passed to their respective handlers (
skbio.io.openand the writer forformat).
- Returns:
- openable (filepath, URL, filehandle, etc.)
Will pass back the user argument for
intoas a convenience.
- Raises:
- UnrecognizedFormatError
Raised when a writer for writing
objasformatcould not be found.