-
Hi there, I am trying to generate ftINIT models with MouseGEM and am following a tutorial on https://sysbiochalmers.github.io/Human-GEM-guide/gem_extraction/ In the preparation step, I am trying to generate a prepData struct with the following code:
The error I get is the following:
I have tried the same thing with HumanGEM, and it successfully passes the third step when it checks metabolic tasks. Any idea why MouseGEM can't do the same? I suspect it is something to do with Many thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I was able to solve this: I had to transform the model into a closed-form, i.e. |
Beta Was this translation helpful? Give feedback.
I was able to solve this:
I had to transform the model into a closed-form, i.e.
model = addBoundaryMets(model)
. I can now proceed through the third step and now can go to other steps in model generation.