Nothing
`topCategory` <-
function(inputX, orderby=c('geneNum', 'pvalue', 'foldChange', 'oddsRatio', 'correctedPvalue'), top=5, file=FALSE, fileName='topCategory.txt') {
orderby <- match.arg(orderby)
allCats <- FALSE
if (is.character(top) & toupper(top) != 'ALL') stop('top can not be recognized!')
if (is.numeric(top)) top <- min(dim(inputX@enrichmentInfo)[1], top)
else {
if (toupper(top) == 'ALL') {
top <- min(dim(inputX@enrichmentInfo)[1], 20)
allCats <- TRUE
}
print(paste(top, 'categories will be displayed! All categories are saved in file'))
}
if ((orderby == 'correctedPvalue') & !('fdr p value' %in% colnames(inputX@enrichmentInfo))) stop('input geneAnswer class does not contain fdr p value!!!')
orderby <- switch(orderby,
'geneNum'= c('genes in Category', 'TRUE'),
'pvalue' = c('p value', 'FALSE'),
'foldChange' = c('fold of overrepresents', 'TRUE'),
'oddsRatio' = c('odds ratio', 'FALSE'),
'correctedPvalue' = c('fdr p value', 'FALSE'))
inputX@enrichmentInfo <- inputX@enrichmentInfo[order(inputX@enrichmentInfo[, orderby[1]], decreasing=as.logical(orderby[2])), ]
displayCols <- c('genes in Category', 'p value')
if ('fdr p value' %in% colnames(inputX@enrichmentInfo)) displayCols <- c(displayCols, 'fdr p value')
inputX@enrichmentInfo[,2:dim(inputX@enrichmentInfo)[2]] <- signif(inputX@enrichmentInfo[,2:dim(inputX@enrichmentInfo)[2]], digits=4)
print(inputX@enrichmentInfo[1:top, displayCols])
if (file) {
if (allCats) outputM <- cbind(as.data.frame(matrix(rownames(inputX@enrichmentInfo))), inputX@enrichmentInfo[, displayCols])
else outputM <- cbind(as.data.frame(matrix(rownames(inputX@enrichmentInfo[1:top,]))), inputX@enrichmentInfo[1:top, displayCols])
names(outputM) <- c('Category', displayCols)
write.table(outputM, file=fileName, sep='\t', row.names=F, col.names=T, append=F)
print(paste('File', fileName, 'is successfully generated!'))
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.