Size: 4429
Comment:
|
Size: 4433
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 7: | Line 7: |
1. Download and import the module with additional constraints ('''rice model constraint dictionaries'''). | 2. Download and import the module with additional constraints ('''rice model constraint dictionaries'''). |
Line 9: | Line 9: |
1. Create an LP object with the rice GSM as argument (see previous LP exercise for details on how to do this). | 3. Create an LP object with the rice GSM as argument (see previous LP exercise for details on how to do this). |
Line 11: | Line 11: |
1. 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()}}} | 4. 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()}}} |
Line 13: | Line 13: |
1. Use the dictionary of biomass fluxes as fixed constraints ({{{lp.SetFixedFlux(...)}}}) and the dictionary of bounds on transporter reactions as flux bounds ({{{lp.SetFluxBounds(...)}}}). | 5. Use the dictionary of biomass fluxes as fixed constraints ({{{lp.SetFixedFlux(...)}}}) and the dictionary of bounds on transporter reactions as flux bounds ({{{lp.SetFluxBounds(...)}}}). |
Line 15: | Line 15: |
1. Try to solve the LP and make sure the number of reactions in the solution is non-zero. | 6. Try to solve the LP and make sure the number of reactions in the solution is non-zero. |
Line 17: | Line 17: |
1. 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 [[AccliPhot/WorkshopOne/prac1 | python practical]]). | 7. 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 [[AccliPhot/WorkshopOne/prac1 | python practical]]). |
Line 19: | Line 19: |
1. Define a dictionary (this will be referred to as {{{collection}}} henceforth) where you will collect the LP solutions. | 8. Define a dictionary (this will be referred to as {{{collection}}} henceforth) where you will collect the LP solutions. |
Line 21: | Line 21: |
1. Write a {{{for}}} loop over the list of values generated above. Inside the loop, set the constrain on the photon uptake reaction ({{{chl_Photon_tx}}}) equal to the loop variable, solve the LP, and collect the solution in {{{collection}}} created above (you can use the loop variable as key). | 9. Write a {{{for}}} loop over the list of values generated above. Inside the loop, set the constrain on the photon uptake reaction ({{{chl_Photon_tx}}}) equal to the loop variable, solve the LP, and collect the solution in {{{collection}}} created above (you can use the loop variable as key). |
Line 23: | Line 23: |
1. You will now analyse the LP data. In order to collect the names of all reactions that appear in any of the solutions, create an empty dictionary and run a {{{for}}} loop to update it with the reaction names from the solutions generated previously, e.g.: | 10. You will now analyse the LP data. In order to collect the names of all reactions that appear in any of the solutions, create an empty dictionary and run a {{{for}}} loop to update it with the reaction names from the solutions generated previously, e.g.: |
Line 31: | Line 31: |
1. Import the module {{{DataSets}}} from {{{Data}}}. Create an instance of the {{{DataSet}}} class, give the keys of the reaction name dictionary just created to the argument with keyword {{{ItemNames}}}, as such: | 11. Import the module {{{DataSets}}} from {{{Data}}}. Create an instance of the {{{DataSet}}} class, give the keys of the reaction name dictionary just created to the argument with keyword {{{ItemNames}}}, as such: |
Line 38: | Line 38: |
1. Update the data set with the LP solutions so that each row corresponds to a fixed photon flux. Conveniently, there is a {{{DataSet}}} method, called {{{UpdateFromDic(...)}}}, that updates the data set with a dictionary if the keys can be found in the column names of the data set and the values are numbers. Write a {{{for}}} loop over the {{{collection}}} dictionary and update the data set with each solution. | 12. Update the data set with the LP solutions so that each row corresponds to a fixed photon flux. Conveniently, there is a {{{DataSet}}} method, called {{{UpdateFromDic(...)}}}, that updates the data set with a dictionary if the keys can be found in the column names of the data set and the values are numbers. Write a {{{for}}} loop over the {{{collection}}} dictionary and update the data set with each solution. |
Line 40: | Line 40: |
1. Since we are interested in reactions that change flux as a response to changes in photon flux, we need to identify these reaction in the data set. We will do this by looking at the aboslute difference between the smallest and largest flux through each reaction in the set. Use a {{{for}}} loop over the column names of the data set (if the data set is names{{{ds}}} this is {{{ds.cnames}}}). For each column name get the associated list of values (use the method {{{ds.GetCol(c)}}} with {{{c}}} being the name of column, i.e. if you are in a loop, the loop variable); calculate absolute of the difference between the maximum and minimum flux value in the list (we can use the built-in functions {{{abs()}}}, {{{max()}}}, and {{{min()}}} for this), if this difference is above a fixed threshold the reaction (i.e. the loop variable) will be stored. Here is the code: | 13. Since we are interested in reactions that change flux as a response to changes in photon flux, we need to identify these reaction in the data set. We will do this by looking at the aboslute difference between the smallest and largest flux through each reaction in the set. Use a {{{for}}} loop over the column names of the data set (if the data set is names{{{ds}}} this is {{{ds.cnames}}}). For each column name get the associated list of values (use the method {{{ds.GetCol(c)}}} with {{{c}}} being the name of column, i.e. if you are in a loop, the loop variable); calculate absolute of the difference between the maximum and minimum flux value in the list (we can use the built-in functions {{{abs()}}}, {{{max()}}}, and {{{min()}}} for this), if this difference is above a fixed threshold the reaction (i.e. the loop variable) will be stored. Here is the code: |
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).
Define a dictionary (this will be referred to as collection henceforth) where you will collect the LP solutions.
Write a for loop over the list of values generated above. Inside the loop, set the constrain on the photon uptake reaction (chl_Photon_tx) equal to the loop variable, solve the LP, and collect the solution in collection created above (you can use the loop variable as key).
You will now analyse the LP data. In order to collect the names of all reactions that appear in any of the solutions, create an empty dictionary and run a for loop to update it with the reaction names from the solutions generated previously, e.g.:
Import the module DataSets from Data. Create an instance of the DataSet class, give the keys of the reaction name dictionary just created to the argument with keyword ItemNames, as such:
1 >>> ds = DataSets.DataSet(ItemNames=reacs.keys())
The names provided will be column names in data set created. The DataSet class is a subclass of the ScrumPy matrix class, as are the stoichiometry matrices that you have looked at before, so much of the structure and properties of data sets will be familiar.
Update the data set with the LP solutions so that each row corresponds to a fixed photon flux. Conveniently, there is a DataSet method, called UpdateFromDic(...), that updates the data set with a dictionary if the keys can be found in the column names of the data set and the values are numbers. Write a for loop over the collection dictionary and update the data set with each solution.
Since we are interested in reactions that change flux as a response to changes in photon flux, we need to identify these reaction in the data set. We will do this by looking at the aboslute difference between the smallest and largest flux through each reaction in the set. Use a for loop over the column names of the data set (if the data set is namesds this is ds.cnames). For each column name get the associated list of values (use the method ds.GetCol(c) with c being the name of column, i.e. if you are in a loop, the loop variable); calculate absolute of the difference between the maximum and minimum flux value in the list (we can use the built-in functions abs(), max(), and min() for this), if this difference is above a fixed threshold the reaction (i.e. the loop variable) will be stored. Here is the code: