Nothing
#' @docType methods
#' @rdname toffset-methods
#' @title Extract Image toffset attribute
#' @name toffset-methods
#' @description Gets toffset from a character
#' @aliases toffset,character-method
#' @param object is a filename to pass to \link{fslval}
#' @import oro.nifti
#' @export
setMethod("toffset", "character", function(object) {
object = path.expand(object)
stopifnot(file.exists(object))
res = fslval(object, keyword = "time_offset", verbose = FALSE)
res = (res)
return(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.