Let's start by loading our model...
from reframed import load_cbmodel
model = load_cbmodel("models/e_coli_core.xml.gz", flavor="bigg")
We will define two optimization objectives:
from mewpy.optimization.evaluation import BPCY, TargetFlux
objs = [
TargetFlux("R_EX_succ_e"),
BPCY(model.biomass_reaction, "R_EX_succ_e")
]
Now we define our optimization problem:
from mewpy.problems import RKOProblem
anaerobic = {'R_EX_o2_e': (0, 0)}
problem = RKOProblem(model, fevaluation=objs, envcond=anaerobic)
And now we can run the optimization an evolutionary algorithm (EA)
from mewpy.optimization import EA
solutions = EA(problem, max_generations=100).run()
By default, MEWpy calculates a population of the best 100 solutions.
To make our life easier, let's convert the result to a Pandas DataFrame:
import pandas as pd
get_list = lambda x: [r_id[2:] for r_id in x.values]
table = [[get_list(x), len(get_list(x)), x.fitness[0], x.fitness[1]] for x in solutions]
df = pd.DataFrame(table, columns=["reactions", "knockouts", "target", "BPCY"])
We can now sort the results, for instance by the total number of required knockouts:
df.sort_values("knockouts")
We can also look at the trade-off between our two objectives (the so-called Pareto front)
df.plot.scatter("BPCY", "target")