Hey @opencobra/cobrapy-core,
I'd like to store some meta information about the SBML that was parsed:
- level
- version
- packages used (fbc, annotation, groups)
The big question is where to store that information and I'd like your opinions. Current ideas, either
- Create a new attribute on the model
cobra.Model.sbml_info that could be a tuple (level: int, version: int, packages: Tuple[str]).
- Create a new
cobra.Model.meta attribute which would allow for some more general information later. It could be a dictionary and model.meta["SBML"] could contain above information.
Curious what you think and if you have any other ideas about this 😃