Nothing
#' summaryDescription
#'
#' Render job summary section
#'
#' @importFrom whisker whisker.render
#' @keywords internal
#'
summaryDescription <- function(projectName, organism, interestGeneFile, interestGene, interestGeneType, enrichMethod, enrichDatabase, enrichDatabaseFile, enrichDatabaseType, enrichDatabaseDescriptionFile, interestingGeneMap, referenceGeneList, referenceGeneFile, referenceGene, referenceGeneType, referenceSet, minNum, maxNum, sigMethod, fdrThr, topThr, fdrMethod, enrichedSig, reportNum, perNum, p, geneSet, repAdded, numAnnoRefUserId, hostName) {
if (enrichMethod == "ORA") {
methodSpecificContent <- specificParameterSummaryOra(organism, referenceGeneList, geneSet, referenceGeneFile, referenceGene, referenceGeneType, referenceSet, minNum, maxNum, sigMethod, fdrThr, topThr, fdrMethod, enrichedSig, reportNum, repAdded, numAnnoRefUserId, interestingGeneMap, hostName)
}
if (enrichMethod == "GSEA") {
methodSpecificContent <- specificParameterSummaryGsea(organism, interestingGeneMap, geneSet, minNum, maxNum, sigMethod, fdrThr, topThr, perNum, p, enrichedSig, reportNum, repAdded)
}
template <- readLines(system.file("templates/summary.mustache", package="WebGestaltR"))
enrichDatabaseInfo <- list()
for (enrichDb in enrichDatabase) {
if (!is.null(enrichDb)) {
enrichDatabaseInfo <- c(enrichDatabaseInfo, list(list(isBuiltIn=TRUE, enrichDatabase=enrichDb)))
}
}
for (i in 1:length(enrichDatabaseFile)) {
if (!is.null(enrichDatabaseFile[[i]])) {
enrichDatabaseInfo <- c(enrichDatabaseInfo, list(list(isBuiltIn=FALSE, enrichDatabaseFile=enrichDatabaseFile[[i]],
hasEnrichDatabaseDescriptionFile=is.null(enrichDatabaseDescriptionFile[[i]]),
enrichDatabaseDescriptionFile=enrichDatabaseDescriptionFile[[i]])))
}
}
if (organism != "others") {
standardId <- unname(interestingGeneMap$standardId)
data <- list(projectName=projectName, enrichMethod=enrichMethod, organism=organism, organismIsOthers=FALSE,
enrichDatabaseInfo=enrichDatabaseInfo, enrichDatabaseType=enrichDatabaseType,
hasInterestGeneFile=!is.null(interestGeneFile),
interestGeneFileBase=ifelse(is.null(interestGeneFile), "", basename(interestGeneFile)), interestGeneType=interestGeneType,
numUserId=nrow(interestingGeneMap$mapped)+length(interestingGeneMap$unmapped),
numMappedUserId=nrow(interestingGeneMap$mapped), numUniqueMappedId=length(unique(interestingGeneMap$mapped[[standardId]])),
numUnmappedUserId=length(interestingGeneMap$unmapped), idIsEntrezGene=standardId=="entrezgene", standardId=standardId,
methodSpecificContent=methodSpecificContent, hostName=hostName
)
}else {
data <- list(projectName=projectName, enrichMethod=enrichMethod, organism=organism, organismIsOthers=TRUE,
enrichDatabaseInfo=enrichDatabaseInfo, enrichDatabaseType=enrichDatabaseType,
hasInterestGeneFile=!is.null(interestGeneFile),
interestGeneFileBase=ifelse(is.null(interestGeneFile), "", basename(interestGeneFile)), interestGeneType=interestGeneType,
idIsEntrezGene=FALSE, methodSpecificContent=methodSpecificContent
)
}
return(whisker.render(template, data))
}
#' specificParameterSummaryOra
#'
#' Render job summary section of ORA specific parameters
#'
#' @importFrom whisker whisker.render
#'
#' @keywords internal
#'
specificParameterSummaryOra <- function(organism, referenceGeneList, geneSet, referenceGeneFile, referenceGene, referenceGeneType, referenceSet, minNum, maxNum, sigMethod, fdrThr, topThr, fdrMethod, enrichedSig, reportNum, repAdded, numAnnoRefUserId, interestingGeneMap, hostName) {
organismIsOthers <- organism == "others"
if (!organismIsOthers) {
standardId <- interestingGeneMap$standardId
interestGeneList <- unique(interestingGeneMap$mapped[[standardId]])
} else { ### for others
standardId <- NULL
interestGeneList <- unique(interestingGeneMap)
}
numAnnoRefId <- length(intersect(referenceGeneList, geneSet$gene))
hasEnrichedSig <- !is.null(enrichedSig)
if (hasEnrichedSig) {
numEnrichedSig <- nrow(enrichedSig)
showAll <- reportNum >= numEnrichedSig
} else {
numEnrichedSig <- NULL
showAll <- NULL
}
data <- list(organismIsOthers=organismIsOthers, numUniqueUserId=length(interestGeneList), standardId=standardId,
numAnnoRefUserId=numAnnoRefUserId, hasRefGeneFile=!is.null(referenceGeneFile), referenceGeneFile=referenceGeneFile,
referenceGeneType=referenceGeneType, hasRefGene=!is.null(referenceGene), referenceSet=referenceSet,
numRefGene=length(referenceGeneList), numAnnoRefId=length(intersect(referenceGeneList, geneSet$gene)), minNum=minNum,
maxNum=maxNum, fdrMethod=fdrMethod, methodIsFdr=sigMethod=="fdr", methodIsTop=sigMethod=="top", fdrThr=fdrThr,
topThr=topThr, hasEnrichedSig=hasEnrichedSig, showAll=showAll, reportNum=reportNum, hasRepAdded=repAdded, numEnrichedSig=numEnrichedSig, organism=organism, hostName=hostName
)
template <- readLines(system.file("templates/summaryOra.mustache", package="WebGestaltR"))
return(whisker.render(template, data))
}
#' specificParameterSummaryGsea
#'
#' Render job summary section of GSEA specific parameters
#'
#' @importFrom whisker whisker.render
#' @importFrom dplyr filter
#'
#' @keywords internal
#'
specificParameterSummaryGsea <- function(organism, interestingGeneMap, geneSet, minNum, maxNum, sigMethod, fdrThr, topThr, perNum, p, enrichedSig, reportNum, repAdded) {
organismIsOthers <- organism == "others"
if (!organismIsOthers) {
standardId <- interestingGeneMap$standardId
interestGeneList <- unique(interestingGeneMap$mapped[[standardId]])
numUniqueUserId <- length(interestGeneList)
numAnnoUserId <- length(intersect(interestGeneList, geneSet$gene))
} else {
standardId <- NULL
interestGeneList <- unique(interestingGeneMap)
numUniqueUserId <- nrow(interestGeneList)
numAnnoUserId <- NULL
}
hasEnrichedSig <- !is.null(enrichedSig)
data <- list(organismIsOthers=organismIsOthers, numUniqueUserId=numUniqueUserId, standardId=standardId, numAnnoUserId=numAnnoUserId,
minNum=minNum, maxNum=maxNum, methodIsFdr=sigMethod=="fdr", methodIsTop=sigMethod=="top", fdrThr=fdrThr, topThr=topThr,
perNum=perNum, reportNum=reportNum, hasRepAdded=repAdded, hasEnrichedSig=hasEnrichedSig, p=p, isPShown=p!=1
)
if(hasEnrichedSig){
data$numPosRel <- nrow(filter(enrichedSig, .data$normalizedEnrichmentScore > 0))
data$numNegRel <- nrow(filter(enrichedSig, .data$normalizedEnrichmentScore < 0))
data$isPosRel <- data$numPosRel > 0
data$isNegRel <- data$numNegRel > 0
data$showAll <- reportNum >= nrow(enrichedSig)
}
template <- readLines(system.file("templates/summaryGsea.mustache", package="WebGestaltR"))
return(whisker.render(template, data))
}
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.