Replies: 5 comments 9 replies
-
As you can see in the image each symbol that is used in the expressions needs to be individually declared. This is impractical for large models with > 10 params/species. The only approach I've come up with so far is modifying |
Beta Was this translation helpful? Give feedback.
-
Can I pass the flux equations as symbolic equations to the ODE construction or are the flux equations evaluated outside of ode.py? |
Beta Was this translation helpful? Give feedback.
-
I created the kinetics branch, in which users can access information about kinetics.
from biomass import Text2Model
description = Text2Model("michaelis_menten.txt")
description.convert() Now we can access information about kinetics via for r in description.kinetics:
print("reactants:", r.reactants)
print("products:", r.products)
print("rate:", r.rate)
print("--------")
Do you think this is useful for exporting models to other formats? |
Beta Was this translation helpful? Give feedback.
-
With the changes you implemented in the kinetics branch it's relatively straightforward to turn models into SBML now. Thanks a lot! However there are further decisions that we need to make about the implementation:
Please let me know what you think should be in the sbml file and what not! You probably also know customization options in Biomass that I don't so I'd really appreciate your input. |
Beta Was this translation helpful? Give feedback.
-
Hi @formersbach, I would like to discuss how to export biomass models to other formats.
Here you can share ideas and code to achieve this.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions