### ============================================================================
### colCumsums
###
### ----------------------------------------------------------------------------
### Non-exported methods
###
.DelayedMatrix_block_colCumsums <- function(x, rows = NULL, cols = NULL,
..., useNames = TRUE) {
# Check input type
stopifnot(is(x, "DelayedMatrix"))
DelayedArray:::.get_ans_type(x, must.be.numeric = TRUE)
# Subset
x <- ..subset(x, rows, cols)
# Compute result
val <- colblock_APPLY(x = x,
FUN = colCumsums,
...,
useNames = useNames)
if (length(val) == 0L) {
return(numeric(ncol(x)))
}
val <- do.call(cbind, val)
if (!useNames) {
val <- unname(val)
}
val
}
### ----------------------------------------------------------------------------
### Exported methods
###
# ------------------------------------------------------------------------------
# General method
#
#' @inherit MatrixGenerics::colCumsums
#' @importMethodsFrom DelayedArray seed
#' @rdname colCummaxs
#' @export
#' @author Peter Hickey
#' @examples
#'
#' colCumsums(dm_matrix)
setMethod("colCumsums", "DelayedMatrix",
function(x, rows = NULL, cols = NULL,
force_block_processing = FALSE, ..., useNames = TRUE) {
.smart_seed_dispatcher(x, generic = MatrixGenerics::colCumsums,
blockfun = .DelayedMatrix_block_colCumsums,
force_block_processing = force_block_processing,
rows = rows,
cols = cols,
...,
useNames = useNames)
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.