Nothing
#' Test pathway association with AES-PCA
#'
#' @description Given a supervised \code{OmicsPath} object (one of
#' \code{OmicsSurv}, \code{OmicsReg}, or \code{OmicsCateg}), extract the
#' first \eqn{k} adaptive, elastic-net, sparse principal components (PCs)
#' from each pathway-subset of the features in the -Omics assay design
#' matrix, test their association with the response matrix, and return a
#' data frame of the adjusted \eqn{p}-values for each pathway.
#'
#' @param object An object of class \code{OmicsPathway} with a response matrix
#' or vector.
#' @param numPCs The number of PCs to extract from each pathway. Defaults to 1.
#' @param numReps How many permutations to estimate the \eqn{p}-value? Defaults
#' to 0 (that is, to estimate the \eqn{p}-value parametrically). If
#' \code{numReps} > 0, then the non-parametric, permutation \eqn{p}-value
#' will be returned based on the number of random samples specified.
#' @param parallel Should the computation be completed in parallel? Defaults to
#' \code{FALSE}.
#' @param numCores If \code{parallel = TRUE}, how many cores should be used for
#' computation? Internally defaults to the number of available cores minus 1.
#' @param asPCA Should the computation return the eigenvectors and eigenvalues
#' instead of the adaptive, elastic-net, sparse principal components and their
#' corresponding loadings. Defaults to \code{FALSE}; this should be used for
#' diagnostic or comparative purposes only.
#' @param adjustpValues Should you adjust the \eqn{p}-values for multiple
#' comparisons? Defaults to TRUE.
#' @param adjustment Character vector of procedures. The returned data frame
#' will be sorted in ascending order by the first procedure in this vector,
#' with ties broken by the unadjusted \eqn{p}-value. If only one procedure is
#' selected, then it is necessarily the first procedure. See the documentation
#' for the \code{\link{ControlFDR}} function for the adjustment procedure
#' definitions and citations.
#' @param ... Dots for additional internal arguments.
#'
#' @return A results list with class \code{aespcOut}. This list has three
#' components: a data frame of pathway details, pathway \eqn{p}-values, and
#' potential adjustments to those values (\code{pVals_df}); a list of the
#' first \code{numPCs} \emph{score} vectors for each pathway (\code{PCs_ls});
#' and a list of the first \code{numPCs} feature loading vectors for each
#' pathway (\code{loadings_ls}). The \eqn{p}-value data frame has columns:
#' \itemize{
#' \item{\code{pathways} : }{The names of the pathways in the \code{Omics*}}
#' object (given in \code{object@@trimPathwayCollection$pathways}.)
#' \item{\code{setsize} : }{The number of genes in each of the original
#' pathways (given in the \code{object@@trimPathwayCollection$setsize}
#' object).}
#' \item{\code{n_tested} : }{The number of genes in each of the trimmed
#' pathways (given in the \code{object@@trimPathwayCollection$n_tested}
#' object).}
#' \item{\code{terms} : }{The pathway description, as given in the
#' \code{object@@trimPathwayCollection$TERMS} object.}
#' \item{\code{rawp} : }{The unadjusted \eqn{p}-values of each pathway.}
#' \item{\code{...} : }{Additional columns of adjusted \eqn{p}-values as
#' specified through the \code{adjustment} argument.}
#' }
#'
#' The data frame will be sorted in ascending order by the method specified
#' first in the \code{adjustment} argument. If \code{adjustpValues = FALSE},
#' then the data frame will be sorted by the raw \eqn{p}-values. If you have
#' the suggested \code{tidyverse} package suite loaded, then this data frame
#' will print as a \code{\link[tibble]{tibble}}. Otherwise, it will print as
#' a data frame.
#'
#' @details This is a wrapper function for the \code{\link{ExtractAESPCs}},
#' \code{\link{PermTestSurv}}, \code{\link{PermTestReg}}, and
#' \code{\link{PermTestCateg}} functions.
#'
#' Please see our Quickstart Guide for this package:
#' \url{https://gabrielodom.github.io/pathwayPCA/articles/Supplement1-Quickstart_Guide.html}
#'
#' @seealso \code{\link{CreateOmics}}; \code{\link{ExtractAESPCs}};
#' \code{\link{PermTestSurv}}; \code{\link{PermTestReg}};
#' \code{\link{PermTestCateg}}; \code{\link{TabulatepValues}};
#' \code{\link[parallel]{clusterApply}}
#'
#' @include createClass_validOmics.R
#' @include createClass_OmicsPath.R
#' @include createClass_OmicsSurv.R
#' @include createClass_OmicsReg.R
#' @include createClass_OmicsCateg.R
#' @include aesPC_permtest_CoxPH.R
#' @include aesPC_permtest_LM.R
#' @include aesPC_permtest_GLM.R
#'
#' @importFrom methods setGeneric
#'
#' @export
#'
#' @examples
#' ### Load the Example Data ###
#' data("colonSurv_df")
#' data("colon_pathwayCollection")
#'
#' ### Create an OmicsSurv Object ###
#' colon_Omics <- CreateOmics(
#' assayData_df = colonSurv_df[, -(2:3)],
#' pathwayCollection_ls = colon_pathwayCollection,
#' response = colonSurv_df[, 1:3],
#' respType = "surv"
#' )
#'
#' ### Calculate Pathway p-Values ###
#' colonSurv_aespc <- AESPCA_pVals(
#' object = colon_Omics,
#' numReps = 0,
#' parallel = TRUE,
#' numCores = 2,
#' adjustpValues = TRUE,
#' adjustment = c("Hoch", "SidakSD")
#' )
#'
#' @rdname AESPCA_pVals
setGeneric("AESPCA_pVals",
function(object,
numPCs = 1,
numReps = 0L,
parallel = FALSE,
numCores = NULL,
asPCA = FALSE,
adjustpValues = TRUE,
adjustment = c("Bonferroni",
"Holm",
"Hochberg",
"SidakSS",
"SidakSD",
"BH",
"BY",
"ABH",
"TSBH"),
...){
standardGeneric("AESPCA_pVals")
}
)
#' @importFrom parallel detectCores
#'
#' @rdname AESPCA_pVals
setMethod(f = "AESPCA_pVals", signature = "OmicsPathway",
definition = function(object,
numPCs = 1,
numReps = 1000,
parallel = FALSE,
numCores = NULL,
asPCA = FALSE,
adjustpValues = TRUE,
adjustment = c("Bonferroni",
"Holm",
"Hochberg",
"SidakSS",
"SidakSD",
"BH",
"BY",
"ABH",
"TSBH"),
...){
# browser()
if(parallel){
numCores <- ifelse(is.null(numCores), detectCores() - 1, numCores)
}
### Calculate AES-PCs ###
message("Part 1: Calculate Pathway AES-PCs")
aespca_ls <- ExtractAESPCs(
object = object,
numPCs = numPCs,
parallel = parallel,
numCores = numCores,
standardPCA = asPCA
)
### Permutation Pathway p-Values ###
message("")
message("Part 2: Calculate Pathway p-Values")
obj_class <- class(object)
switch(obj_class,
OmicsPathway = {
adjustpValues <- FALSE
numPaths <- length(getTrimPathwayCollection(object)$TERMS)
pVals_vec <- rep(1, numPaths)
},
OmicsSurv = {
pVals_vec <- PermTestSurv(
OmicsSurv = object,
pathwayPCs_ls = aespca_ls$PCs,
numReps = numReps,
parallel = parallel,
numCores = numCores
)
},
OmicsReg = {
pVals_vec <- PermTestReg(
OmicsReg = object,
pathwayPCs_ls = aespca_ls$PCs,
numReps = numReps,
parallel = parallel,
numCores = numCores
)
},
OmicsCateg = {
pVals_vec <- PermTestCateg(
OmicsCateg = object,
pathwayPCs_ls = aespca_ls$PCs,
numReps = numReps,
parallel = parallel,
numCores = numCores
)
}
)
### Adjust Pathway p-Values ###
message("")
if(adjustpValues){
message("Part 3: Adjusting p-Values and Sorting Pathway p-Value Data Frame")
adjustment <- match.arg(adjustment, several.ok = TRUE)
} else {
message("Part 3: Sorting Pathway p-Value Data Frame")
}
pathwayGeneSets_ls <- object@trimPathwayCollection
out_df <- TabulatepValues(
pVals_vec = pVals_vec,
genesets_ls = pathwayGeneSets_ls,
adjust = adjustpValues,
proc_vec = adjustment,
...
)
message("DONE")
### Re-order PCA Output ###
PCs_ls <- aespca_ls$PCs[out_df$pathways]
attr(PCs_ls, "sampleIDs") <- object@sampleIDs_char
loadings_ls <- aespca_ls$loadings[out_df$pathways]
### Return ###
out_ls <- list(
pVals_df = out_df,
PCs_ls = PCs_ls,
loadings_ls = loadings_ls
)
class(out_ls) <- c("aespcOut", "pathwayPCA", "list")
out_ls
})
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.