R/input_path.R

Defines functions input_path

Documented in input_path

# Copyright (C) 2022 by Higher Expectations for Racine County

#' Define a subfolder of the runtime environment's DATA_PATH
#'
#' @param ... path components
#'
#' @return a path to a file or directory
#' @export
input_path <- function(...){
    path.expand(
        file.path(Sys.getenv("DATA_PATH"),
                  ...)
    )
}
higherX4Racine/hiRx documentation built on Nov. 18, 2024, 10:20 a.m.