Nothing
#### Write MSI data to any file ####
## -------------------------------
writeMSIData <- function(object, file, outformat = c("imzML", "Analyze"), ...) {
path <- normalizePath(file, mustWork=FALSE)
name <- basename(file_path_sans_ext(path))
folder <- dirname(path)
outformat <- match.arg(outformat)
if ( outformat == "imzML" ) {
result <- writeImzML(object, name, folder, ...)
} else if ( outformat == "Analyze" ) {
result <- writeAnalyze(object, name, folder, ...)
} else {
.stop("only 'imzML' and 'Analyze' are supported")
}
invisible(result)
}
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.