Replies: 1 comment 8 replies
|
If you run the following MATLAB code for the yeast-GEM repository root, this should give a functional model: initCobraToolbox(false)
cd ./code
model = loadYeastModel();
cd otherChanges\
modelAnaerobic = anaerobicModel(model);
modelAnaerobic = changeRxnBounds(modelAnaerobic,'r_1714',-18.5,'l');
modelAnaerobic = changeObjective(modelAnaerobic,'r_2111');
FBAsolution = optimizeCbModel(modelAnaerobic,'max');
printFluxVector(modelAnaerobic,FBAsolution.x,1)A discussion on the arguments for these changes are available here: #291. |
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello, I tried to simulate anaerobic growth in this model.
So I modified glucose consumption and oxygen exchange simply by using the command below.
However, I cant see the growth from the yeast-GEM_8.5 model.
What should I do for the anaerobic growth?
All reactions