Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

ecYeast - oxygen exchange lower bound can't be set to -1 #90

Open
alvxi opened this issue Jun 30, 2022 · 0 comments
Open

ecYeast - oxygen exchange lower bound can't be set to -1 #90

alvxi opened this issue Jun 30, 2022 · 0 comments

Comments

@alvxi
Copy link

alvxi commented Jun 30, 2022

Hi, I'm trying to use the ecYeast model, on matlab with COBRA and then I set up the model without any modifications:

model=readCbModel('ecYeast.xml');
writeCbModel(model,'format','xls');
biomassRxn = 'r_2111';
ethanolRxn = 'r_1761';
glucose = 'r_1714';
oxygen = 'r_1992';
model = changeObjective(model, biomassRxn);
changeCobraSolver('gurobi', 'all');
solution=optimizeCbModel(model);

Then, I create another model to change the lower bound of glucose to -10:

modelGlu=changeRxnBounds(model,glucose, -10, 'l');
solutionGlu=optimizeCbModel(modelGlu);
printFluxVector(modelGlu, solution.x, false, false);

And finally, I create another model, on the top of the modelGlu, with the O2 exchange lower bound at -1:

modelMix=changeRxnBounds(modelGlu,oxygen, -1, 'l');
solutionMix=optimizeCbModel(modelMix);
printFluxVector(modelMix, solution.x, false, false);

But, as you can see, on the solution vector, the O2 reaction didn't change to -1 as is supposed to (but the glucose changed to -10, though):

image

I also tried to create a model only with the O2 modification, and the same happened. Also tried to use the batch model, and it's the same.

So, I ask if the model is taking into account that I set the O2 to -1 or if the modification I did doesn't occur at all.

Thanks

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant