Nothing
#### Methods for MSProcessedImagingSpectraList ####
## ------------------------------------------------
MSProcessedImagingSpectraList <- function(data) {
if ( !is(data, "SimpleList") ) {
if ( is.list(data) || !is.null(dim(data)) ) {
data <- SimpleList(data)
} else {
stop("'data' must be a SimpleList, list or matrix")
}
}
if ( is.null(names(data)) ) {
inames <- .format.numbered("intensity", length(data))
names(data) <- inames
}
object <- .to_MSProcessedImagingSpectraList(data)
if ( validObject(object) )
object
}
.valid.MSProcessedImagingSpectraList <- function(object) {
errors <- NULL
data <- as(object, "SimpleList", strict=FALSE)
classes_ok <- sapply(data, function(x) inherits(x, "sparse_matc"))
if ( length(data) > 0 && !all(classes_ok) )
errors <- c(errors , "elements must be of class 'sparse_matc'")
if ( is.null(errors) ) TRUE else errors
}
setValidity("MSProcessedImagingSpectraList",
.valid.MSProcessedImagingSpectraList)
setMethod("[", "MSProcessedImagingSpectraList",
function(x, i, j, ..., drop = NULL) {
if ( is.logical(drop) )
x <- .SimpleImageArrayList(x)
.subsetSimpleImageArrayList(x, i, j, drop)
})
setReplaceMethod("[[", "MSProcessedImagingSpectraList",
function(x, i, j, ..., value) {
if ( !inherits(value, "sparse_matc") )
x <- .SimpleImageArrayList(x)
callNextMethod(x, i=i, ..., value=value)
})
.to_MSProcessedImagingSpectraList <- function(from, mz) {
fun <- function(x) {
if ( !inherits(x, "sparse_matc") ) {
tol <- c(absolute=min(abs(diff(mz))) / 2)
keys <- rep_vt(list(mz), length.out=ncol(x))
if ( inherits(x, "matter_matc") ) {
values <- as(x, "matter_list")
} else {
values <- lapply(seq_len(ncol(x)), function(i) x[,i])
}
x <- sparse_mat(list(keys=keys, values=values),
nrow=nrow(x), ncol=ncol(x), keys=mz,
tolerance=tol, combiner="sum")
}
x
}
data <- as(from, "SimpleList", strict=FALSE)
as(endoapply(data, fun), "MSProcessedImagingSpectraList")
}
# manipulate underlying sparse spectra data
setMethod("keys", "MSProcessedImagingSpectraList",
function(object) keys(object[[1L]]))
setReplaceMethod("keys", "MSProcessedImagingSpectraList",
function(object, value) {
fun <- function(x) {
keys(x) <- value
x
}
data <- as(object, "SimpleList", strict=FALSE)
as(endoapply(data, fun), class(object))
})
setMethod("tolerance", "MSProcessedImagingSpectraList",
function(object) tolerance(object[[1L]]))
setReplaceMethod("tolerance", "MSProcessedImagingSpectraList",
function(object, value) {
fun <- function(x) {
tolerance(x) <- value
x
}
data <- as(object, "SimpleList", strict=FALSE)
as(endoapply(data, fun), class(object))
})
setMethod("combiner", "MSProcessedImagingSpectraList",
function(object) combiner(object[[1L]]))
setReplaceMethod("combiner", "MSProcessedImagingSpectraList",
function(object, value) {
fun <- function(x) {
combiner(x) <- value
x
}
data <- as(object, "SimpleList", strict=FALSE)
as(endoapply(data, fun), class(object))
})
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.