Practical 4
In this practical you will familiarise yourselves with the constraint scanning method covered in the lectures this morning. Specifically you will investigate the response of a rice GSM to changes in photon input. For reference, have a look at the paper.
Download and open the rice model (rice model link here).
Download and import the module with additional constraints (rice model constraint dictionaries).
- Create an LP object with the rice GSM as argument (see previous LP exercise for details on how to do this).
Set the objective to minimisation of all fluxes. Since minimisation is the default direction, all you need to do is to use the lp.SetObjective() method with all reactions in the LP object as argument, which can be obtained as lp.cnames.values()
Use the dictionary of biomass fluxes as fixed constraints (lp.SetFixedFlux(...)) and the dictionary of bounds on transporter reactions as flux bounds (lp.SetFluxBounds(...)).
- Try to solve the LP and make sure the number of reactions in the solution is non-zero.
You will scan the photon uptake reaction by fixing its flux to a set of value in a linear range, specifically 50 points evenly distributed from 0 to 10. To do this, first generate a list of these values (have a look at your solution to exercise f of the python practical).