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. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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?
Beta Was this translation helpful? Give feedback.
All reactions