Simple processing step class
ProcessingStep-class.Rd
The ProcessingStep
class is a simple object to encapsule all
relevant information of a data analysis processing step, i.e. the
function name and all arguments.
Details
Objects of this class are mainly used to record all possible
processing steps of an OnDiskMSnExp
object for
later lazy execution.
Objects from the Class
Objects can be created by calls of the form
new("ProcessingStep",...)
or using the ProcessingStep
constructor function.
Slots
FUN
:The function name to be executed as a character string.
ARGS
:A named
list
with all arguments to the function.
Methods and functions
- executeProcessingStep(object, ...)
Execute the processing step
object
. Internally this callsdo.call
passing all arguments defined in theProcessingStep
object
along with potential additional arguments in...
to the functionobject@FUN
.
Extends
Class "Versioned"
, directly.