list
of split objects (AffyBatch, Matrix).mergeAffyBatches(abatch.list, description = NULL, notes = character(0))
combineMatrices(matrix.list, verbose = getOption("verbose"))
list
of objects of class AffyBatch.character
vector of explanatory text.list
of objects of class matrix.TRUE
it writes out some messages.list
of split objects.
[object Object],[object Object]library(affyPara)
if (require(affydata)) {
data(Dilution)
#split AffyBatch
abatch.list<- splitAffyBatch(Dilution, 2)
#Merge AffyBatch
AffyBatch <- mergeAffyBatches(abatch.list)
# Create matrices
a <- matrix(1:25, nrow=5)
b <- matrix(101:125, nrow=5)
matrix.list <- list(a,b)
# Combine matrices
combineMatrices(matrix.list)
}
Run the code above in your browser using DataLab