Simple processing step class
ProcessingStep-class.RdThe 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
listwith all arguments to the function.
Methods and functions
- executeProcessingStep(object, ...)
Execute the processing step
object. Internally this callsdo.callpassing all arguments defined in theProcessingStepobjectalong with potential additional arguments in...to the functionobject@FUN.
Extends
Class "Versioned", directly.