Dear all
In previous R versions I ran R jobs on our cluster managed by SUN Grid
Engine using the Rsge package. With the R-3.0 release, the package Rsge
has been discontinued. What would be the equivalent way of running jobs
on the cluster using current packages?
I understand that the parallel package has been updated. What would be
the equivalent to the lines below:
require(Rsge)
sge.options("sge.qsub.options"="-cwd -q GT -pe smp 8 -l C=2")
sge.options("sge.save.global"=TRUE)
sge.options("sge.remove.files"=TRUE)
jobList = list( ....)
myJobFunc = function(x) {....}
result = sge.parLapply(jobList, myJobFunc, njobs=length(jobList))
Many thanks
Hubert Rehrauer
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.