| combo | R Documentation | 
This is a wrapper for combining different MethyLumiSet objects.
combo(...)
... | 
 Eventually, any number of MethyLumiSet objects. Currently only guaranteed for 2 objects.  | 
This is a wrapper for methylumi::combine, which works around a name clash with
a different combine function from the gdata package, and also a bug in 
methylumi::combine. 
a MethyLumiSet.  The assayData, QCdata, experimentData, protocolData
and phenoData are joined on sampleName .  featureData  and annotation are taken from
the object given in the first argument
the function uses sampleNames and gets rid of duplicates. 
Numeric sampleNames cause problems (and are a Bad Idea anyway).  They
should be turned into names with make.names() first.
Leo Schalkwyk <leonard.schalkwyk@kcl.ac.uk>
[1] Pidsley R, Wong CCY, Volta M, Lunnon K, Mill J, Schalkwyk LC: A data-driven approach to preprocessing Illumina 450K methylation array data (submitted)
as.methylumi
library(wateRmelon)
data(melon)
## pretend we have two different data sets
melon
pelon <- melon
sampleNames(pelon) <- gsub('^6', 7, sampleNames(pelon))
combo(melon, pelon)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.