removeDistributedFiles(path=tempdir(), cluster, master=TRUE, verbose = getOption("verbose"))
character
that defines which path (inclusive files) should be removed at every slave. Default: tempdir().affyParaInternalEnv$cl
will be used.TRUE
the files will be removed from the master. default: TRUETRUE
it writes out some messages. default: getOption("verbose")verbose = TRUE
, result of removing (successfully / not successfully) will be noticed with a message.makeCluster
generates an cluster object in the affyPara environment (.affyParaInternalEnv) and
no cluster object in the global environment. The cluster object in the affyPara environment will be used as default cluster object,
therefore no more cluster object handling is required.
The makeXXXcluster
functions from the package SNOW can be used to create an cluster object in the global environment and
to use it for the preprocessing functions.library(affyPara)
makeCluster(10)
removeDistributedFiles(verbose=TRUE)
stopCluster()
Run the code above in your browser using DataLab