You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Eliot and Celine built a function is intended to check in certain modules were run before the current module. Not sure where with function went (suggestModule()) in the SpaDES world, but it needs to replace line 270-281 in the CBM_core.R.
The text was updated successfully, but these errors were encountered:
io <- inputObjects(sim, currentModule(sim))
objectNamesExpected <- io$objectName
available <- objectNamesExpected %in% ls(sim)
if (any(!available)) {
stop(
"The inputObjects for CBM_core are not all available:",
"These are missing:", paste(objectNamesExpected[!available], collapse = ", "),
". \n\nHave you run ",
paste0("spadesCBM", c("defaults", "inputs", "m3ToBiomass"), collapse = ", "),
"?"
)
}
Eliot and Celine built a function is intended to check in certain modules were run before the current module. Not sure where with function went (suggestModule()) in the SpaDES world, but it needs to replace line 270-281 in the CBM_core.R.
The text was updated successfully, but these errors were encountered: