Description Usage Arguments Value Author(s) See Also Examples
Get the annotations used in a NCBI GEO dataset
1 | clusteringSummary(expr.matrix, pval, names)
|
expr.matrix |
A matrix of numeric values. Rows are genes, columns are samples |
pval |
Alpha value (selected p-value) |
A table with all the annotation for a platform
Simon J Pelletier
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | expr.matrix <- readRDS("data/expr_matrix_LGVD.rds")
pval <- 0.05
summaryClust <- clusteringSummary(expr.matrix,pval)
gset <- getGEO("GSE44593", GSEMatrix =TRUE)
exprset <- gset[[1]]
expr.matrix <- exprs(exprset)
names1 <- get_names(sampleNames(exprset))
groupBy <- "group"
noCluster <- 3
fileContent <- "Expression Set"
names1 <- get_names(expr.matrix)
selectedVariables <- NULL
comparisonsTable <- comparisonsPheno(exprset)[[2]]
namesTable <- comparisonsTable
names2 <- namesSelectedComparisons(namesTable)
summaryClust <- clusteringSummary(expr.matrix,pval,names2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.