| execute-methods {goCluster} | R Documentation |
After a goCluster-object has been configured its main function
can be executed using this call.
clusterModule-class. But it is available for any
goCluster-object since all classes made available by the
goCluster-package extend the basic
clusterModule-class.
Gunnar Wrobel, work@gunnarwrobel.de, http://www.gunnarwrobel.de.
## Load small a test dataset
data(benomylsetupsmall)
## Create an empty goCluster object
test <- new("goCluster")
## Assign the configuration to the object and directly execute it
execute(test) <- benomylsetupsmall
## You may also split setup and execution of an object
## Create an empty goCluster object
test <- new("goCluster")
setup(test) <- benomylsetupsmall
executed <- execute(test)
## You may also execute parts of an object
test <- new("goCluster")
setup(test) <- benomylsetupsmall
## You need to specify the parent object if you invoke execute
## on a goCluster subobject
annotatedDataset <- execute(test@data, test)