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
  )
}
sbg/biocompute documentation built on June 11, 2024, 6:16 a.m.