-
Notifications
You must be signed in to change notification settings - Fork 227
Closed
Labels
SBMLRelated to reading and writing SBML models.Related to reading and writing SBML models.
Milestone
Description
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 andmodel.meta["SBML"]
could contain above information.
Curious what you think and if you have any other ideas about this 😃
Metadata
Metadata
Assignees
Labels
SBMLRelated to reading and writing SBML models.Related to reading and writing SBML models.