#' Set thresholds for expression matrix
#'
#' `GSEA.Threshold` sets threshold and ceiling values to pre-process gene expression matrix
#'
#' Internal `GSEA` function.
#'
#' @keywords internal
#'
GSEA.Threshold <-
function(V, thres, ceil) {
V[V < thres] <- thres
V[V > ceil] <- ceil
return(V)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.