removeDistributedFiles {affyPara} | R Documentation |
This function removes distributed files from a special path at the disk at all slaves in a computer cluster.
removeDistributedFiles(cluster, path=tempdir(), verbose = FALSE)
cluster |
A cluster object obtained from the function makeCluster in the SNOW package. |
path |
A character that defines which path (inclusive files) should be removed at every slave. Default: tempdir() |
verbose |
A logical value. If TRUE it writes out some messages. |
This function removes distributed files from a special path at the disk at all slaves in a computer cluster.
For using this function a computer cluster using the SNOW
package has to be started.
If verbose = TRUE
, result of removing (successfully / not successfully) will be noticed with a message.
Markus Schmidberger schmidb@ibe.med.uni-muenchen.de, Ulrich Mansmann mansmann@ibe.med.uni-muenchen.de
## Not run: library(affyPara) c1 <- makeCluster(10) removeDistributedFiles(c1, verbose=TRUE) stopCluster(c1) ## End(Not run)