Nothing
#' @describeIn MultiDataSet Get sample names
#' @aliases MultiDataSet-methods
setMethod(
f = "sampleNames",
signature = "MultiDataSet",
definition = function(object) {
tables <- names(object)
if (is.null(tables)){
return(NULL)
}
## CHECK THAT WE RETURN CHARACTER, NOT FACTOR!
res <- lapply(tables, function(x) as.character(object@phenoData[[x]]$main$id))
names(res) <- tables
res
}
)
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.