Nothing
# Missing methods --------------------------------------------------------------
# TODO: DelayedArray::type() for all RealizationSink subclasses
setMethod("type", "HDF5RealizationSink", function(x) {
x@type
})
setMethod("type", "arrayRealizationSink", function(x) {
DelayedArray::type(x@result_envir$result)
})
setMethod("type", "RleRealizationSink", function(x) {
x@type
})
# TODO: dimnames() for all RealizationSink subclasses
setMethod("dimnames", "arrayRealizationSink", function(x) {
dimnames(x@result_envir$result)
})
# Get the 'highest' DelayedArray::type() of array-like objects -----------------
.highestType <- function(...) {
dots <- list(...)
types <- vapply(dots, DelayedArray::type, character(1L))
vector <- do.call(c, lapply(types, vector)) # guaranteed to be atomic
typeof(vector)
}
# Advanced block processing routines -------------------------------------------
# NOTE: DelayedArray::blockApply() with the option to write the blocks to
# 'sink'. Useful, for example, to apply a function across column-blocks
# of a DelayedMatrix, write these results to disk, and then wrap
# these in a DelayedMatrix.
# TODO: See https://github.com/Bioconductor/DelayedArray/issues/10
blockApplyWithRealization <- function(x, FUN, ..., sink = NULL, x_grid = NULL,
sink_grid = NULL, BPREDO = list(),
BPPARAM = bpparam()) {
FUN <- match.fun(FUN)
# Check conformable dots_grids and sinks_grids
x_grid <- DelayedArray:::normarg_grid(x_grid, x)
sink_grid <- DelayedArray:::normarg_grid(sink_grid, sink)
if (!identical(dim(x_grid), dim(sink_grid))) {
stop("non-conformable 'x_grid' and 'sink_grid'")
}
# Loop over blocks of `x` and write to `sink`
nblock <- length(x_grid)
bplapply(seq_len(nblock), function(b) {
if (DelayedArray:::get_verbose_block_processing()) {
message("Processing block ", b, "/", nblock, " ... ",
appendLF = FALSE)
}
x_viewport <- x_grid[[b]]
sink_viewport <- sink_grid[[b]]
block <- read_block(x, x_viewport)
attr(block, "from_grid") <- x_grid
attr(block, "block_id") <- b
block_ans <- FUN(block, ...)
# NOTE: This is the only part different from DelayedArray::blockApply()
if (!is.null(sink)) {
write_block(sink, sink_viewport, block_ans)
block_ans <- NULL
}
if (DelayedArray:::get_verbose_block_processing()) {
message("OK")
}
},
BPREDO = BPREDO,
BPPARAM = BPPARAM)
}
# NOTE: A mapply()-like function for conformable arrays.
# NOTE: Different from DelayedArray:::block_Mapply(); designed to have an API
# more like DelayedArray::blockArray()
# TODO: See https://github.com/Bioconductor/DelayedArray/issues/11
blockMapply <- function(FUN, ..., MoreArgs = NULL, grids = NULL,
BPREDO = list(), BPPARAM = bpparam()) {
FUN <- match.fun(FUN)
dots <- unname(list(...))
# Check conformable grids
if (is.null(grids)) {
grids <- replicate(length(dots), NULL)
}
grids <- mapply(
FUN = DelayedArray:::normarg_grid,
grids,
dots,
SIMPLIFY = FALSE,
USE.NAMES = FALSE)
grids_dims <- lapply(grids, dim)
all_same_grids_dims <- all(
vapply(X = grids_dims,
FUN = function(dim) all(dim == grids_dims[[1L]]),
FUN.VALUE = logical(1L)))
if (!all_same_grids_dims) {
stop("non-conformable grids")
}
stopifnot(length(dots) == length(grids))
nblock <- length(grids[[1]])
bplapply(seq_len(nblock), function(b) {
if (DelayedArray:::get_verbose_block_processing()) {
message("Processing block ", b, "/", nblock, " ... ",
appendLF = FALSE)
}
viewports <- lapply(grids, function(grid) grid[[b]])
blocks <- mapply(
FUN = function(x, grid, viewport) {
block <- read_block(x, viewport)
attr(block, "from_grid") <- grid
attr(block, "block_id") <- b
block
},
x = dots,
grid = grids,
viewport = viewports,
SIMPLIFY = FALSE,
USE.NAMES = FALSE)
block_ans <- do.call(FUN, c(blocks, MoreArgs))
if (DelayedArray:::get_verbose_block_processing()) {
message("OK")
}
block_ans
},
BPREDO = BPREDO,
BPPARAM = BPPARAM)
}
# NOTE: blockMapply() with the option to write the blocks to multiple 'sinks'.
# Useful, for example, to apply a function across column-blocks of
# multiple DelayedMatrix objects, write these results to disk, and then
# wrap these in a DelayedMatrix.
# NOTE: `dots_grids`, `sinks_grids`, and `sinks` should all be lists
# TODO: See https://github.com/Bioconductor/DelayedArray/issues/11
blockMapplyWithRealization <- function(FUN, ..., MoreArgs = NULL, sinks = NULL,
dots_grids = NULL, sinks_grids = NULL,
BPREDO = list(), BPPARAM = bpparam()) {
FUN <- match.fun(FUN)
dots <- unname(list(...))
# Check valid `sinks`
stopifnot(is.null(sinks) || is.list(sinks))
# Check conformable dots_grids and sinks_grids
if (is.null(dots_grids)) {
dots_grids <- replicate(length(dots), NULL)
} else {
stopifnot(is.list(dots_grids))
}
dots_grids <- mapply(
FUN = DelayedArray:::normarg_grid,
dots_grids,
dots,
SIMPLIFY = FALSE,
USE.NAMES = FALSE)
if (is.null(sinks_grids)) {
sinks_grids <- replicate(length(sinks), NULL)
} else {
stopifnot(is.list(sinks_grids))
}
sinks_grids <- mapply(
FUN = DelayedArray:::normarg_grid,
sinks_grids,
sinks,
SIMPLIFY = FALSE,
USE.NAMES = FALSE)
grids_dims <- lapply(c(dots_grids, sinks_grids), dim)
all_same_grids_dims <- all(
vapply(X = grids_dims,
FUN = function(dim) all(dim == grids_dims[[1L]]),
FUN.VALUE = logical(1L)))
if (!all_same_grids_dims) {
stop("non-conformable 'dots_grids' and 'sinks_grids'")
}
stopifnot(length(dots) == length(dots_grids),
length(sinks) == length(sinks_grids))
# Loop over blocks of `dots` and write to `sinks`
nblock <- length(dots_grids[[1]])
bplapply(seq_len(nblock), function(b) {
if (DelayedArray:::get_verbose_block_processing()) {
message("Processing block ", b, "/", nblock, " ... ",
appendLF = FALSE)
}
input_viewports <- lapply(dots_grids, function(grid) grid[[b]])
output_viewports <- lapply(sinks_grids, function(grid) grid[[b]])
blocks <- mapply(
FUN = function(x, grid, viewport) {
block <- read_block(x, viewport)
attr(block, "from_grid") <- grid
attr(block, "block_id") <- b
block
},
x = dots,
grid = dots_grids,
viewport = input_viewports,
SIMPLIFY = FALSE,
USE.NAMES = FALSE)
block_ans <- do.call(FUN, c(blocks, MoreArgs))
if (!is.list(block_ans)) {
block_ans <- list(block_ans)
}
# NOTE: This is the only part different from blockMapply()
if (!is.null(sinks)) {
mapply(function(ans, sink, viewport) {
write_block(sink, viewport, ans)
}, ans = block_ans, sink = sinks, viewport = output_viewports,
SIMPLIFY = FALSE, USE.NAMES = FALSE)
block_ans <- NULL
}
if (DelayedArray:::get_verbose_block_processing()) {
message("OK")
}
block_ans
},
BPREDO = BPREDO,
BPPARAM = BPPARAM)
}
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.