R/build_data_path.R

Defines functions build_data_path

build_data_path <- function(destination){

  assertthat::assert_that(
    inherits(destination, "character"),
    msg = "build_data_path: destination argument must be a character vector."
  )

  R.utils::getAbsolutePath(destination)

}
ThomUK/MSDSpipeline documentation built on Oct. 31, 2022, 7:58 a.m.