R/path_to_fabrika.R

Defines functions path_to_fabrika_hpc path_to_fabrika_local

Documented in path_to_fabrika_hpc path_to_fabrika_local

#' Path to `fabrika` on a local computer
#'
#' @details This path is hard encoded to the path on my personal computer but
#' can be overwritten with [write_path_to_fabrika_local()].
#'
#' @export
path_to_fabrika_local <- function() {
  path_local <- "/Users/theo/Github/fabrika/"
  return(path_local)
}

#' Path to `fabrika` on the Peregrine HPC
#'
#' @export
path_to_fabrika_hpc <- function() {
  "/data/p282688/fabrika/"
}
TheoPannetier/fabrika documentation built on Nov. 23, 2022, 8:18 a.m.