#' Access to the estimated Sorensen-Dice dissimilarity in one or more equivalence test results
#'
#' Given objects representing the result(s) of one or more equivalence tests
#' (classes "equivSDhtest", "equivSDhtestList" or "allEquivSDtest", i.e., the
#' result of functions 'equivTestSorensen' and 'allEquivTestSorensen')
#' this function returns the estimated dissimilarities in the tests.
#'
#' @param x an object of class "equivSDhtest" or "equivSDhtestList" or "allEquivSDtest".
#' @param onto character, a vector with one or more of "BP", "CC" or "MF", ontologies to access.
#' @param GOLevel numeric or character, a vector with one or more GO levels to access.
#' See the details section and the examples.
#' @param simplify logical, if TRUE the result is simplified, e.g., returning a vector instead
#' of a matrix.
#' @param listNames character(2), the names of a pair of gene lists.
#' @param ... Additional parameters.
#'
#' @return When \code{x} is an object of class "equivSDhtest" (i.e., the result of a single
#' equivalence test), the returned value is a single numeric value, the Sorensen-Dice
#' dissimilarity. For an object of class "equivSDhtestList" (i.e. all pairwise tests for a
#' set of gene lists), if \code{simplify = TRUE} (the default), the resulting value is a vector
#' with the dissimilarities in all those tests, or the symmetric matrix of all dissimilarities
#' if \code{simplify = TRUE}. If \code{x} is an object of class "allEquivSDtest" (i.e., the
#' test iterated along GO ontologies and levels), the preceding result is returned in the form
#' of a list along the ontologies, levels and pairs of gene lists specified by the arguments
#' \code{onto, GOlevel} and \code{listNames} (or all present in \code{x} for missing arguments).
#'
#' @details
#' Argument \code{GOLevel} can be of class "character" or "numeric". In the first case, the GO
#' levels must be specified like \code{"level 6"} or \code{c("level 4", "level 5", "level 6")}
#' In the second case ("numeric"), the GO levels must be specified like\code{6} or \code{seq.int(4,6)}.
#'
#' @examples
#' # Dataset 'eqTest_atlas.sanger_BP4' contains the result of the equivalence test between gene lists
#' # 'sanger' and 'atlas', at level 4 of the BP ontology:
#' data(eqTest_atlas.sanger_BP4)
#' eqTest_atlas.sanger_BP4
#' class(eqTest_atlas.sanger_BP4)
#' # This may correspond to the result of code like:
#' # eqTest_atlas.sanger_BP4 <- equivTestSorensen(
#' # allOncoGeneLists[["sanger"]], allOncoGeneLists[["atlas"]],
#' # geneUniverse = humanEntrezIDs, orgPackg = "org.Hs.eg.db",
#' # onto = "BP", GOLevel = 4, listNames = c("sanger", "atlas"))
#' # (But results may vary according to GO updating)
#' getDissimilarity(eqTest_atlas.sanger_BP4)
#'
#' # All pairwise equivalence tests at level 4 of the BP ontology:
#' data(eqTest_all_BP4)
#' ?eqTest_all_BP4
#' class(eqTest_all_BP4)
#' # This may correspond to a call like:
#' # eqTest_all_BP4 <- equivTestSorensen(allOncoGeneLists,
#' # geneUniverse = humanEntrezIDs, orgPackg = "org.Hs.eg.db",
#' # onto = "BP", GOLevel = 4)
#' getDissimilarity(eqTest_all_BP4)
#' getDissimilarity(eqTest_all_BP4, simplify = FALSE)
#'
#' # Equivalence test iterated over all GO ontologies and levels 3 to 10:
#' data(allEqTests)
#' ?allEqTests
#' class(allEqTests)
#' # This may correspond to code like:
#' # (By default, the tests are iterated over all GO ontologies and for levels 3 to 10)
#' # allEqTests <- allEquivTestSorensen(allOncoGeneLists,
#' # geneUniverse = humanEntrezIDs,
#' # orgPackg = "org.Hs.eg.db")
#' # All Sorensen-Dice dissimilarities:
#' getDissimilarity(allEqTests)
#' getDissimilarity(allEqTests, simplify = FALSE)
#'
#' # Dissimilarities only for some GO ontologies, levels or pairs of gene lists:
#' getDissimilarity(allEqTests, GOLevel = "level 6")
#' getDissimilarity(allEqTests, GOLevel = 6)
#' getDissimilarity(allEqTests, GOLevel = seq.int(4,6))
#' getDissimilarity(allEqTests, GOLevel = "level 6", simplify = FALSE)
#' getDissimilarity(allEqTests, GOLevel = "level 6", listNames = c("waldman", "sanger"))
#' getDissimilarity(allEqTests, GOLevel = seq.int(4,6), onto = "BP")
#' getDissimilarity(allEqTests, GOLevel = seq.int(4,6), onto = "BP", simplify = FALSE)
#' getDissimilarity(allEqTests, GOLevel = "level 6", onto = "BP",
#' listNames = c("atlas", "sanger"))
#' getDissimilarity(allEqTests$BP$`level 4`)
#'
#'
#' @export
getDissimilarity <- function(x, ...) {
UseMethod("getDissimilarity")
}
#' @describeIn getDissimilarity S3 method for class "equivSDhtest"
#' @export
getDissimilarity.equivSDhtest <- function(x, ...) {
return(x$estimate)
}
#' @describeIn getDissimilarity S3 method for class "equivSDhtestList"
#' @export
getDissimilarity.equivSDhtestList <- function(x, simplify = TRUE, ...) {
result <- lapply(x, function(xi){
resaux <- lapply(xi, getDissimilarity.equivSDhtest)
names(resaux) <- names(xi)
return(resaux)
})
namsList1 <- names(result) <- names(x)
result <- unlist(result)
if (!simplify) {
namsMat <- c(names(x[[1]])[1], namsList1)
nrows <- length(namsList1) + 1
resMat <- matrix(0.0, nrow = nrows, ncol = nrows)
resMat[upper.tri(resMat)] <- result
resMat[lower.tri(resMat)] <- t(resMat)[lower.tri(resMat)]
rownames(resMat) <- namsMat
colnames(resMat) <- namsMat
return(resMat)
}else{
return(result)
}
}
#'
#' @describeIn getDissimilarity S3 method for class "AllEquivSDhtest"
#' @export
getDissimilarity.AllEquivSDhtest <- function(x, onto, GOLevel, listNames,
simplify = TRUE, ...) {
if (missing(onto)) {
onto <- names(x)
}
if (missing(GOLevel)) {
GOLevel <- names(x[[1]])
} else {
if (is.numeric(GOLevel)) {
GOLevel <- paste0("level ", GOLevel)
}
}
allLists <- missing(listNames)
if (!allLists) {
stopifnot("'listNames' must be a 'character' of length 2" =
is.character(listNames) && (length(listNames) == 2))
}
result <- lapply(onto, function(ionto) {
resLev <- lapply(GOLevel, function(ilev) {
if (allLists) {
namsList1 <- names(x[[ionto]][[ilev]])
namsMat <- c(names(x[[ionto]][[ilev]][[1]])[1], namsList1)
resList1 <- sapply(namsList1, function(ilist1) {
namsList2 <- names(x[[ionto]][[ilev]][[ilist1]])
resList2 <- vapply(namsList2, function(ilist2) {
return(x[[ionto]][[ilev]][[ilist1]][[ilist2]]$estimate)
}, FUN.VALUE = 0.0)
return(resList2)
})
resList1 <- unlist(resList1, recursive = FALSE)
if (!simplify) {
nrows <- length(namsList1) + 1
matList1 <- matrix(0.0, nrow = nrows, ncol = nrows)
matList1[upper.tri(matList1)] <- resList1
matList1[lower.tri(matList1)] <- t(matList1)[lower.tri(matList1)]
rownames(matList1) <- namsMat
colnames(matList1) <- namsMat
resList1 <- matList1
}
return(resList1)
}else {
return(x[[ionto]][[ilev]][[listNames[1]]][[listNames[2]]]$estimate)
}
})
names(resLev) <- GOLevel
return(resLev)
})
names(result) <- onto
return(result)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.