Differences between revisions 8 and 12 (spanning 4 versions)
Revision 8 as of 2012-10-16 12:41:38
Size: 1893
Editor: hassan
Comment:
Revision 12 as of 2013-06-07 11:56:14
Size: 2092
Editor: david
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
In this practical you will try to repeat the results from Fell & Small (1986), which was one of the first attempts to apply LP to metabolic networks. Before staring with the exercises read the documentation of the {{{ScrumPy}}} LP modle, here. In this practical you will try to repeat the results from Fell & Small (1986), which was one of the first attempts to apply LP to metabolic networks. Before staring with the exercises read the documentation of the {{{ScrumPy}}} LP module, [[ScrumPy/Doc/LinProg|here]].
Line 5: Line 5:
1. Download the original paper from this [[http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1147204/ | link]].  1. Download the original paper from this [[http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1147204/ | link]].
Line 7: Line 7:
2. Download and and open the adipose model ([[attachment:adipose.spy]]).  1. Download and and open the adipose model ([[attachment:adipose.spy]]).
Line 9: Line 9:
3. Your task is to set up and solve an LP problem where the objective is to minimise glucose consumption, while producing 1 unit of triacylglycerol (TGA).  1. Your task is to set up and solve an LP problem where the objective is to minimise glucose consumption, while producing 1 unit of triacylglycerol (TGA).
Line 11: Line 11:
3.a. Start by importing the LP module and create the LP object with the adipose model as argument. Since the optimisation direction is minimisation, and this is set by default, you don't need to change the direction.   a. Start by importing the LP module and create the LP object with the adipose model as argument.
  a. Set the flux of the TGA-synthesizing reaction to 1.0, by entering this information to the appropriate LP method, i.e. we are going to optimise the production of one unit of triglyceride.
Line 13: Line 14:
3.b. Next, identify the reaction that should be minimised and enter this as an argument to the suitable method of the LP object (note that the argument must be a list of reaction(s), i.e. your argument should be a list with one reaction).    i. Hint 1: the TGA-synthesizing reaction is ''R41''.
Line 15: Line 16:
Hint: the glucose uptake reaction is named ''R1''.    i. Hint 2: the argument to the intended LP method must be a dictionary where keys are reactions and values are flux values.
Line 17: Line 18:
3.c. Fix the flux of the TGA-synthesizing reaction to 1.0, by entering this information to the appropriate LP method.   a. Since the optimisation direction is minimisation, and this is set by default, you don't need to change the direction.
Line 19: Line 20:
Hint 1: the TGA-synthesizing reaction is ''R41''.   a. Next, identify the reaction that should be minimised and enter this as an argument to the suitable method of the LP object (note that the argument must be a list of reaction(s), i.e. your argument should be a list with one reaction).
Line 21: Line 22:
Hint 2: the argument to intended LP method must be a dictionary where keys are reactions and values are flux values.    i.Hint: the glucose uptake reaction is named ''R1''.
Line 23: Line 24:
3.d. Solve the LP problem using a suitable method.   a. Solve the LP problem using a suitable method.
Line 25: Line 26:
3.e. To obtain the solution use the LP method {{{GetPrimSol()}}}. This method returns a dictionary object of reactions in the solution as keys and flux values as values, so for convenience assign a name to this solution.   a. To obtain the solution use the LP method {{{GetPrimSol()}}}. This method returns a dictionary object of reactions in the solution as keys and flux values as values, so for convenience assign a name to this solution.
Line 27: Line 28:
4. What is the objective value, i.e. the flux of the glucose uptake reaction? How does this compare to the results in the paper?  1. What is the objective value, i.e. the flux of the glucose uptake reaction, representing the minimum amount of glucose to make 1 triglyceride? How does this compare to the results in the paper?

Practical 3

Linear Programming and Flux Balance Analysis with ScrumPy

In this practical you will try to repeat the results from Fell & Small (1986), which was one of the first attempts to apply LP to metabolic networks. Before staring with the exercises read the documentation of the ScrumPy LP module, here.

  1. Download the original paper from this link.

  2. Download and and open the adipose model (adipose.spy).

  3. Your task is to set up and solve an LP problem where the objective is to minimise glucose consumption, while producing 1 unit of triacylglycerol (TGA).
    1. Start by importing the LP module and create the LP object with the adipose model as argument.
    2. Set the flux of the TGA-synthesizing reaction to 1.0, by entering this information to the appropriate LP method, i.e. we are going to optimise the production of one unit of triglyceride.
      1. Hint 1: the TGA-synthesizing reaction is R41.

      2. Hint 2: the argument to the intended LP method must be a dictionary where keys are reactions and values are flux values.
    3. Since the optimisation direction is minimisation, and this is set by default, you don't need to change the direction.
    4. Next, identify the reaction that should be minimised and enter this as an argument to the suitable method of the LP object (note that the argument must be a list of reaction(s), i.e. your argument should be a list with one reaction).
      • i.Hint: the glucose uptake reaction is named R1.

    5. Solve the LP problem using a suitable method.
    6. To obtain the solution use the LP method GetPrimSol(). This method returns a dictionary object of reactions in the solution as keys and flux values as values, so for convenience assign a name to this solution.

  4. What is the objective value, i.e. the flux of the glucose uptake reaction, representing the minimum amount of glucose to make 1 triglyceride? How does this compare to the results in the paper?

None: Meetings/Delhi2012/Practicals/Practical_3 (last edited 2013-06-07 11:56:14 by david)