1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
|
### =========================================================================
### ArrayViewport and ArrayGrid objects
### -------------------------------------------------------------------------
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### ArrayViewport objects
###
setClass("ArrayViewport",
contains="Array",
representation(
"VIRTUAL",
refdim="integer" # Dimensions of "the reference array" i.e. the
# array on top of which the viewport is defined
# (a.k.a. "the underlying array").
)
)
### Represent a viewport that covers the whole reference array i.e. that
### has the same dimensions as the reference array.
### IMPORTANT NOTE: Unlike SafeArrayViewport objects below, the length
### of a DummyArrayViewport object (i.e. the number of array elements
### in the viewport) is allowed to be > .Machine$integer.max. This makes
### these objects **unsafe** to use in some contexts. For example a
### DummyArrayViewport object can be used to extract a sparse block
### that is too big to be handled safely:
### m0 <- sparseMatrix(i=1, j=1, x=8, dims=c(5e4, 5e4))
### block0 <- read_block(m0, DummyArrayViewport(x), as.sparse=TRUE)
### m <- as(block0, "dgCMatrix")
### m + 1
### #Error in asMethod(object) :
### # Cholmod error 'problem too large' at file ../Core/cholmod_dense.c, line 105
setClass("DummyArrayViewport", contains="ArrayViewport")
### Represent an arbitrary viewport on the reference array with the
### restriction that the length of the viewport (i.e. the number of
### array elements in the viewport) must be <= .Machine$integer.max.
### Unlike DummyArrayViewport objects above, this restriction on their
### length makes these objects always **safe** to use.
### Note that we don't extend the IRanges class because we don't want
### to inherit the full Ranges API (most operations in that API would
### do the wrong thing on SafeArrayViewport objects).
setClass("SafeArrayViewport",
contains="ArrayViewport",
representation(
ranges="IRanges" # One range per dimension.
)
)
### Validity
.validate_ArrayViewport <- function(x)
{
msg <- validate_dim_slot(x, "refdim")
if (!isTRUE(msg))
return(msg)
TRUE
}
setValidity2("ArrayViewport", .validate_ArrayViewport)
.validate_ranges_slot <- function(x)
{
x_ranges <- x@ranges
x_refdim <- x@refdim
if (length(x_ranges) != length(x_refdim))
return("'ranges' and 'refdim' slots must have the same length")
## Check that the viewport is contained in the reference array.
x_start <- start(x_ranges)
x_end <- end(x_ranges)
if (!(all(x_start >= 1L) && all(x_end <= x_refdim)))
return(paste0("object represents a viewport that is not ",
"within the bounds of the reference array"))
## A viewport cannot be longer than 2^31 - 1.
x_dim <- width(x_ranges)
if (prod(x_dim) > .Machine$integer.max)
return("a viewport cannot be longer than .Machine$integer.max")
TRUE
}
.validate_SafeArrayViewport <- function(x)
{
msg <- .validate_ranges_slot(x)
if (!isTRUE(msg))
return(msg)
TRUE
}
setValidity2("SafeArrayViewport", .validate_SafeArrayViewport)
### Getters
setGeneric("refdim", function(x) standardGeneric("refdim"))
setMethod("refdim", "ArrayViewport", function(x) x@refdim)
.dims2ranges <- function(dim) IRanges(rep.int(1L, length(dim)), dim)
setMethod("ranges", "DummyArrayViewport", function(x) .dims2ranges(refdim(x)))
setMethod("ranges", "SafeArrayViewport", function(x) x@ranges)
setMethod("start", "ArrayViewport", function(x) start(ranges(x)))
setMethod("width", "ArrayViewport", function(x) width(ranges(x)))
setMethod("end", "ArrayViewport", function(x) end(ranges(x)))
### 'width(x)' and 'dim(x)' are synonyms.
setMethod("dim", "ArrayViewport", function(x) width(ranges(x)))
### Constructors
DummyArrayViewport <- function(refdim)
new2("DummyArrayViewport", refdim=refdim, check=TRUE)
### If 'ranges' is omitted, return a viewport that covers the whole
### reference array.
ArrayViewport <- function(refdim, ranges=NULL)
{
if (is.null(ranges))
ranges <- .dims2ranges(refdim)
new2("SafeArrayViewport", refdim=refdim, ranges=ranges, check=TRUE)
}
### Show
setMethod("classNameForDisplay", "ArrayViewport", function(x) "ArrayViewport")
make_string_from_ArrayViewport <- function(viewport, dimnames=NULL,
as.2Dslice=FALSE,
collapse=",", with.brackets=FALSE)
{
if (!isTRUEorFALSE(as.2Dslice))
stop("'as.2Dslice' must be TRUE or FALSE")
if (!isTRUEorFALSE(with.brackets))
stop("'with.brackets' must be TRUE or FALSE")
viewport_ranges <- ranges(viewport)
ans <- as.character(viewport_ranges)
## Place "blank" subscripts.
viewport_dim <- dim(viewport)
viewport_refdim <- refdim(viewport)
useblank <- viewport_dim == viewport_refdim
ndim <- length(viewport_dim)
if (as.2Dslice && ndim >= 3L)
useblank[3:ndim] <- FALSE
ans[useblank] <- ""
if (!is.null(dimnames)) {
stopifnot(is.list(dimnames), length(dimnames) == ndim)
usename_idx <- which(!useblank &
viewport_dim == 1L &
lengths(dimnames) != 0L)
ans[usename_idx] <- unlist(mapply(`[`,
dimnames[usename_idx],
start(viewport_ranges)[usename_idx],
SIMPLIFY=FALSE,
USE.NAMES=FALSE))
}
if (with.brackets)
ans <- lapply(ans, function(x) if (x == "") " " else x)
ans <- paste0(ans, collapse=collapse)
if (with.brackets)
ans <- paste0("[", ans, "]")
ans
}
setMethod("show", "ArrayViewport",
function(object)
{
dim_in1string <- paste0(dim(object), collapse=" x ")
refdim_in1string <- paste0(refdim(object), collapse=" x ")
cat(dim_in1string, " ", classNameForDisplay(object), " object ",
"on a ", refdim_in1string, " array: ", sep="")
s <- make_string_from_ArrayViewport(object, with.brackets=TRUE)
cat(s, "\n", sep="")
}
)
### makeNindexFromArrayViewport()
### Used in HDF5Array!
makeNindexFromArrayViewport <- function(viewport, expand.RangeNSBS=FALSE)
{
viewport_ranges <- ranges(viewport)
viewport_dim <- dim(viewport)
viewport_refdim <- refdim(viewport)
ndim <- length(viewport_dim)
Nindex <- vector("list", length=ndim)
is_not_missing <- viewport_dim < viewport_refdim
if (expand.RangeNSBS) {
expand_idx <- which(is_not_missing)
} else {
viewport_starts <- start(viewport_ranges)
viewport_ends <- end(viewport_ranges)
is_width1 <- viewport_dim == 1L
expand_idx <- which(is_not_missing & is_width1)
RangeNSBS_idx <- which(is_not_missing & !is_width1)
Nindex[RangeNSBS_idx] <- lapply(RangeNSBS_idx,
function(i) {
range_start <- viewport_starts[[i]]
range_end <- viewport_ends[[i]]
upper_bound <- viewport_refdim[[i]]
new2("RangeNSBS", subscript=c(range_start, range_end),
upper_bound=upper_bound,
check=FALSE)
}
)
}
if (length(expand_idx) != 0L)
Nindex[expand_idx] <- as.list(as(viewport_ranges[expand_idx],
"CompressedIntegerList"))
Nindex
}
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### ArrayGrid objects
###
### An ArrayGrid object represents a grid on top of an array (called "the
### reference array" or "the underlying array"). The ArrayGrid class is a
### virtual class with 3 concrete subclasses, ArbitraryArrayGrid and
### RegularArrayGrid, for representing an arbitrarily-spaced or a
### regularly-spaced grid, respectively. The API we implement on these objects
### is divided into 3 groups of methods:
### 1) One special method:
### - refdim(x): Return the dimensions of the reference array.
### 2) Methods from the array API (an ArrayGrid object can be seen as an
### array of ArrayViewport objects that cover the reference array without
### overlapping with each others):
### - dim(x): Return the number of grid elements (i.e. viewports) along
### each dimension of the reference array.
### - x[[i_1, i_2, ..., i_n]]: Multi-dimensional double bracket
### subsetting. Return an ArrayViewport object.
### 3) Methods from the list API:
### - length(): Return the total number of grid elements.
### - x[[i]]: Linear double bracket subsetting. Return an ArrayViewport
### object.
### Groups 2) and 3) give these objects 2 semantics: array-like and list-like.
### Note that length() and "linear double bracket subsetting" are consistent
### with dim() and "multi-dimensional double bracket subsetting", respectively.
### So the array-like and list-like semantics are compatible.
###
setClass("ArrayGrid",
contains=c("Array", "List"),
representation("VIRTUAL"),
prototype(elementType="ArrayViewport")
)
setClass("DummyArrayGrid",
contains="ArrayGrid",
representation(
refdim="integer" # Dimensions of the reference array.
),
prototype(elementType="DummyArrayViewport")
)
setClass("ArbitraryArrayGrid",
contains="ArrayGrid",
representation(
tickmarks="list" # A list of integer vectors, one along each
# dimension of the reference array,
# representing the tickmarks along that
# dimension. Each integer vector must be sorted
# in ascending order.
),
prototype(elementType="SafeArrayViewport")
)
setClass("RegularArrayGrid",
contains="ArrayGrid",
representation(
refdim="integer", # Dimensions of the reference array.
spacings="integer" # Grid spacing along each dimension.
),
prototype(elementType="SafeArrayViewport")
)
### Low-level helpers
.prod2 <- function(x)
{
p <- prod(x)
## We only use .prod2() in a context where 'x' is guaranteed to contain
## non-negative values so 'p' will always be >= 0.
if (p <= .Machine$integer.max) as.integer(p) else p
}
.get_DummyArrayGrid_spacings_along <- function(x, along) x@refdim[[along]]
.get_ArbitraryArrayGrid_spacings_along <- function(x, along)
S4Vectors:::diffWithInitialZero(x@tickmarks[[along]])
.get_ArbitraryArrayGrid_max_spacings <- function(x)
{
vapply(seq_along(x@tickmarks),
function(along)
max(0L, .get_ArbitraryArrayGrid_spacings_along(x, along)),
integer(1),
USE.NAMES=FALSE
)
}
### Get length of biggest viewport in ArbitraryArrayGrid object 'x'.
.get_ArbitraryArrayGrid_maxlength <- function(x)
{
.prod2(.get_ArbitraryArrayGrid_max_spacings(x))
}
### Get length of biggest viewport in RegularArrayGrid object 'x'.
.get_RegularArrayGrid_maxlength <- function(x) .prod2(x@spacings)
get_RegularArrayGrid_dim <- function(refdim, spacings)
{
ans <- refdim %/% spacings + (refdim %% spacings != 0L)
ans[is.na(ans)] <- 1L
ans
}
.get_RegularArrayGrid_spacings_along <- function(x, along)
{
D <- x@refdim[[along]]
if (D == 0L)
return(0L)
spacing <- x@spacings[[along]]
ans <- rep.int(spacing, D %/% spacing)
r <- D %% spacing
if (r != 0L)
ans <- c(ans, r)
ans
}
### Validity
.validate_DummyArrayGrid <- function(x)
{
msg <- validate_dim_slot(x, "refdim")
if (!isTRUE(msg))
return(msg)
TRUE
}
setValidity2("DummyArrayGrid", .validate_DummyArrayGrid)
.valid_tickmarks <- function(tm)
{
is.integer(tm) && !S4Vectors:::anyMissingOrOutside(tm, 0L) && isSorted(tm)
}
.validate_ArbitraryArrayGrid <- function(x)
{
x_tickmarks <- x@tickmarks
if (!is.list(x_tickmarks))
return("'tickmarks' slot must be a list")
ok <- vapply(x_tickmarks, .valid_tickmarks, logical(1), USE.NAMES=FALSE)
if (!all(ok))
return(paste0("each list element in 'tickmarks' slot must be a ",
"sorted integer vector of non-negative values"))
x_maxlen <- .get_ArbitraryArrayGrid_maxlength(x)
if (x_maxlen > .Machine$integer.max)
return(paste0("grid is too coarse (all grid elements must have a ",
"length <= .Machine$integer.max)"))
TRUE
}
setValidity2("ArbitraryArrayGrid", .validate_ArbitraryArrayGrid)
.validate_RegularArrayGrid <- function(x)
{
msg <- validate_dim_slot(x, "refdim")
if (!isTRUE(msg))
return(msg)
msg <- validate_dim_slot(x, "spacings")
if (!isTRUE(msg))
return(msg)
x_spacings <- x@spacings
x_refdim <- x@refdim
if (length(x_spacings) != length(x_refdim))
return("'spacings' and 'refdim' slots must have the same length")
if (!all(x_spacings <= x_refdim))
return(paste0("values in 'spacings' slot must be <= their ",
"corresponding value in 'refdim' slot"))
if (any(x_spacings == 0L & x_refdim != 0L))
return(paste0("values in 'spacings' slot cannot be 0 unless their ",
"corresponding value in 'refdim' slot is also 0"))
x_maxlen <- .get_RegularArrayGrid_maxlength(x)
if (x_maxlen > .Machine$integer.max)
return(paste0("grid is too coarse (all grid elements must have a ",
"length <= .Machine$integer.max)"))
TRUE
}
setValidity2("RegularArrayGrid", .validate_RegularArrayGrid)
### Getters
setMethod("refdim", "DummyArrayGrid", function(x) x@refdim)
setMethod("refdim", "ArbitraryArrayGrid",
function(x)
{
mapply(
function(tm, tm_len) if (tm_len == 0L) 0L else tm[[tm_len]],
x@tickmarks,
lengths(x@tickmarks),
USE.NAMES=FALSE
)
}
)
setMethod("refdim", "RegularArrayGrid", function(x) x@refdim)
setMethod("dim", "DummyArrayGrid", function(x) rep.int(1L, length(refdim(x))))
setMethod("dim", "ArbitraryArrayGrid", function(x) lengths(x@tickmarks))
setMethod("dim", "RegularArrayGrid",
function(x) get_RegularArrayGrid_dim(refdim(x), x@spacings)
)
### Constructors
DummyArrayGrid <- function(refdim)
{
if (!is.numeric(refdim))
stop(wmsg("'refdim' must be an integer vector"))
if (!is.integer(refdim))
refdim <- as.integer(refdim)
new2("DummyArrayGrid", refdim=refdim, check=TRUE)
}
ArbitraryArrayGrid <- function(tickmarks)
{
if (!is.list(tickmarks))
stop(wmsg("'tickmarks' must be a list"))
new2("ArbitraryArrayGrid", tickmarks=tickmarks, check=TRUE)
}
### Note that none of the dimensions of an RegularArrayGrid object can be 0,
### even when some dimensions of the reference array are 0 (in which case,
### the corresponding dimensions of the grid object are set to 1). As a
### consequence, an RegularArrayGrid object always contains at least 1 grid
### element. Each dimension of the first grid element is always equal to the
### spacing along that dimension i.e. for any RegularArrayGrid object,
### 'dim(grid[[1]])' is identical to 'spacings'.
### If 'spacings' is omitted, return a grid with a single grid element
### covering the whole reference array.
RegularArrayGrid <- function(refdim, spacings=refdim)
{
if (!is.numeric(refdim))
stop(wmsg("'refdim' must be an integer vector"))
if (!is.integer(refdim))
refdim <- as.integer(refdim)
if (!is.numeric(spacings))
stop(wmsg("'spacings' must be an integer vector"))
if (!is.integer(spacings))
spacings <- as.integer(spacings)
if (length(refdim) != length(spacings))
stop(wmsg("'refdim' and 'spacings' must have the same length"))
new2("RegularArrayGrid", refdim=refdim, spacings=spacings, check=TRUE)
}
### [[
setMethod("getArrayElement", "DummyArrayGrid",
function(x, subscripts)
{
stopifnot(is.integer(subscripts),
identical(subscripts, rep.int(1L, length(subscripts))))
DummyArrayViewport(refdim(x))
}
)
setMethod("getArrayElement", "ArbitraryArrayGrid",
function(x, subscripts)
{
stopifnot(is.integer(subscripts))
x_refdim <- refdim(x)
ans_end <- mapply(`[[`, x@tickmarks, subscripts, USE.NAMES=FALSE)
ans_width <- mapply(
function(along, i)
.get_ArbitraryArrayGrid_spacings_along(x, along)[[i]],
seq_along(x_refdim),
subscripts,
USE.NAMES=FALSE
)
ans_ranges <- IRanges(end=ans_end, width=ans_width)
ArrayViewport(x_refdim, ans_ranges)
}
)
setMethod("getArrayElement", "RegularArrayGrid",
function(x, subscripts)
{
stopifnot(is.integer(subscripts))
x_refdim <- refdim(x)
ans_offset <- (subscripts - 1L) * x@spacings
ans_end <- pmin(ans_offset + x@spacings, refdim(x))
ans_ranges <- IRanges(start=ans_offset + 1L, end=ans_end)
ArrayViewport(x_refdim, ans_ranges)
}
)
### dims() and lengths()
### NOT exported.
setGeneric("get_spacings_along", signature="x",
function(x, along) standardGeneric("get_spacings_along")
)
setMethod("get_spacings_along", "DummyArrayGrid",
.get_DummyArrayGrid_spacings_along
)
setMethod("get_spacings_along", "ArbitraryArrayGrid",
.get_ArbitraryArrayGrid_spacings_along
)
setMethod("get_spacings_along", "RegularArrayGrid",
.get_RegularArrayGrid_spacings_along
)
### Equivalent to 't(vapply(x, dim, refdim(x)))' but faster.
setMethod("dims", "ArrayGrid",
function(x)
{
ans <- as.matrix(get_spacings_along(x, 1L))
x_ndim <- length(refdim(x))
if (x_ndim >= 2L) {
for (along in 2:x_ndim) {
spacings_along <- get_spacings_along(x, along)
ans <- cbind(
S4Vectors:::rep.int_along_ROWS(ans, length(spacings_along)),
rep(spacings_along, each=nrow(ans))
)
}
}
ans
}
)
### Equivalent to 'vapply(x, length, integer(1))' or to 'rowProds(dims(x))'
### but faster.
### The sum of the hyper-volumes of all the grid elements should be equal
### to the hyper-volume of the reference array.
### More concisely: sum(lengths(x)) should be equal to 'prod(refdim(x))'.
setMethod("lengths", "ArrayGrid",
function(x, use.names=TRUE)
{
ans <- get_spacings_along(x, 1L)
x_ndim <- length(refdim(x))
if (x_ndim >= 2L) {
for (along in 2:x_ndim) {
spacings_along <- get_spacings_along(x, along)
ans <- ans * rep(spacings_along, each=length(ans))
}
}
ans
}
)
setMethod("lengths", "DummyArrayGrid",
function(x, use.names=TRUE) .prod2(refdim(x))
)
### Equivalent to 'max(lengths(x))' except that when 'x' is an ArrayGrid
### object this can be computed without computing 'lengths(x)' first so is
### very efficient.
setGeneric("maxlength", function(x) standardGeneric("maxlength"))
setMethod("maxlength", "ANY", function(x) max(lengths(x)))
setMethod("maxlength", "ArbitraryArrayGrid", .get_ArbitraryArrayGrid_maxlength)
setMethod("maxlength", "RegularArrayGrid", .get_RegularArrayGrid_maxlength)
### Show
### S3/S4 combo for as.character.ArrayGrid
.as.character.ArrayGrid <- function(x, collapse=",", with.brackets=FALSE)
{
data <- vapply(x,
function(viewport)
make_string_from_ArrayViewport(viewport,
collapse=collapse,
with.brackets=with.brackets),
character(1),
USE.NAMES=FALSE
)
array(data, dim(x))
}
as.character.ArrayGrid <- function(x, ...) .as.character.ArrayGrid(x, ...)
setMethod("as.character", "ArrayGrid", .as.character.ArrayGrid)
setMethod("show", "ArrayGrid",
function(object)
{
if (!is(object, "DummyArrayGrid")) {
dim_in1string <- paste0(dim(object), collapse=" x ")
cat(dim_in1string, " ")
}
refdim_in1string <- paste0(refdim(object), collapse=" x ")
cat(class(object), " object on a ", refdim_in1string, " array:\n",
sep="")
## Turn 'object' into a character array.
print(as.character(object, with.brackets=TRUE),
quote=FALSE, right=TRUE)
}
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### aperm()
###
### Like aperm2() in S4Arrays, the methods below extend base::aperm() by
### allowing dropping and/or adding ineffective dimensions.
###
### NOTE: The methods below use normarg_perm() which doesn't perform a
### full check of 'perm' e.g. it allows duplicates in it (see normarg_perm()
### in aperm2.R). Instead we call replaceSlots() with 'check=TRUE' to trigger
### validation of the modified ArrayGrid object with the expectation that it
### will fail if for example 'perm' contains NAs or values > length(dim(a)).
.aperm.DummyArrayGrid <- function(a, perm)
{
perm <- normarg_perm(perm, dim(a))
ans_refdim <- a@refdim[perm]
ans_refdim[is.na(perm)] <- 1L
## See above NOTE for why it's important to call replaceSlots()
## with 'check=TRUE'.
BiocGenerics:::replaceSlots(a, refdim=ans_refdim, check=TRUE)
}
### S3/S4 combo for aperm.DummyArrayGrid
aperm.DummyArrayGrid <-
function(a, perm, ...) .aperm.DummyArrayGrid(a, perm, ...)
setMethod("aperm", "DummyArrayGrid", aperm.DummyArrayGrid)
.aperm.ArbitraryArrayGrid <- function(a, perm)
{
perm <- normarg_perm(perm, dim(a))
ans_tickmarks <- a@tickmarks[perm]
ans_tickmarks[is.na(perm)] <- list(1L)
## See above NOTE for why it's important to call replaceSlots()
## with 'check=TRUE'.
BiocGenerics:::replaceSlots(a, tickmarks=ans_tickmarks, check=TRUE)
}
### S3/S4 combo for aperm.ArbitraryArrayGrid
aperm.ArbitraryArrayGrid <-
function(a, perm, ...) .aperm.ArbitraryArrayGrid(a, perm, ...)
setMethod("aperm", "ArbitraryArrayGrid", aperm.ArbitraryArrayGrid)
.aperm.RegularArrayGrid <- function(a, perm)
{
perm <- normarg_perm(perm, dim(a))
ans_refdim <- a@refdim[perm]
ans_refdim[is.na(perm)] <- 1L
ans_spacings <- a@spacings[perm]
ans_spacings[is.na(perm)] <- 1L
## See above NOTE for why it's important to call replaceSlots()
## with 'check=TRUE'.
BiocGenerics:::replaceSlots(a, refdim=ans_refdim,
spacings=ans_spacings,
check=TRUE)
}
### S3/S4 combo for aperm.RegularArrayGrid
aperm.RegularArrayGrid <-
function(a, perm, ...) .aperm.RegularArrayGrid(a, perm, ...)
setMethod("aperm", "RegularArrayGrid", aperm.RegularArrayGrid)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### downsample() generic and methods
###
### Reduce the "resolution" of a grid by the specified ratio.
### Act as an endomorphism.
###
setGeneric("downsample", signature="x",
function(x, ratio=1L) standardGeneric("downsample")
)
.normarg_ratio <- function(ratio, x_dim)
{
if (!is.numeric(ratio))
stop(wmsg("'ratio' must be an integer vector"))
if (!is.integer(ratio))
ratio <- as.integer(ratio)
ndim <- length(x_dim)
if (length(ratio) != 1L && length(ratio) != ndim)
stop(wmsg("'length(ratio)' must be 1 or the sane as 'length(dim(x))'"))
if (S4Vectors:::anyMissingOrOutside(ratio, 0L))
stop(wmsg("'ratio' cannot contain negative or NA values"))
if (length(ratio) != ndim)
ratio <- rep.int(ratio, ndim)
if (any(ratio == 0L & x_dim != 0L))
stop(wmsg("values in 'ratio' cannot be 0 unless their ",
"corresponding dimension in 'x' is also 0"))
ratio
}
setMethod("downsample", "ArbitraryArrayGrid",
function(x, ratio=1L)
{
ratio <- .normarg_ratio(ratio, dim(x))
ans_tickmarks <- mapply(
function(tm, tm_len, r) {
if (tm_len == 0L)
return(integer(0))
tm[seq2(tm_len, r)]
},
x@tickmarks,
lengths(x@tickmarks),
ratio,
SIMPLIFY=FALSE,
USE.NAMES=FALSE
)
ArbitraryArrayGrid(ans_tickmarks)
}
)
setMethod("downsample", "RegularArrayGrid",
function(x, ratio=1L)
{
ratio <- .normarg_ratio(ratio, dim(x))
x_refdim <- refdim(x)
## We turn 'ratio' into a double vector to prevent a potential
## integer overflow.
ans_spacings <- pmin(x@spacings * as.double(ratio), x_refdim)
RegularArrayGrid(x_refdim, ans_spacings)
}
)
|