Description Usage Arguments Details Value Author(s) Examples
Functions to merge or combine a list
of split objects (AffyBatch, Matrix).
1 2 | mergeAffyBatches(abatch.list, description = NULL, notes = character(0))
combineMatrices(matrix.list, verbose = getOption("verbose"))
|
abatch.list |
A |
description |
A MIAME object. |
notes |
A |
matrix.list |
A |
verbose |
A logical value. If |
Functions to merge or combine a list
of split objects.
mergeAffyBatches
Merges a list
of AffyBatches to one AffyBatch.
combineMatrices
Combines a list
of matrices by columns to one matrix.
|
Returns ONE object of class AffyBatch. |
|
Returns ONE object of class matrix. |
Markus Schmidberger schmidb@ibe.med.uni-muenchen.de, Ulrich Mansmann mansmann@ibe.med.uni-muenchen.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.