.checkModelIntegrity {MicrobialGrowth} | R Documentation |
Model Integrity Checker
Description
Function to check the integrity of a given model. Used only for development.
Usage
.checkModelIntegrity(model, verbose = TRUE)
Arguments
model |
the model to check. |
verbose |
boolean indicating if the function is verbose, i.e. it indicates the different steps that it validates. If |
Value
No return value, called to check the integrity of a (new) model for the package (raises an error if the model is invalid).
Examples
# Auto-run on package build
models = listAvailableModels()
for (model in models) {
.checkModelIntegrity(model)
}
[Package MicrobialGrowth version 1.0.0 Index]