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
Also want to have checks that chunks have provided required documentation on their objects.
ALSO want to check that their precursors are in fact one of their inputs!
Put this logic in return_data or the driver?
# Check that the chunk has provided required data for all objectsfor(atin c(ATTR_TITLE, ATTR_UNITS, ATTR_COMMENTS, ATTR_PRECURSORS)) {
for(objin names(dots)) {
if(is.null(attr(dots[[obj]], at))) {
warning("No '", at, "' attached to ", obj)
}
}
}
The text was updated successfully, but these errors were encountered:
Also want to have checks that chunks have provided required documentation on their objects.
ALSO want to check that their precursors are in fact one of their inputs!
Put this logic in
return_data
or the driver?The text was updated successfully, but these errors were encountered: