The availability of nutrients has a major impact on metabolic fluxes and cobrapy
provides some helpers to manage the exchanges between the external environment and your metabolic model. In experimental settings the "environment" is usually constituted by the growth medium, ergo the concentrations of all metabolites and co-factors available to the modeled organism. However, constraint-based metabolic models only consider fluxes. Thus, you can not simply use concentrations since fluxes have the unit mmol / [gDW h]
(concentration per gram dry weight of cells and hour).
Also, you are setting an upper bound for the particular import flux and not the flux itself. There are some crude approximations. For instance, if you supply 1 mol of glucose every 24h to 1 gram of bacteria you might set the upper exchange flux for glucose to 1 mol / [1 gDW * 24 h]
since that is the nominal maximum that can be imported. There is no guarantee however that glucose will be consumed with that flux. Thus, the preferred data for exchange fluxes are direct flux measurements as the ones obtained from timecourse exa-metabolome measurements for instance.
So how does that look in COBRApy? The current growth medium of a model is managed by the medium
attribute.
In [1]:
from cobra.test import create_test_model
model = create_test_model("textbook")
model.medium
Out[1]:
This will return a dictionary that contains the upper flux bounds for all active exchange fluxes (the ones having non-zero flux bounds). Right now we see that we have enabled aerobic growth. You can modify a growth medium of a model by assigning a dictionary to model.medium
that maps exchange reactions to their respective upper import bounds. For now let us enforce anaerobic growth by shutting off the oxygen import.
In [2]:
medium = model.medium
medium["EX_o2_e"] = 0.0
model.medium = medium
model.medium
Out[2]:
As we can see oxygen import is now removed from the list of active exchanges and we can verify that this also leads to a lower growth rate.
In [3]:
model.slim_optimize()
Out[3]:
There is a small trap here. model.medium
can not be assigned to directly. So the following will not work:
In [4]:
model.medium["EX_co2_e"] = 0.0
model.medium
Out[4]:
As you can see EX_co2_e
is not set to zero. This is because model.medium is just a copy of the current exchange fluxes. Assigning to it directly with model.medium[...] = ...
will not change the model. You have to assign an entire dictionary with the changed import flux upper bounds:
In [5]:
medium = model.medium
medium["EX_co2_e"] = 0.0
model.medium = medium
model.medium # now it worked
Out[5]:
Setting the growth medium also connects to the context manager, so you can set a specific growth medium in a reversible manner.
In [6]:
model = create_test_model("textbook")
with model:
medium = model.medium
medium["EX_o2_e"] = 0.0
model.medium = medium
print(model.slim_optimize())
print(model.slim_optimize())
model.medium
Out[6]:
So the medium change is only applied within the with
block and reverted automatically.
In some cases you might be interested in the smallest growth medium that can maintain a specific growth rate, the so called "minimal medium". For this we provide the function minimal_medium
which by default obtains the medium with the lowest total import flux. This function needs two arguments: the model and the minimum growth rate (or other objective) the model has to achieve.
In [7]:
from cobra.medium import minimal_medium
max_growth = model.slim_optimize()
minimal_medium(model, max_growth)
Out[7]:
So we see that growth is actually limited by glucose import.
Alternatively you might be interested in a minimal medium with the smallest number of active imports. This can be achieved by using the minimize_components
argument (note that this uses a MIP formulation and will therefore be much slower).
In [8]:
minimal_medium(model, 0.1, minimize_components=True)
Out[8]:
When minimizing the number of import fluxes there may be many alternative solutions. To obtain several of those you can also pass a positive integer to minimize_components
which will give you at most that many alternative solutions. Let us try that with our model and also use the open_exchanges
argument which will assign a large upper bound to all import reactions in the model. The return type will be a pandas.DataFrame
.
In [9]:
minimal_medium(model, 0.8, minimize_components=8, open_exchanges=True)
Out[9]:
So there are 4 alternative solutions in total. One aerobic and three anaerobic ones using different carbon sources.
In [10]:
ecoli = create_test_model("ecoli")
ecoli.exchanges[0:5]
Out[10]:
For demand reactions:
In [11]:
ecoli.demands
Out[11]:
For sink reactions:
In [12]:
ecoli.sinks
Out[12]:
All boundary reactions (any reaction that consumes or introduces mass into the system) can be obtained with the boundary
attribute:
In [13]:
ecoli.boundary[0:10]
Out[13]: