This function prepares datasets of the GEO2KEGG microarray compendium for further analysis. This includes summarization of probe level expression to gene level expression as well as annotation of required colData slots for sample grouping.
Arguments
- exp.list
Experiment list. A
list
of datasets, each being of classExpressionSet
.- parallel
Parallel computation mode. An instance of class
BiocParallelParam
. See the vignette of theBiocParallel
package for switching between serial, multi-core, and grid execution. Defaults toNULL
, which then uses the first element ofBiocParallel::registered()
for execution. If not changed by the user, this accordingly defaults to multi-core execution on the local host.
See also
loadEData
to load a specified expression data
compendium.
Examples
# reading user-defined expression data from file
geo2kegg <- loadEData("geo2kegg", nr.datasets=3)
#> Loading GEO2KEGG data compendium ...
# only considering the first 100 probes for demonstration
geo2kegg <- lapply(geo2kegg, function(d) d[1:100,])
# preprocessing two datasets
geo2kegg <- maPreproc(geo2kegg[2:3])
#> Summarizing probe level expression ...