R/source_file_paths.R

Defines functions source_file_paths

Documented in source_file_paths

#' Sources R scripts with list of file path strings
#'
#' Sources R scripts with list of file path strings
#' @param file_paths_script that path to and name of your file paths script
#' @keywords source
#' @export
#' @examples
#' source_file_paths()

source_file_paths <- function(file_paths_script = here::here("file_paths.R")){
  source(file_paths_script)
}
Kidapt/keda documentation built on Nov. 23, 2019, 3:35 a.m.