Abstract
Motivation
This article presents libRoadRunner 2.0, an extensible, high-performance, cross-platform, open-source software library for the simulation and analysis of models expressed using the systems biology markup language (SBML).
Results
libRoadRunner is a self-contained library, able to run either as a component inside other tools via its C++, C and Python APIs, or interactively through its Python or Julia interface. libRoadRunner uses a custom just-in-time (JIT) compiler built on the widely used LLVM JIT compiler framework. It compiles SBML-specified models directly into native machine code for a large variety of processors, making it fast enough to simulate extremely large models or repeated runs in reasonable timeframes. libRoadRunner is flexible, supporting the bulk of the SBML specification (except for delay and non-linear algebraic equations) as well as several SBML extensions such as hierarchical composition and probability distributions. It offers multiple deterministic and stochastic integrators, as well as tools for steady-state, sensitivity, stability and structural analyses.
Availability and implementation
libRoadRunner binary distributions for Windows, Mac OS and Linux, Julia and Python bindings, source code and documentation are all available at https://github.com/sys-bio/roadrunner, and Python bindings are also available via pip. The source code can be compiled for the supported systems as well as in principle any system supported by LLVM-13, such as ARM-based computers like the Raspberry Pi. The library is licensed under the Apache License Version 2.0.
1 Introduction
Dynamic network models (Sauro, 2014) of metabolic, gene regulatory, protein signaling and electrophysiological models require the specification of components, interactions, compartments and kinetic parameters. The systems biology markup language (SBML) (Hucka et al., 2003; Keating et al., 2020) has become the de facto standard for the declarative specification of these types of models (see SBML.org).
Popular tools for the development, simulation and analysis of models specified in SBML include COPASI (Hoops et al., 2006), the systems biology workbench (SBW) (Bergmann and Sauro, 2006), the systems biology simulation core library (Panchiwala et al., 2022), libSBMLSim (Takizawa et al., 2013), iBioSim (Myers et al., 2009), PySB (Lopez et al., 2013), PySCeS (Olivier et al., 2005) and VirtualCell (Moraru et al., 2008), as well as many legacy tools that have been superseded by more modern software. Some of these applications are stand-alone packages designed for interactive use. Very few are reusable libraries. Currently, none are fast enough to support emerging applications that require large-scale simulation of network dynamics (Maggioli et al., 2020). For example, multi-cell virtual-tissue simulations (Hester et al., 2011) often require simultaneous simulation of tens of thousands of replicas of models residing in their cell objects and interacting between cells. In addition, optimization methods require the generation of time series for tens of thousands of replicas to explore the high-dimensional parameter spaces typical of biochemical networks (Bouteiller et al., 2015).
Previously, we published libRoadRunner version 1, a cross-platform, multi-language library for fast execution of SBML model simulations. We designed libRoadRunner to provide: (i) Efficient time-series generation and analysis of large or multiple SBML-based models; (ii) A comprehensive and logical API; (iii) Interactive simulations in the style of IPython and MATLAB; and (iv) Extensibility. The library achieves its performance capabilities by compiling SBML directly into machine code ‘on-the-fly’ using LLVM as a ‘just-in-time’ (JIT) compiler (Lattner and Adve, 2004). The SBML model description is lexed and parsed into an abstract syntax tree using libSBML. Then libRoadRunner creates the necessary low-level LLVM intermediate representation (IR) code for compiling the SBML. Once compiled, the SBML representation of the model has been converted into an in-memory dynamic library from which symbols representing model functions can be exported and loaded into other languages. libRoadRunner wraps this low-level interface in user-friendly C and C++ APIs, which, in turn, provide the foundation for critical systems modelling tasks, such as model integration, steady-state analysis and metabolic control analysis (Somogyi et al., 2015).libRoadRunner users usually fall into one of two categories: modellers or tool developers. Modellers use the libRoadRunner tool directly in their research for modelling dynamic systems (Karagöz et al., 2021; Köller et al., 2021a, b) or for developing new computational approaches such as detecting bistable switches (Reyes et al., 2022) or performing dynamic flux balance analysis (Watanabe et al., 2018). Tool developers, on the other hand, use libRoadRunner as a core SBML handling component in their modular software design, such as in Tellurium (Choi et al., 2018), runBiosimulations (Shaikh et al., 2021), MASSPy (Haiman et al., 2021), SBMLsim (https://github.com/matthiaskoenig/sbmlsim), Compucell3D (Swat et al., 2012), PhysiCell (Ghaffarizadeh et al., 2018), pyBioNetFit (Neumann et al., 2022), pyViPR (Ortega and Lopez, 2020) and DIVIPAC (Nguyen et al., 2015).
In this work, we present libRoadRunner version 2. We have improved performance both for single-model and multi-model simulations. We have expanded the range of available features to include additional steady-state solvers, as well as time-dependent sensitivity analysis (see example in Fig. 1).
2 Major changes to 2.0
2.1 Performance improvements
In previous versions of libRoadRunner, loading many RoadRunner instances was slow because each model must JIT compile SBML to binary code. We have addressed this problem in several ways (i) by increasing the speed of compilation of a single model; (ii) by making it easy to compile multiple models simultaneously and (iii) by providing a ‘direct’ API for access to the model topology outside of modifying the SBML directly (reducing the amount of re-compilations).
2.1.1 LLJit: a new JIT compiler
To increase the speed of compiling SBML to machine code, we have built a new JIT compiler called LLJit to replace the previous MCJit. LLJit uses LLVM version 13’s ‘ORC JIT v2’ API which provides an out-of-the-box but modular and customizable tool for JIT compiling LLVM IR code to machine code. It was not necessary to modify the LLVM IR generation stage of the compilation process, but a new strategy was designed to perform the compilation step. Our implementation of LLJit uses the standard object linking layer but a customized compile layer that automatically caches model object files in memory for fast reloading. The process of switching to the LLJit compiler is shown in Listing 1.
Listing 1.
from roadrunner import RoadRunner, Config
Config.setValue(
Config.LLVM_BACKEND, Config.LLJIT)
rr = RoadRunner(sbmlFile)
2.1.2 RoadRunnerMap: a parallel RoadRunner container
Because RoadRunner models are computationally expensive to compile, we have made it easy for users to make use of their multi-core system for compiling multiple models in parallel. libRoadRunner uses a lightweight abstraction around the standard C++17 threading library called thread_pool (Shoshany, 2021) for queuing build jobs and then storing references to compiled RoadRunner models in a thread-safe hash map structure called RoadRunnerMap. To construct a RoadRunnerMap, a collection of SBML files or strings are passed to the RoadRunnerMap constructor, along with an integer specifying the number of threads to use (Listing 2).To demonstrate the capabilities of libRoadRunner v2, we have measured the time it takes for the MCJit and LLJit compilers to load and simulate over 1100 models from the curated section of the BioModels database (Malik-Sheriff et al., 2020) using either the native-Python concurrent package, or using the RoadRunnerMap construct, both with different numbers of threads. As can be seen in Figure 2, the new LLJit compiler is more than three times faster than the previous MCJit compiler in both contexts, making it the fastest compiler we have built to date. Increasing the number of threads decreases runtime but with diminishing returns. The RoadRunnerMap construct was seen to be faster than the native Python ‘concurrent’ multithreading approach at lower numbers of threads, but slower than the native at higher numbers of threads. We hypothesize this is due to the RoadRunnerMap controlling thread taking up a significant portion of the clock time: because the parallelization occurs entirely in C++, the Python thread itself remains unoptimized. When using the native-Python concurrent package, that control is better managed by Python itself.
Listing 2.
from roadrunner import RoadRunnerMap
rrm = RoadRunnerMap(listOfSBML, 3)
2.1.3 Pickled (serialized) RoadRunner
Once loaded, users can save a model’s state either to a binary string for in-memory storage or to a disk for persistent storage. The result is a platform-specific binary snapshot of a RoadRunner object which can be reloaded with significant performance improvements compared to recompiling the model. Listing 3 demonstrates this functionality.In Python, a prerequisite for using RoadRunner with various parallel or multithreading toolboxes is the ability to serialize an instance of a RoadRunner object using Python’s standardized ‘pickle’ protocol. We have built an adaptor between our in-house RoadRunner serialization strategy and Python’s pickle protocol so that our users can now build their own parallel applications on top of libRoadRunner. We anticipate that this will be valuable to the systems biology community, particularly for problems involving repeated time-series simulations such as optimization or stochastic simulations. An example of the latter is shown in Listing 4.
Listing 3.
from roadrunner import RoadRunner
rr = RoadRunner(sbmlFile)
# save state to string
rr.saveState(fileName)
# load state
rrReloaded = RoadRunner()
rrReloaded.loadState(fileName)
Listing 4.
from multiprocessing import Pool
from roadrunner import RoadRunner
def simulate_worker(rr: RoadRunner):
rr.resetAll()
return rr.simulate(0, 10, 11)
rr = RoadRunner(sbmlFile)
rr.setIntegrator(’gillespie’)
if __name__==’__main__’:
p = Pool(processes = 8)
results = p.map(
simulate_worker,
[rr for i in range(100000)])
2.2 Direct API
In libRoadRunner version 1, any changes to the model structure required the modification, re-parsing and re-compiling of the SBML. Since these operations are computationally expensive and potentially convoluted, we have implemented an API for interacting directly with the internal object model. This ‘direct’ API allows users to add and remove SBML components such as compartments, species, reactions and events programmatically, without the need to re-parse the model after each change. Since these changes require model recompilation before use, we provide an argument called forceRegenerate to all direct API functions which give users the ability to control when the model is recompiled—i.e. only after all model changes are complete. Listing 5 provides an example using this API.
Listing 5.
from roadrunner import RoadRunner
rr = RoadRunner(sbmlFile)
rr.addSpecies(“A”, “cell”,
initConcentration = 5.0,
forceRegenerate=False
)
rr.addReaction(“ADeg”, [“A”], [], 0.5*A, True)
2.3 Julia language bindings
The Julia programming language has gained traction with the systems biology community in recent years. We have therefore implemented language bindings to connect Julia users to libRoadRunner. While our Python bindings are implemented using SWIG (Beazley et al., 1996), there is no Julia interface for SWIG, so our Julia bindings use ccall internally to expose symbols from the libRoadRunner shared library to a Julia API. Listing 6 demonstrates the use of this API in Julia.
Listing 6.
# get julia bindings
import Pkg
Pkg.add(“RoadRunner”)
# simulate a model
using RoadRunner
rr = RoadRunner.createRRInstance()
RoadRunner.loadSBML(rr, sbmlString)
S = RoadRunner.getFloatingSpeciesIds(rr)
data = RoadRunner.simulateEx(rr, 0, 40, 500)
2.4 Plugin system
We have developed a flexible and robust plugin system that tightly integrates extensions to the libRoadRunner with various functionalities. Anyone can incorporate a computational routine based on an instance of libRoadRunner which can greatly increase the performance, with the only requirement being the plugin code to be written in C++ and available at the compile time. Several examples such as parameter estimation algorithms that use libRoadRunner solvers and an interface to AUTO (Doedel, 1981) for bifurcation analysis are available in the documentation. Listing 7 illustrates a simple example of using the AUTO plugin for bifurcation analysis.
Listing 7.
from rrplugins import *
auto = Plugin(“tel_auto2000”)
# Set parameters
auto.setProperty(“SBML”, sbmlString)
auto.setProperty(“NMX”, 5000)
auto.setProperty(“ScanDirection”, “Positive”)
# Execute the plugin
auto.execute()
# Plot bifurcation diagram
pts = auto. BifurcationPoints
lbls = auto. BifurcationLabels
biData = auto. BifurcationData
biData.plotBifurcationDiagram(pts, lbls)
2.5 Miscellaneous new functionality
In 2019, a new SBML specification was released [level 3 version 2 (Hucka et al., 2019)]. We now support the features of the new specification, including additional MathML functions, cases with ‘missing’ elements that are now valid in SBML, and the presence of Boolean values where numeric values are expected, and vice versa. In addition, we now fully support the ‘Distributions’ SBML package (Smith et al., 2020), which defines new functions that stochastically draw values from known distributions, even in otherwise deterministic conditions (such as initial species levels).
Version 2 of libRoadRunner also includes a number of other miscellaneous changes. These include additions to numerical routines used to solve differential equations for the time course and for computing the steady state. In particular, we have implemented a basic Euler integration method which has been used for certain time-critical applications and the RK45 solver which can be used to double-check the accuracy of the time course solution generated by the default CVODE implementation. We have also included support for variable stoichiometries in reactions. The Antimony language (Smith et al., 2009) has been updated to reflect this change.
Like our CVODE implementation, our time series sensitivity implementation uses the popular Sundials package (Hindmarsh et al., 2005). Specifically, we have two strategies for solving the sensitivity equations. They can either be solved simultaneously with the system equations (Maly and Petzold, 1996) or solved using a staggered approach (Caracotsios and Stewart, 1995).libRoadRunner version 2 also makes use of the Sundials ‘kinsol’ library for new steady-state solvers. Specifically, we support the Inexact Newton approach (Brown, 1987). As a result, version 2 now gives the user access to two nonlinear solvers.
For Windows users, we also provided an updated installer that will install an independent but complete working environment for biochemical modelling. The installer distributes the latest Spyder IDE (https://www.spyder-ide.org/) as well as the Jupyter notebook interface (Kluyver et al., 2016). Note that libRoadRunner and associated tools can be easily installed on open platforms such as Colaboratory (Carneiro et al., 2018) using pip.
User control over roadrunner functionality has also been improved. Time-series simulations, steady-state calculations and approximation routines, among others, now have more options for the user and can be used on a wider variety of models. Other changes in libRoadRunner version 2 include improved compliance with the SBML Test Suite (Smith, 2022), and a new automatic build and test system using updated dependencies, which allows us to release more frequently, with fewer bugs. Overall, we have resolved over 250 issues since 2018, filed by 23 different people.
3 Discussion
libRoadRunner is a fast and convenient tool for both individuals who are investigating the dynamics of a biological system and tool developers who are building new methods for solving and analysing such systems. In version 2, we have built a variety of new tools for the construction, compilation, analysis and solving of dynamical systems described in SBML.
libRoadRunner version 1 was highly optimized for the simulation of dynamical systems thanks to our JIT compilation strategy. As a result, libRoadRunner was the fastest available SBML dedicated simulator (Maggioli et al., 2020; Panchiwala et al., 2022; Somogyi et al., 2015). However, one of the disadvantages of our strategy is that when the need arises for the simulation of many SBML models together, the run time is dominated by the compile time. Examples of such a need include ensemble modelling, where many instances of SBML with varying parameters or typologies need to be simulated simultaneously. With the new changes we describe in this article, our performance metrics have increased even further.
To alleviate this bottleneck, we have prioritized new features that enhance the speed with which a model can be compiled. One such feature is an entirely new compiler called LLJit which sits side-by-side with the older MCJit. We have demonstrated that LLJit is significantly faster than earlier libRoadRunner implementations (Fig. 2) at compiling the same code. Similarly, once loaded, a model may be modified (even to the extent of adding or removing model elements) more rapidly than loading a new model from scratch, and new functions have been added to allow this, as well.
While decreasing the compile time is a worthy goal, there is a natural limit to the speed with which a single model can be compiled. An alternative mechanism for enhancing performance in multi-model problems is to make better use of the available resources that exist in most modern computer systems using parallelism. We have introduced parallelism in two ways. First, we have built a RoadRunner container called RoadRunnerMap which is capable of orchestrating parallel compiles. Secondly, we have implemented support for Python’s pickle protocol. While the former enables us to abstract parallelism away from the user completely, the latter allows our more experienced users to devise their own parallel computation.
4 Conclusion
With the advent of the changes introduced into libRoadRunner version 2, the library is now more efficient in running, loading and changing models at runtime. These features were added to support a number of specific use cases. These include two main applications: parameter optimization on large compute clusters, and using libRoadRunner to create large model ensembles that include variation in parameters as well as rate laws and network topology.
Acknowledgements
The authors are most grateful to generous funding from the National Institute of General Medical Sciences of the National Institutes of Health under award R01 GM-123032. The content is solely the responsibility of the authors and does not necessarily represent the official views of the National Institutes of Health or the University of Washington. We would like to thank the many users who have contributed to libRoadRunner via suggestions for improvements and bug reports.
Funding
This work was supported by the National Institute of Health [GM123032-04], the National Science Foundation [1933453], and the Federal Ministry of Education and Research (BMBF, Germany) within the research network Systems Medicine of the Liver (LiSyM) [031L0054] and by the German Research Foundation (DFG) within the Research Unit Programme FOR 5151 ‘QuaLiPerF (Quantifying Liver Perfusion-Function Relationship in Complex Resection—A Systems Medicine Approach)’ by [436883643] and [465194077] (Priority Programme SPP 2311, Subproject SimLivA) to M.K.; KIAS Individual Grants [CG077001 to K.C.].
Acknowledgement
Conflict of Interest: none declared.
Contributor Information
Ciaran Welsh, Department of Bioengineering, University of Washington, Seattle, WA 98195, USA.
Jin Xu, Department of Bioengineering, University of Washington, Seattle, WA 98195, USA.
Lucian Smith, Department of Bioengineering, University of Washington, Seattle, WA 98195, USA.
Matthias König, Institute of Biology, Institute of Theoretical Biology, Humboldt-University Berlin, Berlin 10115, Germany.
Kiri Choi, School of Computational Sciences, Korea Institute for Advanced Study, Seoul 02455, Republic of Korea.
Herbert M Sauro, Department of Bioengineering, University of Washington, Seattle, WA 98195, USA.
Data availability
libRoadRunner source code is available from our GitHub webpage at https://github.com/sys-bio/roadrunner/ and precompiled binaries are available for Windows, Mac OS and Linux operating systems at https://github.com/sys-bio/roadrunner/releases. The Windows front end for Tellurium (which includes the latest version of roadrunner) is available at https://github.com/sys-bio/tellurium#front-end-1-tellurium-spyder-ide. Python bindings are available both as wheel files from the releases page and from pypi.org installable through pip:
pip install libroadrunner
The Julia source code is available at https://github.com/sys-bio/RoadRunner.jl and can be installed via Julia’s package manager with Pkg.add(”RoadRunner”).
The scripts used to generate the data for this article are available at https://github.com/saurolab-papers/rr2.0_paper.
References
- Beazley D.M. et al. (1996) SWIG: an easy to use tool for integrating scripting languages with C and C++. In: Proceedings of the 4th USENIX Tcl/Tk Workshop, Monterey, California, pp. 129–139.
- Bergmann F.T., Sauro H.M. (2006) SBW - a modular framework for systems biology. In: WSC ’06 Proceedings of the 38th Conference on Winter Simulation. Winter Simulation Conference, Monterey, California, pp. 1637–1645.
- Bouteiller J.-M.C. et al. (2015) Maximizing predictability of a bottom-up complex multi-scale model through systematic validation and multi-objective multi-level optimization. In: 2015 7th International IEEE/EMBS Conference on Neural Engineering (NER). IEEE, pp. 300–303.
- Brown P.N. (1987) A local convergence theory for combined inexact-newton/finite-difference projection methods. SIAM J. Numer. Anal., 24, 407–434. [Google Scholar]
- Caracotsios M., Stewart W. (1995) Sensitivity analysis of initial-boundary-value problems with mixed PDEs and algebraic equations: applications to chemical and biochemical systems. Comput. Chem. Eng., 19, 1019–1030. [Google Scholar]
- Carneiro T. et al. (2018) Performance analysis of google colaboratory as a tool for accelerating deep learning applications. IEEE Access, 6, 61677–61685. [Google Scholar]
- Choi K. et al. (2018) Tellurium: an extensible python-based modeling environment for systems and synthetic biology. Biosystems, 171, 74–79. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Doedel E.J. (1981) Auto: a program for the automatic bifurcation analysis of autonomous systems. Congr. Numer., 30, 25–93. [Google Scholar]
- Ghaffarizadeh A. et al. (2018) Physicell: an open source physics-based cell simulator for 3-d multicellular systems. PLoS Comput. Biol., 14, e1005991. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Haiman Z.B. et al. (2021) MASSpy: building, simulating, and visualizing dynamic biological models in python using mass action kinetics. PLoS Comput. Biol., 17, e1008208. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Hester S.D. et al. (2011) A multi-cell, multi-scale model of vertebrate segmentation and somite formation. PLoS Comput. Biol., 7, e1002155. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Hindmarsh A.C. et al. (2005) SUNDIALS: suite of nonlinear and differential/algebraic equation solvers. ACM Transactions on Mathematical Software (TOMS), 31, 363–396. [Google Scholar]
- Hoops S. et al. (2006) COPASI—a complex pathway simulator. Bioinformatics, 22, 3067–3074. [DOI] [PubMed] [Google Scholar]
- Hucka M. et al. ; SBML Forum. (2003) The systems biology markup language (SBML): a medium for representation and exchange of biochemical network models. Bioinformatics, 19, 524–531. [DOI] [PubMed] [Google Scholar]
- Hucka M. et al. (2019) The systems biology markup language (SBML): language specification for level 3 version 2 core release 2. J. Integr. Bioinformatics, 16, 20190021. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Karagöz Z. et al. (2021) Win, lose, or tie: mathematical modeling of ligand competition at the cell–extracellular matrix interface. Front. Bioeng. Biotechnol., 9, 340. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Keating S.M. et al. ; SBML Level 3 Community members. (2020) SBML level 3: an extensible format for the exchange and reuse of biological models. Mol. Syst. Biol., 16, e9110. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Kluyver T. et al. (2016) Jupyter Notebooks - A Publishing Format for Reproducible Computational Workflows, Vol. 2016. IOS Press, Amsterdam, NL. [Google Scholar]
- Köller A. et al. (2021a) Physiologically based modeling of the effect of physiological and anthropometric variability on indocyanine green based liver function tests. Front. Physiol., 12, 757293. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Köller A. et al. (2021b) Prediction of survival after partial hepatectomy using a physiologically based pharmacokinetic model of indocyanine green liver function tests. Front. Physiol., 12, 730418. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Lattner C., Adve V. (2004) LLVM: a compilation framework for lifelong program analysis & transformation. In: Code Generation and Optimization 2004. IEEE, pp. 75–86.
- Lopez C.F. et al. (2013) Programming biological models in python using PySB. Mol. Syst. Biol., 9, 646. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Maggioli F. et al. (2020) SBML2Modelica: integrating biochemical models within open-standard simulation ecosystems. Bioinformatics, 36, 2165–2172. [DOI] [PubMed] [Google Scholar]
- Malik-Sheriff R.S. et al. (2020) Biomodels–15 years of sharing computational models in life science. Nucleic Acids Res., 48, D407–D415. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Maly T., Petzold L.R. (1996) Numerical methods and software for sensitivity analysis of differential-algebraic systems. Appl. Numer. Math., 20, 57–79. [Google Scholar]
- Moraru I.I. et al. (2008) Virtual cell modelling and simulation software environment. IET Syst. Biol., 2, 352–362. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Myers C.J. et al. (2009) iBioSim: a tool for the analysis and design of genetic circuits. Bioinformatics, 25, 2848–2849. [DOI] [PubMed] [Google Scholar]
- Neumann J. et al. (2022) Implementation of a practical Markov chain Monte Carlo sampling algorithm in PyBioNetFit. Bioinformatics, 38, 1770–1772. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Nguyen L.K. et al. (2015) DYVIPAC: an integrated analysis and visualisation framework to probe multi-dimensional biological networks. Sci. Rep., 5, 12569–12517. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Olivier B.G. et al. (2005) Modelling cellular systems with PySCeS. Bioinformatics, 21, 560–561. [DOI] [PubMed] [Google Scholar]
- Ortega O.O., Lopez C.F. (2020) Interactive multiresolution visualization of cellular network processes. iScience, 23, 100748. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Panchiwala H. et al. (2022) The systems biology simulation core library. Bioinformatics, 38, 864–865. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Reyes B.C. et al. (2022) A numerical approach for detecting switch-like bistability in mass action chemical reaction networks with conservation laws. BMC Bioinformatics, 23, 1–26. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Sauro H.M. (2014) Systems Biology: An Introduction to Pathway Modeling. Ambrosius Publishing. [Google Scholar]
- Shaikh B. et al. (2021) RunBioSimulations: an extensible web application that simulates a wide range of computational modeling frameworks, algorithms, and formats. Nucleic Acids Res., 49, W597–W602. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Shoshany B. (2021) A C++ 17 thread pool for high-performance scientific computing. arXiv preprint arXiv:2105.00613.
- Smith L. (2022) Test results: libRoadRunner 2.2.0.
- Smith L.P. et al. (2009) Antimony: a modular model definition language. Bioinformatics, 25, 2452–2454. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Smith L.P. et al. (2020) Systems biology markup language (SBML) level 3 package: distributions, version 1, release 1. J. Integr. Bioinformatics, 17, 20200018. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Somogyi E.T. et al. (2015) libRoadRunner: a high performance SBML simulation and analysis library. Bioinformatics, 31, 3315–3321. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Swat M.H. et al. (2012) Multi-scale modeling of tissues using compucell3d. Methods Cell Biol., 110, 325–366. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Takizawa H. et al. (2013) LibSBMLSim: a reference implementation of fully functional SBML simulator. Bioinformatics, 29, 1474–1476. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Watanabe L.H. et al. (2018) Dynamic flux balance analysis models in SBML. Bioinformatics. 10.1101/245076. [DOI] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Data Availability Statement
libRoadRunner source code is available from our GitHub webpage at https://github.com/sys-bio/roadrunner/ and precompiled binaries are available for Windows, Mac OS and Linux operating systems at https://github.com/sys-bio/roadrunner/releases. The Windows front end for Tellurium (which includes the latest version of roadrunner) is available at https://github.com/sys-bio/tellurium#front-end-1-tellurium-spyder-ide. Python bindings are available both as wheel files from the releases page and from pypi.org installable through pip:
pip install libroadrunner
The Julia source code is available at https://github.com/sys-bio/RoadRunner.jl and can be installed via Julia’s package manager with Pkg.add(”RoadRunner”).
The scripts used to generate the data for this article are available at https://github.com/saurolab-papers/rr2.0_paper.