R/version.R

Defines functions versions

Documented in versions

#' BioCompute Object specification versions
#'
#' @return List of current and all available BioCompute Object
#' specification versions supported by the package.
#'
#' @export versions
#'
#' @examples
#' versions()
versions <- function() {
  current <- "1.4.2"
  available <- c("1.4.2")
  list(
    "current" = current,
    "available" = available
  )
}

Try the biocompute package in your browser

Any scripts or data that you put into this service are public.

biocompute documentation built on May 3, 2022, 9:08 a.m.