Nothing
## TODO getters and setters for MIAPE-MS data
##################################################################
## Methods for MIAPE class
setMethod("show", "MIAPE", function(object) {
show_MIAPE(object)
invisible(NULL)
})
setMethod("msInfo", "MIAPE",
function(object) msInfo_MIAPE(object))
setMethod("abstract", "MIAPE", function(object) object@abstract)
setMethod("samples", "MIAPE", function(object) object@samples)
setMethod("pubMedIds", "MIAPE", function(object) object@pubMedIds)
setReplaceMethod("pubMedIds", "MIAPE", function(object,value){
object@pubMedIds = value
object
})
setMethod("expemail", "MIAPE", function(object) object@email)
setMethod("exptitle", "MIAPE", function(object) object@title)
setMethod("ionSource", "MIAPE", function(object) object@ionSource)
setMethod("ionSourceDetails", "MIAPE", function(object) object@ionSourceDetails)
setMethod("analyser", "MIAPE", function(object) object@analyser)
setMethod("analyzer", "MIAPE", function(object) object@analyser)
setMethod("analyzerDetails", "MIAPE", function(object) object@analyserDetails)
setMethod("analyserDetails", "MIAPE", function(object) object@analyserDetails)
setMethod("detectorType", "MIAPE", function(object) object@detectorType)
setMethod("instrumentModel", "MIAPE", function(object) object@instrumentModel)
setMethod("instrumentManufacturer", "MIAPE", function(object) object@instrumentManufacturer)
setMethod("instrumentCustomisations", "MIAPE", function(object) object@instrumentCustomisations)
setReplaceMethod("pubMedIds", "MIAPE", function(object, value){
object@pubMedIds = value
object
})
setMethod("otherInfo", "MIAPE", function(object) object@other)
setMethod("expinfo", "MIAPE",
function(object) {
tmp <- c(object@name, object@lab, object@contact,
object@email, object@title, object@url)
names(tmp) <- c("name","lab","contact",
"email", "title","url")
return(tmp)
}
)
setMethod("notes", signature(object="MIAPE"),
function(object) object@other)
setReplaceMethod("notes", signature(object="MIAPE", value="list"),
function(object, value) {
object@other <- value
object
})
setReplaceMethod("notes", signature(object="MIAPE", value="character"),
function(object, value) {
object@other <- append(object@other, value)
object
})
## Adapted from Biobase::combine("MIAME", "MIAME")
setMethod("combine",
c("MIAPE", "MIAPE"),
function(x, y, ...) {
if (identical(x,y))
return (x)
for (sl in names(getSlots(class(x)))) {
if (identical(slot(x, sl),slot(y, sl)))
next
slot(x, sl) <-
switch(sl,
## multiple elements possible
## shared slots with MIAME
name = ,
lab = ,
contact = ,
title = ,
url = ,
pubMedIds = ,
samples = ,
hybridizations = ,
normControls = ,
preprocessing = ,
other = ,
## MIAPE specific
dataStamp = ,
instrumentModel = ,
instrumentManufacturer = ,
instrumentCustomisations = ,
softwareName = ,
softwareVersion = ,
switchingCriteria = ,
isolationWidth = ,
parameterFile = ,
ionSource = ,
ionSourceDetails = ,
analyser = ,
analyserDetails = ,
collisionGas = ,
collisionPressure = ,
collisionEnergy = ,
detectorType = ,
detectorSensitivity = {
c(slot(x, sl), slot(y, sl))
},
## just a single entry
abstract = {
paste(slot(x, sl), slot(y, sl), collapse = "\n")
},
.__classVersion__ = {
stop("'MIAPE' objects have different class version strings")
},
## unknown
{
warning("\n unknown or conflicting information in MIAPE field '",
sl,"'; using information from first object 'x'")
slot(x, sl)
})
}
if (validObject(x))
return(x)
})
setAs("MIAPE", "MIAME",
function (from)
new("MIAME",
name = from@name,
lab = from@lab,
contact = from@contact,
title = from@title,
abstract = from@abstract,
url = from@url,
pubMedIds = from@pubMedIds,
samples = from@other))
as.MIAME.MIAPE <- function(x) as(x,"MIAME")
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.