Re: [R] multicore/mcparallel error

2012-04-11 Thread Wyatt McMahon
] Sent: Tuesday, April 10, 2012 12:07 PM To: Wyatt McMahon Cc: R-help@r-project.org Subject: Re: [R] multicore/mcparallel error I don't know the multicore package, but if possible, it might be easier to upgrade to 2.15 and use the new built-in parallel package that was introduced in R 2.14. Then your

Re: [R] multicore/mcparallel error

2012-04-11 Thread R. Michael Weylandt
Subject: Re: [R] multicore/mcparallel error I don't know the multicore package, but if possible, it might be easier to upgrade to 2.15 and use the new built-in parallel package that was introduced in R 2.14. Then your syntax would be something like mclapply(files, illumqc) Michael

Re: [R] multicore/mcparallel error

2012-04-11 Thread Wyatt McMahon
Thanks a ton, Michael! Everything is running much faster now!! Wyatt -Original Message- From: R. Michael Weylandt [mailto:michael.weyla...@gmail.com] Sent: Wednesday, April 11, 2012 1:41 PM To: Wyatt McMahon Cc: R-help@r-project.org Subject: Re: [R] multicore/mcparallel error Parallel

[R] multicore/mcparallel error

2012-04-10 Thread Wyatt McMahon
Hello everyone, I'm trying to parallelize an R script I have written. To do this, I am first trying to use the multicore package, because I've had some previous success with that. The function I'm trying to parallelize is illumqc. I'd like to create a separate process for each of 8

Re: [R] multicore/mcparallel error

2012-04-10 Thread R. Michael Weylandt
I don't know the multicore package, but if possible, it might be easier to upgrade to 2.15 and use the new built-in parallel package that was introduced in R 2.14. Then your syntax would be something like mclapply(files, illumqc) Michael On Tue, Apr 10, 2012 at 11:33 AM, Wyatt McMahon