Description Usage Arguments Details Value Author(s) References See Also Examples
Annotates an expression array with entrez gene IDs, averaging to resolve redundancies
1 | customCDFAnn(data, ann)
|
data |
expression dataframe |
ann |
annotation dataframe |
Maps array probes to a unique list of Entrez Gene IDs. Rhe mean expression value is used for mutiple probes mapping to the same gene.
Returns a dataframe with a column for each column of the input data and rownames as unique entrez IDs.
Gabriel Altschuler
Altschuler, G. M., O. Hofmann, I. Kalatskaya, R. Payne, S. J. Ho Sui, U. Saxena, A. V. Krivtsov, S. A. Armstrong, T. Cai, L. Stein and W. A. Hide (2013). "Pathprinting: An integrative approach to understand the functional basis of disease." Genome Med 5(7): 68.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | require(pathprintGEOData)
# load ALL dataset
require(ALL)
data(ALL)
annotation(ALL)
library(SummarizedExperiment)
# load the data
data(SummarizedExperimentGEO)
ds = c("chipframe", "genesets","pathprint.Hs.gs",
"platform.thresholds","pluripotents.frame")
data(list = ds)
# extract part of the GEO.fingerprint.matrix and GEO.metadata.matrix
GEO.fingerprint.matrix = assays(geo_sum_data[,300000:350000])$fingerprint
GEO.metadata.matrix = colData(geo_sum_data[,300000:350000])
# free up space by removing the geo_sum_data object
remove(geo_sum_data)
# The chip used was the Affymetrix Human Genome U95 Version 2 Array
# The correspending GEO ID is GPL8300
# Extract portion of the expression matrix
ALL.exprs<-exprs(ALL)
ALL.exprs.sub<-ALL.exprs[,1:5]
# Annotate with Entrez Gene IDs,
ALL.exprs.sub.entrez<-customCDFAnn(ALL.exprs.sub, chipframe$GPL8300$ann)
head(ALL.exprs.sub.entrez)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.