Evaluate the recipe contained in a WORCS project to derive its endpoints.
Arguments
- worcs_directory
Character, indicating the WORCS project directory to which to save data. The default value "." points to the current directory. Default: '.'
- verbose
Logical. Whether or not to print status messages to the console. Default:
TRUE
- check_endpoints
Logical. Whether or not to call
check_endpoints()
after reproducing the recipe. Default:TRUE
- ...
Additional arguments.
Examples
# Create directory to run the example
if(requireNamespace("withr", quietly = TRUE)){
withr::with_tempdir({
file.create(".worcs")
worcs:::add_recipe(recipe = 'writeLines("test", "test.txt")')
})
}
#> ✔ Adding recipe to '.worcs'.