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
|
### =========================================================================
### Assays objects
### -------------------------------------------------------------------------
###
### The Assays API consists of:
### (a) The Assays() constructor function.
### (b) Lossless back and forth coercion from/to SimpleList. The coercion
### method from SimpleList doesn't need (and should not) validate the
### returned object.
### (c) length, names, names<-, [[, [[<-, dim, [, [<-, rbind, cbind
###
### An Assays concrete subclass needs to implement (b) (required) plus
### optionally any of the methods in (c).
###
### IMPORTANT: Methods that return a modified Assays object (a.k.a.
### endomorphisms), that is, [ as well as replacement methods names<-, [[<-,
### and [<-, must respect the copy-on-change contract. With objects that
### don't make use of references internally, the developer doesn't need to
### take any special action for that because it's automatically taken care of
### by R itself. However, for objects that do make use of references internally
### (e.g. environments, external pointers, pointer to a file on disk, etc...),
### the developer needs to be careful to implement endomorphisms with
### copy-on-change semantics. This can easily be achieved (and is what the
### default methods for Assays objects do) by performaing a full (deep) copy
### of the object before modifying it instead of trying to modify it in-place.
### Note that the full (deep) copy is not always necessary in order to achieve
### copy-on-change semantics: it's enough (and often preferrable for
### performance reasons) to copy only the parts of the objects that need to
### be modified.
###
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Assays class
###
setClass("Assays")
### Validity
.valid.Assays <- function(x)
{
assays <- as(x, "SimpleList", strict=FALSE)
if (!is(assays, "SimpleList"))
return("'assays' must be a SimpleList object")
if (length(assays) == 0L)
return(NULL)
## Check dims.
all_dims <- sapply(assays, function(assay) dim(assay)[1:2])
if (any(is.na(all_dims)))
return(wmsg("all assays must be matrix-like objects ",
"with 2 (or more?) dimensions"))
if (!all(all_dims == all_dims[ , 1L]))
stop("all assays must have the same nrow and ncol")
NULL
}
setValidity2("Assays", .valid.Assays)
### Constructor
.normarg_assays <- function(assays)
{
if (!is(assays, "SimpleList")) {
if (is.list(assays) || is.array(assays)) {
assays <- SimpleList(assays)
} else {
stop("'assays' must be a SimpleList, list or array")
}
}
assays
}
Assays <- function(assays=SimpleList())
{
assays <- .normarg_assays(assays)
#ans <- as(assays, "SimpleListAssays")
ans <- as(assays, "ShallowSimpleListAssays")
#ans <- as(assays, "AssaysInEnv") # a *broken* alternative
validObject(ans)
ans
}
### Accessors
.SL_get_length <- selectMethod("length", "SimpleList")
setMethod("length", "Assays",
function(x)
{
assays <- as(x, "SimpleList", strict=FALSE)
.SL_get_length(assays)
}
)
.SL_get_names <- selectMethod("names", "SimpleList")
setMethod("names", "Assays",
function(x)
{
assays <- as(x, "SimpleList", strict=FALSE)
.SL_get_names(assays)
}
)
.SL_set_names <- selectMethod("names<-", "SimpleList")
setReplaceMethod("names", "Assays",
function(x, value)
{
assays <- as(x, "SimpleList", strict=FALSE)
assays <- .SL_set_names(assays, value)
as(assays, class(x))
}
)
setMethod("[[", "Assays",
function(x, i, j, ...)
{
assays <- as(x, "SimpleList", strict=FALSE)
getListElement(assays, i)
}
)
setReplaceMethod("[[", "Assays",
function(x, i, j, ..., value)
{
assays <- as(x, "SimpleList", strict=FALSE)
assays <- setListElement(assays, i, value)
ans <- as(assays, class(x))
validObject(ans)
ans
}
)
setMethod("dim", "Assays",
function(x)
{
if (length(x) == 0L)
return(c(0L, 0L))
dim(x[[1L]])
}
)
### 2D-Subsetting
.extract_Assays_subset <- function(x, i, j)
{
## need to expand Rle's for subsetting standard matrix
if (!missing(i) && !missing(j)) {
fun <- function(x) {
switch(length(dim(x)),
stop("'[' on assays() with 1 dimension not supported"),
x[i, j, drop=FALSE],
x[i, j, , drop=FALSE],
x[i, j, , , drop=FALSE],
stop("'[' on assays() with >4 dimensions not supported"))
}
} else if (!missing(i)) {
fun <- function(x) {
switch(length(dim(x)),
stop("'[' on assays() with 1 dimension not supported"),
x[i, , drop=FALSE],
x[i, , , drop=FALSE],
x[i, , , , drop=FALSE],
stop("'[' on assays() with >4 dimensions not supported"))
}
} else if (!missing(j)) {
fun <- function(x) {
switch(length(dim(x)),
stop("'[' on assays() with 1 dimension not supported"),
x[, j, drop=FALSE],
x[, j, , drop=FALSE],
x[, j, , , drop=FALSE],
stop("'[' on assays() with >4 dimensions not supported"))
}
}
assays <- as(x, "SimpleList", strict=FALSE)
as(endoapply(assays, fun), class(x))
}
setMethod("[", "Assays",
function(x, i, j, ..., drop=TRUE) .extract_Assays_subset(x, i, j)
)
.replace_Assays_subset <- function(x, i, j, value)
{
## need to expand Rle's for subsetting standard matrix
if (!missing(i) && !missing(j)) {
fun <- function(x, value) {
switch(length(dim(x)),
stop("'[<-' on assays() with 1 dimension not supported"),
x[i, j] <- value,
x[i, j, ] <- value,
x[i, j, , ] <- value,
stop("'[<-' on assays() with >4 dimensions not supported"))
x
}
} else if (!missing(i)) {
fun <- function(x, value) {
switch(length(dim(x)),
stop("'[<-' on assays() with 1 dimension not supported"),
x[i, ] <- value,
x[i, , ] <- value,
x[i, , , ] <- value,
stop("'[<-' on assays() with >4 dimensions not supported"))
x
}
} else if (!missing(j)) {
fun <- function(x, value) {
switch(length(dim(x)),
stop("'[<-' on assays() with 1 dimension not supported"),
x[, j] <- value,
x[, j, ] <- value,
x[, j, , ] <- value,
stop("'[<-' on assays() with >4 dimensions not supported"))
x
}
}
a <- as(x, "SimpleList", strict=FALSE)
v <- as(value, "SimpleList", strict=FALSE)
as(mendoapply(fun, x=a, value=v), class(x))
}
setReplaceMethod("[", "Assays",
function(x, i, j, ..., value) .replace_Assays_subset(x, i, j, value)
)
### rbind/cbind
### 'assays' is assumed to be an unnamed list of length >= 1
.bind_assays <- function(assays, along.cols=FALSE)
{
if (length(dim(assays[[1L]])) == 2L) {
BINDING_FUN <- if (along.cols) "cbind" else "rbind"
} else {
BINDING_FUN <- if (along.cols) "acbind" else "arbind"
}
do.call(BINDING_FUN, assays)
}
.bind_Assays_objects <- function(objects, along.cols=FALSE)
{
if (length(objects) == 0L)
return(Assays())
lens <- sapply(objects, length)
if (length(unique(lens)) != 1)
stop("the objects to bind must have the same number of assays")
len1 <- lens[1L]
if (len1 == 0L)
return(Assays())
var <- lapply(objects, names)
uvar <- unique(unlist(var))
if (is.null(uvar)) {
## no names, match by position
res <- lapply(seq_len(len1), function(index) {
assays <- lapply(objects, "[[", index)
.bind_assays(assays, along.cols=along.cols)
})
} else {
## match by name
ok <- all(vapply(var, function(x, y) identical(sort(x), y),
logical(1), sort(uvar)))
if (!ok)
stop("assays must have the same names()")
res <- lapply(uvar, function(index) {
assays <- lapply(objects, "[[", index)
.bind_assays(assays, along.cols=along.cols)
})
names(res) <- uvar
}
as(SimpleList(res), class(objects[[1L]]))
}
setMethod("rbind", "Assays",
function(..., deparse.level=1)
{
objects <- unname(list(...))
.bind_Assays_objects(objects, along.cols=FALSE)
}
)
setMethod("cbind", "Assays",
function(..., deparse.level=1)
{
objects <- unname(list(...))
.bind_Assays_objects(objects, along.cols=TRUE)
}
)
### Having "arbind" and "acbind" methods for Matrix objects will make rbind()
### and cbind() work on Assays objects with Matrix list elements.
### Maybe these methods should be defined next to the arbind() and acbind()
### generics (which are defined in the IRanges package) but that would require
### to make IRanges depend on the Matrix package.
setMethod("arbind", "Matrix", function(...) rbind(...))
setMethod("acbind", "Matrix", function(...) cbind(...))
### updateObject
.updateObject_Assays <- function(object, ..., verbose=FALSE)
{
assays <- as(object, "SimpleList", strict=FALSE)
as(endoapply(assays,
function(assay) updateObject(assay, ..., verbose=verbose)),
class(object))
}
setMethod("updateObject", "Assays", .updateObject_Assays)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### SimpleListAssays class
###
### The order of inheritance is important: first Assays, then SimpleList!
setClass("SimpleListAssays", contains=c("Assays", "SimpleList"))
### Lossless back and forth coercion from/to SimpleList are automatically
### taken care of by automatic methods defined by the methods package.
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### ShallowSimpleListAssays class
###
### We implement the REQUIRED coercions only.
###
.ShallowData <- setRefClass("ShallowData",
fields = list( data = "ANY" ))
.ShallowSimpleListAssays0 <- setRefClass("ShallowSimpleListAssays",
fields = list( data = "SimpleList" ),
contains = c("ShallowData", "Assays"))
setAs("SimpleList", "ShallowSimpleListAssays",
function(from) .ShallowSimpleListAssays0(data=from)
)
setAs("ShallowSimpleListAssays", "SimpleList", function(from) from$data)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### AssaysInEnv class
###
### A *broken* alternative to ShallowSimpleListAssays that does NOT respect
### the copy-on-change contract (only provided for illustration purposes).
###
### We implement the REQUIRED coercions plus OPTIONAL methods: length, names,
### names<-, [[, and [[<-.
###
setClass("AssaysInEnv",
contains="Assays",
representation(envir="environment")
)
.NAMES_SYMBOL <- ".names" # must begin with a . so is ommitted by ls()
setMethod("length", "AssaysInEnv", function(x) length(x@envir) - 1L)
setMethod("names", "AssaysInEnv", function(x) x@envir[[.NAMES_SYMBOL]])
### Does NOT respect the copy-on-change contract!
setReplaceMethod("names", "AssaysInEnv",
function(x, value)
{
value <- S4Vectors:::normalize_names_replacement_value(value, x)
x@envir[[.NAMES_SYMBOL]] <- value
x
}
)
setMethod("[[", "AssaysInEnv",
function(x, i, j, ...)
{
key <- setNames(ls(x@envir, sorted=TRUE), names(x))[[i]]
get(key, envir=x@envir)
}
)
### Does NOT respect the copy-on-change contract!
setReplaceMethod("[[", "AssaysInEnv",
function(x, i, j, ..., value)
{
key <- setNames(ls(x@envir, sorted=TRUE), names(x))[[i]]
assign(key, value, envir=x@envir)
x
}
)
setAs("SimpleList", "AssaysInEnv",
function(from)
{
from <- as.list(from)
from_names <- names(from)
keys <- paste(sprintf("%09d", seq_along(from)), from_names, sep=":")
names(from) <- keys
envir <- list2env(from, parent=emptyenv())
envir[[.NAMES_SYMBOL]] <- from_names
new("AssaysInEnv", envir=envir)
}
)
setAs("AssaysInEnv", "SimpleList",
function(from)
SimpleList(setNames(as.list(from@envir, sorted=TRUE), names(from)))
)
|