cameo icon indicating copy to clipboard operation
cameo copied to clipboard

Max flux value in http://cameo.bio/07-predict-heterologous-pathways.html

Open mauriceling opened this issue 5 years ago • 3 comments

Hi,

I am trying to repeat Predict heterologous pathways (http://cameo.bio/07-predict-heterologous-pathways.html) on Python code. This is what I have:

from cameo import load_model from cameo.strain_design import pathway_prediction model = load_model('iMM904') predictor = pathway_prediction.PathwayPredictor(model) pathways = predictor.run(product="vanillin", max_predictions=2)

and the output is

Pathway 1 equation lower_bound upper_bound MNXR5340 H(+) + NADH + O2 + vanillate <=> H2O + 3,4-dih... -1000 1000 MNXR5336 2.0 H(+) + NADH + vanillate <=> H2O + vanillin... -1000 1000 MNXR230 H(+) + 4-hydroxybenzoate + O2 + NADPH <=> H2O ... -1000 1000 Pathway 2 equation lower_bound upper_bound MNXR5340 H(+) + NADH + O2 + vanillate <=> H2O + 3,4-dih... -1000 1000 MNXR5336 2.0 H(+) + NADH + vanillate <=> H2O + vanillin... -1000 1000 MNXR68718 H2O + 3,4-dihydroxybenzoate <=> 3-dehydroshiki... -1000 1000

which is the same as in http://cameo.bio/07-predict-heterologous-pathways.html.

However, where can I get "Max flux" value (ie, Max flux: 3.36842 for Pathway 2)?

Is higher max flux predictive of higher vanillin production?

mauriceling avatar Mar 22 '19 13:03 mauriceling

I am running into the same issue, was there ever a resolution to this?

jjczajka avatar Apr 26 '20 19:04 jjczajka

No comments from the developers. Please kindly help out here.

mauriceling avatar Apr 27 '20 01:04 mauriceling

Hi, you can 'apply' a pathway to your base model and then optimize for the pathway target. That will give you the theoretical maximum flux through your heterologous pathway.

Higher flux is indeed an indication that your carbon source can be used more efficiently.

Midnighter avatar Apr 27 '20 06:04 Midnighter