Closed TorkelE closed 1 year ago
Thank you for reporting this issue. This issue will be resolved in the v1.8.2 release. The easiest way to work around this issue is to place this block after your SBML import.
for name, param in model_BCR.listOfParameters.items():
param.expression = str(param.expression)
Thank you for the help :)
I am trying to load a SBML file using:
However, I get an error:
If I check the file, the problem seems to occur here:
where it cannot handle the
<parameter id="BT" constant="true"/>
Is there a way around this, enabling me to load this model? I have been able to load this model using BioNetGen, so the file seems fine. Alternatively, I have the model in .bngl and .net form, if there's a way to load these into GillesPy2?