inst/appinformation/startup_script.R

# Startup script
# called at beginning of each documentation Rmd file
# sets various variables, so they don't need to be
# retyped each time

#*************************************
#general setup to define package and get path locations
#all paths are inside the package and retrieved with system.file
packagename = "DSAIRM"
helperdir = "auxiliary/helperfunctions"
mbmodeldir = "mbmodels"
figuredir = "media"
appdocdir = "appinformation"
#*************************************
#Note: for this to process/knit, several helper functions need to be available (sourced) first
#those are in the inst/helperfunctions folder
#Note: in general, the "processing-script.R" should be used to produce the html docs
#manual knitting of each doc only during development/testing
#*************************************
# get_settings.R reads settings from apptable.tsv
# write_tasktext.R writes the text for all tasks into the Rmd/Html file
filenames = c("get_settings.R","write_tasktext.R")
files_to_source = paste(here::here(),helperdir,filenames,sep="/")
#source these files
sapply(files_to_source, source)

Try the DSAIRM package in your browser

Any scripts or data that you put into this service are public.

DSAIRM documentation built on Aug. 24, 2023, 1:07 a.m.