skbio.workflow.Workflow(state, short_circuit=True, debug=False, options=None, **kwargs)[source]¶Arbitrary workflow support structure
Methods that are considered to be directly part of the workflow must
be decorated with method. The workflow methods offer a mechanism to
logically group functionality together, and are free to make subsequent
calls to other methods.
All methods of a subclass of Workflow (those with and without the
method decoration) can take advantage of the requires decorator
to specify any option or state requirements for the decorated function.
| Parameters: | state : object
short_circuit : bool
debug : bool
options : dict
kwargs : dict
|
|---|
Methods
initialize_state(item) |
Initialize state |