Description Usage Arguments Value Author(s) References See Also Examples
Load all files saved during the parallelization.
1 2 | ## S3 method for class 'BigBang'
loadParallelFiles(bb, prefix="parallel-", ...)
|
prefix |
Prefix used in the parallel files for identification. Defaults to “parallel-”. |
Returns the file names loaded to the bigbang object.
Victor Trevino. Francesco Falciani Group. University of Birmingham, U.K. http://www.bip.bham.ac.uk/bioinf
Goldberg, David E. 1989 Genetic Algorithms in Search, Optimization and Machine Learning. Addison-Wesley Pub. Co. ISBN: 0201157675
For more information see BigBang
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ## Not run:
#Initial process:
#load data and configure initial objects, run once
library(galgo)
bb <- configBB.varSel(..., saveFile="bb.parallel.Rdata", ...)
saveObject(bb)
#
#Parallel process:
#run as many process as you want
library(galgo)
loadObject("bb.parallel.Rdata")
assignParallelFile(bb)
blast(bb)
#
#Analysis Process:
library(galgo)
loadObject("bb.parallel.Rdata")
loadParallelFiles(bb)
#
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.