R/workflow-step-set.R
workflowStepSet-class.Rd
This class is the base for many sets workflows related classes. This class is virtual, and therefore never created directly.
# S4 method for class 'workflowStepSet'
setObjects(obj)
# S4 method for class 'workflowStepSet'
sets(obj)
# S4 method for class 'workflowStepSet'
show(object)
The most important purpose of this class is to hold data that is specific for a set. These set objects are
typically objects with classes from a regular non-sets workflow (e.g. components
,
compounds
), and are used by the sets workflow object to e.g. form a consensus. Since the set
objects may contain additional data, such as algorithm specific slots, it may in some cases be of interest to access
them directly with the setObjects
method (described below).
setObjects(workflowStepSet)
: Accessor for the setObjects
slot.
sets(workflowStepSet)
: Returns the names for each set in this object.
show(workflowStepSet)
: Shows summary information for this object.
setObjects
A list
with the set objects (see the Details
section). The list
is named
with the set names.