Nothing
# Exported classes -------------------------------------------------------------
setClass(
"methDataSet",
contains = "SummarizedExperiment"
)
# Exported functions -----------------------------------------------------------
methDataSet <- function(Meth = new("matrix"), Unmeth = new("matrix"),
rowData=new("DataFrame"),...) {
assays <- SimpleList(Meth = Meth, Unmeth = Unmeth)
metadata <- list(preprocessMethod="")
new("methDataSet",
SummarizedExperiment(assays = assays, metadata=metadata,
rowData=rowData,...)
)
}
# Exported methods -------------------------------------------------------------
setMethod("show", signature(object = "methDataSet"), function(object) {
callNextMethod()
cat("PreprocessMethod: ", metadata(object)$preprocessMethod,"\n")
})
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.