Description Usage Arguments Details Value Author(s) Examples
Functions to split an AffyBatch, a list
of files and a matrix
into several objects for distributed computing. If possible objects will be of the same size.
1 2 3 | splitAffyBatch(abatch, number.part)
splitFileVector(fileVec, number.part)
splitMatrix(matrix, number.part)
|
abatch |
An object of class AffyBatch. |
fileVec |
A |
matrix |
An object of class matrix. |
number.part |
Number of parts to split the object |
splitAffyBatch
Splits an AffyBatch into a list of AffyBatches.
splitFileVector
Splits a character
vector of file names into a list of character
vectors with file names.
splitMatrix
Splits a matrix
by columns into a list
of matrices.
These functions use the functions splitIndices and splitCols from the SNOW
package.
A list
of the split objects.
Markus Schmidberger schmidb@ibe.med.uni-muenchen.de, Ulrich Mansmann mansmann@ibe.med.uni-muenchen.de
1 2 3 4 5 6 | library(affyPara)
if (require(affydata)) {
data(Dilution)
spAffyB <- splitAffyBatch(Dilution, 2)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.