### ============================================================================
### rowOrderStats
###
### ----------------------------------------------------------------------------
### Non-exported methods
###
.DelayedMatrix_block_rowOrderStats <- function(x, rows = NULL, cols = NULL,
which, ..., 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 <- rowblock_APPLY(x = x,
FUN = rowOrderStats,
which = which,
...,
useNames = useNames)
if (length(val) == 0L) {
return(numeric(ncol(x)))
}
unlist(val, recursive = FALSE, use.names = useNames)
}
### ----------------------------------------------------------------------------
### Exported methods
###
# ------------------------------------------------------------------------------
# General method
#
#' @inherit MatrixGenerics::rowOrderStats
#' @importMethodsFrom DelayedArray seed
#' @rdname colOrderStats
#' @export
#' @examples
#'
#' # Different algorithms, specified by `which`, may give different results
#' rowOrderStats(dm_Matrix, which = 1)
#' rowOrderStats(dm_Matrix, which = 2)
setMethod("rowOrderStats", "DelayedMatrix",
function(x, rows = NULL, cols = NULL, which,
force_block_processing = FALSE, ..., useNames = TRUE) {
.smart_seed_dispatcher(x, generic = MatrixGenerics::rowOrderStats,
blockfun = .DelayedMatrix_block_rowOrderStats,
force_block_processing = force_block_processing,
rows = rows,
cols = cols,
which = which,
...,
useNames = useNames)
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.