-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Description
As I read it I think that this line:
output <- utils::read.csv(paste0(subdir, "/", paste(stringr::str_replace_all(species, " ", "_"), "_std_res_", year, ".csv", sep = "")))
needs to be changed to:
output <- utils::read.csv(here::here(subdir, paste0(stringr::str_replace_all(species, " ", "_"), "_std_res_", year, ".csv")))
Reason being that the function is looking for a step down from the compiling location instead of the project location for the assessment output data to use, e.g.,
currently
proj
| -- report
| -- output
| -- document
What is desired (I think)
proj
| -- output
| -- report
| -- document
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels