Description Usage Arguments Details Value See Also Examples
multi_norm_and_annot
function normalizes and annotates data from many microarray experiments.
1 | multi_norm_and_annot(dataList, ExpInfoTable)
|
dataList |
A list of objects of class marrayRaw, EListRaw, AffyBatch, ExonFeatureSet or list (see details) with raw expression data. |
platformVector |
A character vector indicating experiments' platform (could be 'Affymetrix' or 'Agilent'). |
An element of a dataList (first argument) could be also a list due to make it possible to process data from an experiment where there are
few array types within one platform (Affymetrix or Agilent). For details about normalization and annotation used
in multi_norm_and_annot
see norm_and_annot_by_platform
help.
A list of expression matrices with normalized and annotated expression values.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
### download, load, normalize and annotate data from ArrayExpress
# download
to_download = c("E-GEOD-21066", "E-MTAB-966")
data = downloadAE(to_download, getwd())
# load
platforms = c("Affymetrix", "Agilent")
loaded_experiments = load_multi_data(data, platforms)
# process
processed_data = multi_norm_and_annot(loaded_experiments[[1]], platforms)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.