R/pathFounder.R

Defines functions srcpath datapath libpath

# path founder @shinyStat
#
# Aims to match the architecture of the project
#
# elh

srcpath <- function(dir = "", file = "")
{
  return(paste0("R/", dir, file))
}

datapath <- function(file="")
{
  return(paste0("data/", file))
}

libpath <- function(s)
{
  return(paste0("libs/", s))
}
gaspardcc/PMMMF documentation built on May 7, 2019, 3:14 p.m.