R/get_default_paths.R

Defines functions get_default_paths

Documented in get_default_paths

#' @title Get default paths
#'
#' @description This function gets default paths
#'
#' @param yaml The YAML file containing the paths
#'   (default is "paths.yaml")
#'
#' @return A list containing the paths specified in the YAML file
#'
#' @export
#'
#' @examples
#' \dontrun{
#' get_default_paths()
#' }
get_default_paths <- function(
  yaml = system.file("paths.yaml", package = "tima")
) {
  return(yaml::read_yaml(file = yaml))
}
taxonomicallyinformedannotation/tima-r documentation built on June 1, 2025, 8:10 p.m.