Skip to main content

Robust flux balance analysis of multiscale biochemical reaction networks

Abstract

Background

Biological processes such as metabolism, signaling, and macromolecular synthesis can be modeled as large networks of biochemical reactions. Large and comprehensive networks, like integrated networks that represent metabolism and macromolecular synthesis, are inherently multiscale because reaction rates can vary over many orders of magnitude. They require special methods for accurate analysis because naive use of standard optimization systems can produce inaccurate or erroneously infeasible results.

Results

We describe techniques enabling off-the-shelf optimization software to compute accurate solutions to the poorly scaled optimization problems arising from flux balance analysis of multiscale biochemical reaction networks. We implement lifting techniques for flux balance analysis within the openCOBRA toolbox and demonstrate our techniques using the first integrated reconstruction of metabolism and macromolecular synthesis for E. coli.

Conclusion

Our techniques enable accurate flux balance analysis of multiscale networks using off-the-shelf optimization software. Although we describe lifting techniques in the context of flux balance analysis, our methods can be used to handle a variety of optimization problems arising from analysis of multiscale network reconstructions.

Background

Let SRm×n be a stoichiometric matrix that represents a biochemical network consisting of m species interacting via n reactions. Flux balance analysis (FBA) predicts steady state reaction rates (fluxes) of such a biochemical network by solving the linear program

maximize v c T v subject to Sv = 0 , v l v v u ,
(1)

where v l ,v u Rn are lower and upper bounds on the fluxes and c represents a biologically motivated objective function. We refer to [1] for details about FBA.

Recently, Thiele et al. [2] described the first genome-scale integrated reconstruction of E. coli metabolism and macromolecular synthesis that represents the function of almost 2000 genes. This Metabolic-Expression model explicitly accounts for the demands of macromolecular synthesis at single nucleotide resolution. To enforce consistency between the state of metabolism and macromolecular synthesis, Thiele et al. introduce coupling constraints on certain pairs of fluxes (for example, the fluxes for a metabolic reaction and the reaction responsible for synthesizing the enzyme that catalyzes the metabolic reaction [3]):

c min v 1 v 2 c max ,
(2)

where cmin,cmax > 0. Each coupling constraint can be formulated as a pair of linear inequality constraints, as described later. We predict the steady state reaction rates of such integrated networks by solving the linear program

maximize v c T v subject to Sv = 0 , Cv d , v l v v u ,
(3)

where C v ≤ d includes constraints equivalent to (2) for many pairs of fluxes.

Given the inherent multiscale nature of integrated reconstructed networks, the constraint matrices of the FBA linear programs (1) and (3) often contain entries that vary over many orders of magnitude. We say that the problems are poorly scaled. Conducting FBA for such networks has been unsatisfactory because even state-of-the-art linear programming solvers can produce inaccurate (or erroneously infeasible) results. In particular, for the E. coli Metabolic-Expression model, applying CPLEX [4] and Gurobi [5] to (3) with default settings (scaling enabled) has produced results with large constraint violations.

Implementation

Scaling techniques

In the context of the simplex method for linear programming, the constraints (including bounds) form a polytope in n-space. The condition of a basis matrix associated with a vertex of the polytope provides a quantitative measure of either the “sharpness” or the “flatness” of the vertex. Poorly scaled constraints tend to create a polytope with very sharp and/or very flat vertices. To alleviate numerical difficulties for problem (1), linear programming systems typically compute row and column scaling matrices D r Rm×m and D c Rn×n such that the nonzero entries of the scaled constraint matrix D r S D c are of order 1. Scaling can improve the condition of many bases, but it may be at the expense of making other bases more ill-conditioned (including the optimal basis). For some problems, such as (3), the scaled constraints D r S D c v ̄ =0 may be satisfied accurately by the scaled solution v ̄ , but when the solution is unscaled, v= D c v ̄ may violate S v = 0 significantly. We refer to [6] for a comprehensive study of scaling and its effects on the performance of the simplex method.

Lifting techniques

Lifting techniques are commonly used in optimization to create an efficient representation of a feasible set. By using auxiliary variables to “lift” the feasible set into a higher-dimensional space, they can dramatically reduce the computational expense (e.g., see Albersmeyer and Diehl [7], Gouveira et al. [8]). The canonical application is for efficiently representing the cross-polytope, i.e., the set

x R n i = 1 n | x i | 1 .

To represent this set in n-dimensional space requires 2n constraints of the form

± x 1 ± ± x n 1 .

By introducing n new variables y i , thereby lifting the set into 2n-dimensional space, we can represent the cross-polytope using 2n + 1 constraints:

y i x i y i , i = 1 , , n , y 1 + + y n 1 .

Here we apply lifting techniques to poorly scaled constraints to make the vertices of the “lifted” polytope more regular. Note that small entries in S and C do not constitute poor scaling unless all entries in a row or column are small. (There are no such rows and columns in our test data, but in general they would be scaled up to have maximum entry 1.) Our explicit aim is to reduce the magnitude of the largest matrix entries so that the reformulated constraints do not need scaling.

Mass balance constraints

In problem (1), the mass balance constraints S v = 0 often contain poorly scaled reactions such as

A+10000BC+D,
(4)

which may represent the synthesis of a macromolecule in a reconstruction. We can decompose such reactions into sequences of reactions involving dummy metabolites with reasonably scaled coefficients. For example, (4) is equivalent to two reactions involving a dummy metabolite B ̂ :

A+100 B ̂ C+D,100B B ̂ .
(5)

Coupling constraints

In problem (3), the constraints C x ≤ d include equivalents of the coupling constraints (2). These enforce consistency between the states of the metabolic and macromolecular synthesis reactions and are often poorly scaled because reaction rates can vary over many orders of magnitude. For example, two fluxes could be related by

0.0001 v 1 v 2 10000.
(6)

As before, we can decompose these constraints into sequences of constraints involving auxiliary variables with reasonable coefficients. If the second inequality in (6) were presented to our implementation as v1 ≤ 10000v2, we would transform it to two constraints involving an auxiliary variable s1:

v 1 100 s 1 , s 1 100 v 2 .
(7)

If the first inequality in (6) were presented as v1 ≥ 0.0001v2, we would leave it alone, but the equivalent inequality 10000v1 ≥ v2 would be transformed to

v 2 100 s 2 , s 2 100 v 1 .

Hierarchical lifting

Our implementation of lifting techniques uses a parameter τ, set to 1024 in our experiments. Constraints containing entries larger than τ are reformulated.

Very large entries might require more than one auxiliary variable and constraint. In these cases, we choose the reformulated constraint coefficients to be equally spaced in logarithmic scale. For example, the poorly scaled reaction

A + 10 9 B C + D

(with |109| > τ) would be reformulated as

A + 1000 B 1 C + D , 1000 B 2 B 1 , 1000 B B 2

(with |1000|≤τ).

Comment

Unlike traditional scaling, the above lifting techniques transform poorly scaled constraints without affecting other constraints. The linear program does become larger (more constraints and variables), but the added constraints are extremely sparse and should have little impact on the performance of a typical large-scale solver (see Figure 1). Indeed, the time per iteration for the simplex method could well decrease because smaller “large” entries in the basis matrices typically lead to sparser basis factorizations.

Figure 1
figure 1

E. coli Metabolic-Expression matrix before and after lifting. Spy plot of the E. coli Metabolic-Expression matrix before and after lifting. The red areas were added by the lifting procedure and are very sparse.

Iterative refinement

After a simplex solver has returned an allegedly optimal basic solution, the accuracy of satisfying the general linear constraints (S v=0 and C vd in (3)) could be improved by applying a single step of classical iterative refinement [9], especially if extended precision were available. However, the refined basic solution could well lie outside its bounds, and further simplex iterations would be necessary. Ideally this difficulty would be handled by the simplex solver itself.

We note that more elaborate forms of iterative refinement have been used to improve the accuracy of linear programming solutions. Gleixner et al. [10] describe an incremental precision-boosting procedure that solves a sequence of linear programs, each attempting to correct the error in the previous optimal solution. The Zoom procedure of Saunders and Tenenblat [11] is an analogous strategy for interior methods.

Implementation in the openCOBRA toolbox

Lifting techniques for poorly scaled reactions and coupling constraints have been implemented in the openCOBRA toolbox 2.05 [12], a Matlab package for constraint-based reconstruction and analysis of biochemical networks. Algorithm 1 summarizes the main steps. Our implementation makes efficient use of auxiliary variables by reusing them if possible. Suppose metabolite A participates in more than one reaction with large stoichiometric coefficients. We can use the same auxiliary variable to decompose all reactions involving metabolite A, thereby keeping problem size to a minimum.

To benefit from solving the reformulated problem, we must disable scaling and any “presolve” option that would permit reaggregation of constraints. Our implementation automatically sets these options for CPLEX and Gurobi.

Results and discussion

We use our implementation of lifting techniques to conduct FBA on two Metabolic-Expression models of E. coli[2]. The models (ME76664 and ME76589) represent the function of almost 2000 E. coli genes and involve 62212 metabolites, with 6087 coupling constraints C v ≤ d to enforce consistency between the predicted steady states of both metabolism and macromolecular synthesis. The first model (ME76664) accounts for 76664 reactions, and the second (ME76589) accounts for 76589 reactions. Because of the dependencies between pairs of metabolic reactions and macromolecular synthesis reactions, the resulting flux balanced steady state v has reaction rates that vary by four orders of magnitude [2]. Both models have about 41,000 large matrix entries (exceeding τ = 1024), with 1825 entries exceeding 105 and biggest entry 8×105.

Conducting FBA on ME76664 using the CPLEX and Gurobi simplex and barrier solvers with default settings (including scaling) resulted in erroneous reports of infeasibility or “optimal” solutions that were significantly infeasible. Our own simplex solver SQOPT [13] with scaling activated would solve the scaled problem well, but unscaling would magnify the infeasibilities.

With the CPLEX solvers, our lifting techniques eliminate infeasible reports and significantly reduce the infeasibility of the computed steady states; see Table 1 and Table 2. Note that most of the “barrier iterations” are really simplex iterations required by crossover (the procedure for finding a basic solution from the barrier solution). These do not alter the optimal objective value and may not be essential in practice.

Table 1 FBA results for ME76664 before and after lifting
Table 2 FBA results for ME76589 before and after lifting

We also used lifting to conduct flux variability analysis (FVA) [14] for the ME76664 model and obtained biologically consistent results (see Figure 2). We compared the flux span of each metabolic reaction in ME76664 with the flux span of the corresponding reaction in the E. coli metabolic model (iAF1260) [15]. The chief difference between these two models is that in ME76664 the metabolic building blocks (e.g., amino acids) are used to synthesize the metabolic enzymes, which in turn catalyze the metabolic reactions, while in iAF1260 the building blocks are collected in a static biomass reaction. Artifacts with FBA on metabolic models, such as thermodynamically infeasible flux around stoichiometrically balanced reaction cycles, are eliminated for all enzyme-catalyzed reactions in ME76664, as the coupling constraints penalize high flux rates. These constraints also restrict the maximum possible flux rates through enzyme catalyzed reactions due to the demand-supply challenge for the building blocks, thus limiting the set of possible transcriptomes and proteomes of the model. Overall, the feasible steady state solution space is substantially reduced in ME76664 compared to the metabolic model alone.

Figure 2
figure 2

Flux variability analysis of the E. coli Metabolic-Expression model. Minimum and maximum flux for iAF1260 (which only accounts for metabolic reactions) versus the minimum and maximum flux for the Metabolic-Expression model. Each colored box corresponds to a different reaction in metabolism. The boxes are always longer on the axis for the metabolic model (iAF1260) than on the axis for the Metabolic-Expression model. This demonstrates that increasing the comprehensiveness of the model toward whole cell modeling leads to a substantial shrinkage of the steady state solution space. (Fluxes are plotted in mmol· g dw 1 · hr 1 ).

Tables 3 and 4 summarize 15 FVA runs using the CPLEX simplex and barrier solvers. For the simplex method (Table 3) we see that lifting reduces the infeasibilities of the computed steady states and also stabilizes the number of simplex iterations. For the barrier method (Table 4) the effects of lifting are much more varied. The feasibility of the computed steady state is sometimes improved but the lifted problem can take much longer to solve. Evidently the CPLEX barrier solver (with crossover) does not perform reliably on ME76664 with or without lifting.

Table 3 FVA results (simplex solvers) for ME76664 before and after lifting
Table 4 FVA results (barrier solver) for ME76664 before and after lifting

Conclusions

We described techniques that enable off-the-shelf optimization software to be applied to multiscale network reconstructions, such as integrated networks that represent both metabolism and macromolecular synthesis. The techniques enable accurate FBA and FVA of an integrated model of metabolism and macromolecular synthesis in E. coli, previously impossible because of numerical difficulties encountered by solvers.

As in silico biologists create increasingly complex models that capture more of the multiscale nature of biological systems [16], the optimization problems that arise during the analysis of these models will also become increasingly poorly scaled. We are aware of researchers resorting to specialized packages such as [17] that rely upon rational arithmetic to obtain exact solutions to the FBA and FVA linear programs. Such solvers are likely to be prohibitively slow for analyzing larger, more comprehensive reconstructed networks. A more practical approach is to employ quadruple-precision arithmetic, which is increasingly available in Fortran and C compilers and is valuable even when implemented in software. In the meantime, our techniques enable the constraint-based modeling community to analyze increasingly sophisticated and comprehensive models of biological systems with improved efficiency and reliability. They could also be combined with the refinement approach of Gleixner et al. [10].

Availability and requirements

Lifting techniques for poorly scaled reactions and coupling constraints have been implemented in the openCOBRA toolbox 2.05 [12], a MATLAB package for constraint-based reconstruction and analysis of biochemical networks.

Project name: openCOBRA toolbox

Project home page: http://opencobra.sourceforge.net/

Operating system: platform independent

Programming language: MATLAB

Other requirements: MATLAB 2008a or higher

License: GNU GPLv3

Any restrictions to use by non-academics: A separate license must be acquired.

References

  1. Orth JD, Thiele I, Palsson BØ: What is flux balance analysis?. Nat Biotechnol. 2010, 28 (3): 245-248. 10.1038/nbt.1614.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  2. Thiele I, Fleming RMT, Que R, Bordbar A, Diep D, Palsson BØ: Multiscale modeling of metabolism and macromolecular synthesis in E. coli and its application to the evolution of codon usage. PLoS One. 2012, 7 (9): e45635-10.1371/journal.pone.0045635.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  3. Thiele I, Fleming RMT, Bordbar A, Schellenberger J, Palsson BØ: Functional characterization of alternate optimal solutions of Escherichia coli’s transcriptional and translational machinery. Biophys J. 2010, 98 (10): 2072-2081. 10.1016/j.bpj.2010.01.060.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  4. CPLEX mathematical programming solver. [http://www-01.ibm.com/software/integration/optimization/cplex-optimizer/]

  5. Gurobi mathematical programming solver. [http://www.gurobi.com/]

  6. Elble J, Sahinidis N: Scaling linear optimization problems prior to application of the simplex method. Comput Optimization Appl. 2012, 52: 345-371. 10.1007/s10589-011-9420-4.

    Article  Google Scholar 

  7. Albersmeyer J, Diehl M: The lifted Newton method and its application in optimization. SIAM J Optim. 2010, 20 (3): 1655-1684. 10.1137/080724885.

    Article  Google Scholar 

  8. Gouveia J, Parrilo PA, Thomas R: Lifts of convex sets and cone factorizations. ArXiv:1111.3164 2011

  9. Moler CB: Iterative refinement in floating point. J ACM. 1967, 14 (2): 316-321. 10.1145/321386.321394.

    Article  Google Scholar 

  10. Gleixner A, Steffy D, Wolter K: Improving the accuracy of linear programming solvers with iterative refinement. ZIB-Report 12-19, Zuse Institute Berlin 2012

    Book  Google Scholar 

  11. Saunders MA, Tenenblat L: The Zoom strategy for accelerating and warm-starting interior methods. Presented at INFORMS Annual Meeting, Pittsburgh, PA. Nov 5-8, 2006, [http://www.stanford.edu/group/SOL/talks/saunders-tenenblat-INFORMS2006.pdf]

    Google Scholar 

  12. Schellenberger J, Que R, Fleming RMT, Thiele I, Orth JD, Feist AM, Zielinski DC, Bordbar A, Lewis NE, Rahmanian S, et al: Quantitative prediction of cellular metabolism with constraint-based models: the COBRA Toolbox v2.0. Nature Protoc. 2011, 6 (9): 1290-1307. 10.1038/nprot.2011.308. [http://github.com/opencobra]

    Article  CAS  Google Scholar 

  13. Gill PE, Murray W, Saunders MA: SNOPT: An SQP algorithm for large-scale constrained optimization. SIAM Review. 2005, 47: 99-131. 10.1137/S0036144504446096. [SIGEST article]

    Article  Google Scholar 

  14. Savinell JM, Palsson BØ: Network analysis of intermediary metabolism using linear optimization. I. Development of mathematical formalism. J Theor Biol. 1992, 154 (4): 421-454. 10.1016/S0022-5193(05)80161-4.

    Article  CAS  PubMed  Google Scholar 

  15. Feist A, Henry C, Reed J, Krummenacker M, Joyce A, Karp P, Broadbelt L, Hatzimanikatis V, Palsson BØ: A genome-scale metabolic reconstruction for Escherichia coli K-12 MG1655 that accounts for 1260 ORFs and thermodynamic information. Mol Syst Biol. 2007, 3: 1-18.

    Article  Google Scholar 

  16. Thiele I, Heinken A, Fleming RMT: A systems biology approach to studying the role of microbes in human health. Curr Opin Biotechnol. 2012, 21 (1): 4-12.

    Google Scholar 

  17. Cook W, Koch T, Daniel E, Wolter K: An exact rational mixed-integer programming solver. Proceedings of the 15th international conference on Integer Programming and Combinatorial Optimization, IPCO’11. 2011, Berlin, Heidelberg: Springer-Verlag, 104-116. [http://dl.acm.org/citation.cfm?id=2018167]

    Google Scholar 

Download references

Acknowledgements

We are grateful to three referees for their insightful comments and suggestions. This work was supported by the Department of Energy (Offices of Advanced Scientific Computing Research and Biological and Environmental Research) as part of the Scientific Discovery Through Advanced Computing program, grant DE-FG02-09ER25917, by the National Institute of General Medical Sciences of the National Institutes of Health, award number U01GM102098, and by the Office of Naval Research, grant N00014-11-1-0067. The content is solely the responsibility of the authors and does not necessarily represent the official views of DOE, NIH, or ONR.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Yuekai Sun.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

YS developed and implemented the lifting techniques. YS and MAS wrote the manuscript. RMTF and IT provided examples, interpreted results, and edited the manuscript. All authors read and approved the final manuscript.

Authors’ original submitted files for images

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Sun, Y., Fleming, R.M., Thiele, I. et al. Robust flux balance analysis of multiscale biochemical reaction networks. BMC Bioinformatics 14, 240 (2013). https://doi.org/10.1186/1471-2105-14-240

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-14-240

Keywords