Skip to main content

Computationally efficient flux variability analysis

Abstract

Background

Flux variability analysis is often used to determine robustness of metabolic models in various simulation conditions. However, its use has been somehow limited by the long computation time compared to other constraint-based modeling methods.

Results

We present an open source implementation of flux variability analysis called fastFVA. This efficient implementation makes large-scale flux variability analysis feasible and tractable allowing more complex biological questions regarding network flexibility and robustness to be addressed.

Conclusions

Networks involving thousands of biochemical reactions can be analyzed within seconds, greatly expanding the utility of flux variability analysis in systems biology.

Background

Flux balance analysis (FBA) [1, 2] is concerned with the following linear program (LP)

max v c T v subject to S v = 0 v l v v u
(1)

where the matrix S is an m × n stoichiometry matrix with m metabolites and n reactions and c is the vector representing the linear objective function. The decision variables v represent fluxes, with V n and vectors v l and v u specify lower and upper bounds, respectively. The constraints Sv = 0 together with the upper and lower bounds specify the feasible region of the problem.

Flux variability analysis (FVA) [3] is used to find the minimum and maximum flux for reactions in the network while maintaining some state of the network, e.g., supporting 90% of maximal possible biomass production rate.

Applications of FVA for molecular systems biology include, but are not limited to, the exploration of alternative optima of (1) [3], studying flux distributions under suboptimal growth [4], investigating network flexibility and network redundancy [5], optimization of process feed formulation for antibiotic production [6], and optimal strain design procedures as a pre-processing step [7, 8].

Let w represent some biological objective such as biomass or ATP production. After solving (1) with c = w, FVA solves two optimization problems for each flux v i of interest

max v / min v v i subject to S v = 0 w T v γ Z 0 v l v v u
(2)

where Z0 = wTv0 is an optimal solution to (1), γ is a parameter, which controls whether the analysis is done w.r.t. suboptimal network states (0 ≤ γ < 1) or to the optimal state (γ = 1). Assuming that all n reactions are of interest, FVA requires the solution of 2n LPs. While FVA is clearly an embarrassingly parallel problem and is therefore ideally suited for computer clusters, this note focuses on how FVA can be run efficiently on a single CPU. A multi-CPU implementation of fastFVA can be done in the same way as for FVA, i.e., by distributing subsets of the n reactions to individual CPUs. It is expected to give almost linear speedup for sufficiently large problems.

Implementation

A direct implementation of FVA iterates through all the n reactions and solves the two optimization problems in (2) from scratch each time by calling a specialized LP solver, such as GLPK [9] or CPLEX (IBM Inc.) At iteration i, i = 1, 2, ..., n all elements of c are zero except c i = 1. Since the only difference between each iteration is a change in the objective function, i.e., the feasible region does not change, solving the LPs from scratch is wasteful. Each time a LP is solved, the solver has to spend some effort in finding a feasible solution. Once a feasible solution is found, the solver then proceeds to locate the optimum. The small changes in the objective function suggest that, on average, the optimum for iteration i does not lie far away from the optimum for iteration i + 1. With Simplex-type LP algorithms, this property can be exploited by solving problem (1) from scratch and then solving the subsequent 2n problems of (2) by starting from the last optimum solution each time (warm-starts). It should be noted that the default behavior of some Simplex-type solvers is to use warm-starts when a sequence of LPs is solved within the same application call. However, current implementations of FVA do not make use of this option (c.f. [10]). Furthermore, for increased efficiency, model preprocessing (presolving) should be disabled after solving the initial problem P. Given a value of 0 < γ ≤ 1, fastFVA performs the following procedure

Setup problem (1), denote it by P

Solve P from scratch to get v0 and Z0

Add the constraint wTvγZ0 to P

for i = 1 to n

   Let c i = 1 and c j = 0, ji

   Maximize P, starting from v i- 1

                     to get v i and Z i

   maxFlux i = Z i

Once all maximization problems have been solved, the minimization problems are solved in the same way, starting from v0 = v n .

An important difference between the various LP solvers available is their ability to exploit multiple core CPUs or multi-processor CPUs to increase performance. The GLPK solver, for example, is a single threaded application. When running on a quad-core machine with hyperthreading enabled, the CPU load is only at 12-13%. On multi-core machines, a significant speedup can often be achieved by simply running multiple instances of fastFVA, each working on a different subset of the n reactions.

The fastFVA package runs within the Matlab environment, which will facilitate the use of fastFVA by users less experienced in programming. In addition, many biochemical network models can be imported into Matlab using the Systems Biology Markup Language (SBML) and the COBRA toolbox [10].

The fastFVA code is written in C++ and is compiled as a Matlab EXecutable (MEX) file (additional file 1). Matlab's PARFOR command is used to exploit multi-core machines. Two different solvers are supported, the open-source GLPK package [9], and the industrial strength CPLEX solver from IBM.

Results and Discussion

We evaluated the performance of fastFVA on six biochemical network models ranging from approx. 650 up to 13,700 reactions (Table 1, additional file 2).

Table 1 The models used in the experiments

Performance evaluation

Four metabolic networks and two versions of a genome-scale network of the transcriptional and translational (tr/tr) machinery of E. coli were used for testing the fastFVA code (Table 1). The biomass reaction was used as an objective in the metabolic models, while the demand of ribosomal 50 S subunit was used as the objective in the tr/tr models. In all cases, flux distributions corresponding to at least 90% of optimal network functionality were sought.

The fastFVA code was tested on a DELL T1500 desktop computer with a 2.8 GHz quad core Intel i7 860 processor with hyperthreading enabled and Windows 7.

Running times

The running times are given in Table 2 where fastFVA is compared to the direct implementation of FVA found in the COBRA toolbox [10]. The observed speedup is significant, ranging from 30 to 220 times faster for GLPK and from 20 to 120 times faster for CPLEX. The minimum and maximum flux values obtained with fastFVA were essentially identical to the values obtained with the direct approach (data not shown).

Table 2 Running time (s) for fastFVA versus a direct FVA implementation

Other uses of fastFVA

The fastFVA code can be used to compute the flux-spectrum [11], a variant of metabolic flux analysis, simply by setting γ = 0 in (2). The α-spectrum [12], which has been used to study flux distributions in terms of extreme pathways, can also be computed with fastFVA. In this case, the parameter γ in (2) is set to zero and the S matrix is replaced by a matrix P containing the extreme pathways as its columns.

Conclusions

With this efficient FVA tool in hand, new questions can be addressed to study the flexibility of biochemical reaction networks in different environmental and genetic conditions. It is now possible to design computational experiments requiring hundreds or even thousands of FVAs.

Availability and requirements

The fastFVA package is freely available at http://notendur.hi.is/ithiele/software/fastfva.html together with pre-compiled binaries for Linux and Microsoft Windows. The fastFVA code runs under Matlab and relies on third-party solvers to solve linear optimization problems. Two such solvers are supported, the open source GLPK [9] and the industrial strength CPLEX (IBM Inc.) The fastFVA code is written in C++ and is compiled as a Matlab EXecutable function (MEX). It is released under GNU LGPL.

References

  1. Fell D, Small J: Fat synthesis in adipose tissue. An examination of stoichiometric constraints. Biochem J 1986, 238(3):781.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  2. Savinell J, 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 

  3. Mahadevan R, Schilling C: The effects of alternate optimal solutions in constraint-based genome-scale metabolic models. Metabolic engineering 2003, 5(4):264–276. 10.1016/j.ymben.2003.09.002

    Article  CAS  PubMed  Google Scholar 

  4. Reed J, Palsson B: Genome-scale in silico models of E. coli have multiple equivalent phenotypic states: assessment of correlated reaction subsets that comprise network states. Genome Research 2004, 14(9):1797. 10.1101/gr.2546004

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  5. Thiele I, Fleming R, Bordbar A, Schellenberger J, Palsson BO: Functional characterization of alternate optimal solutions of Escherichia coli 's transcriptional and translational machinery. Biophysical Journal 2010, in press.

    Google Scholar 

  6. Bushell M, Sequeira S, Khannapho C, Zhao H, Chater K, Butler M, Kierzek A, Avignone-Rossa C: The use of genome scale metabolic flux variability analysis for process feed formulation based on an investigation of the effects of the zwf mutation on antibiotic production in Streptomyces coelicolor . Enzyme and Microbial Technology 2006, 39(6):1347–1353. 10.1016/j.enzmictec.2006.06.011

    Article  CAS  Google Scholar 

  7. Pharkya P, Maranas C: An optimization framework for identifying reaction activation/inhibition or elimination candidates for overproduction in microbial systems. Metabolic engineering 2006, 8: 1–13. 10.1016/j.ymben.2005.08.003

    Article  CAS  PubMed  Google Scholar 

  8. Feist A, Zielinski D, Orth J, Schellenberger J, Herrgard M, Palsson B: Model-driven evaluation of the production potential for growth-coupled products of Escherichia coli . Metabolic Engineering 2009, 12: 173–186. 10.1016/j.ymben.2009.10.003

    Article  PubMed  PubMed Central  Google Scholar 

  9. Makhorin A: Glpk (gnu linear programming kit), version 4.42.[http://www.gnu.org/software/glpk/]

  10. Becker S, Feist A, Mo M, Hannum G, Palsson B, Herrgard M: Quantitative prediction of cellular metabolism with constraint-based models: the COBRA Toolbox. Nat Protoc 2007, 2(3):727–738. 10.1038/nprot.2007.99

    Article  CAS  PubMed  Google Scholar 

  11. Llaneras F, Pico J: An interval approach for dealing with flux distributions and elementary modes activity patterns. Journal of theoretical biology 2007, 246(2):290–308. 10.1016/j.jtbi.2006.12.029

    Article  CAS  PubMed  Google Scholar 

  12. Wiback S, Mahadevan R, Palsson B: Reconstructing metabolic flux vectors from extreme pathways: defining the α -spectrum. Journal of theoretical biology 2003, 224(3):313–324. 10.1016/S0022-5193(03)00168-1

    Article  CAS  PubMed  Google Scholar 

  13. Zhang Y, Thiele I, Weekes D, Li Z, Jaroszewski L, Ginalski K, Deacon A, Wooley J, Lesley S, Wilson I, Palsson B, Osterman A, Godzik A: Three-Dimensional Structural View of the Central Metabolic Network of Thermotoga maritima . Science 2009, 325(5947):1544. 10.1126/science.1174671

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  14. Nogales J, Palsson B, Thiele I: A genome-scale metabolic reconstruction of Pseudomonas putida KT 2440: iJN 746 as a cell factory. BMC Systems Biology 2008, 2: 79. 10.1186/1752-0509-2-79

    Article  PubMed  PubMed Central  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. Molecular systems biology 2007, 3.

    Google Scholar 

  16. Duarte N, Becker S, Jamshidi N, Thiele I, Mo M, Vo T, Srivas R, Palsson B: Global reconstruction of the human metabolic network based on genomic and bibliomic data. Proc Natl Acad Sci 2007, 104(6):1777. 10.1073/pnas.0610772104

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  17. Thiele I, Jamshidi N, Fleming RMT, Palsson B: Genome-Scale Reconstruction of Escherichia coli 's Transcriptional and Translational Machinery: A Knowledge Base, Its Mathematical Formulation, and Its Functional Characterization. PLoS Comput Biol 2009, 5(3):e1000312. 10.1371/journal.pcbi.1000312

    Article  PubMed  PubMed Central  Google Scholar 

Download references

Acknowledgements

We want to thank the authors of GLPK, GLPKMEX and CPLEXINT for making their code publicly available. We would like to thank the anonymous reviewers for their helpful comments. The authors are also grateful to Ronan M.T. Fleming for valuable discussions.

This study was supported by the Office of Science (ASCR), Department of Energy, under Award Number DE-SC00092009 ("Numerical Optimization Algorithms and Software for Systems Biology").

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Ines Thiele.

Additional information

Authors' contributions

IT conceived and designed the study. SG implemented fastFVA and carried out the experiments. Both authors wrote the manuscript and approved its final version.

Electronic supplementary material

12859_2010_3946_MOESM1_ESM.ZIP

Additional file 1: This file contains the C++ source code, the pre-compiled binaries, an example on how to use fastFVA and scripts for carrying out the experiments described above. (ZIP 51 KB)

Additional file 2: This file contains the six metabolic networks used in the experiments. (ZIP 3 MB)

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

Gudmundsson, S., Thiele, I. Computationally efficient flux variability analysis. BMC Bioinformatics 11, 489 (2010). https://doi.org/10.1186/1471-2105-11-489

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-11-489

Keywords