Practical 1 - Structural Properties of the Calvin Cycle

Introduction

In this practical we will investigate the general structural properites of the photosynthetic Calvin Cycle (see the lecture slides, eg. slide 20 of Dipali's talk, slide 2 of Mark's) and seek to answer a specific question that is hard to answer simply by looking at the network diagram: "how can starch degradation act as a carbon source to generate triose phosphate?"

Methods

Part 1:

  1. Download the Calvin cycle model.

  2. Start ScrumPy and load the model:

  3. >>> m = ScrumPy.Model("Calvin.spy")

  4. Locate the reactions and metabolites in the model on the network diagram.
  5. As far as possible, identify the reactions that are essential for CO2 fixation.
  6. As far as possible, identify the any conservation relationships.
  7. As far as possible, identify the routes by which triose phosphate species may be identified.

Part 2:

Now let us see if we can get some more objective answers!

  1. Examine the null-space (m.sm.NullSpace()). What properties of the network can be identified ?

  2. Now determine the enzyme subsets (m.EnzSubsets()). Use this to identify which reactions are essential for CO2 assimilation.

  3. Identify the conservation relationships (m.ConsMoieties())

  4. Determine the elementary modes (m.ElModes(False)). Identify the routes which produce triose-phosphate. (see notes below).

  5. How do these compare with your answers in part 1?
  6. Now identify the routes consuming starch - does this indicate a a means for plants to utilise starch at night?

Notes:

Remember to pass the "False" argument when calculating elementary modes:

mo = m.ElModes(False)

The resulting modes will have been calculated using rational numbers, but for our purposes it will be convenient (but not essential) to convert them to integer form:

>>> mo.Integise(True)

Here the True flag indicates that the stoichiometries will be recalculated (this will be default behaviour in future versions).

In order to see the net stoichiometry for all the elementary modes:

>>> mo = m.ElModes()

>>> print mo.Stos()

ElMo_0:

   x_A -> x_B

   ~

(etc.)

None: Meetings/Nepal2016/P1 (last edited 2016-06-28 07:29:52 by mark)