libRoadRunner User Guide

libRoadRunner Overview

This guide is intended as an introduction and reference of the RoadRunner SBML Simulation Engine. This guide will show the most important features and provides a complete API reference.

To get you started here is a very simple script that will load an example SBML model and run a time course simulation and plot the results:

import roadrunner
rr = roadrunner.RoadRunner()
rr.load("mymodel.xml")
result = rr.simulate()
roadrunner.plot(result)

Looking for a model to start with? We included a couple with libRoadRunner, see Loading Models.

Note

The result is a structured numpy array which cannot be plotted using matplotlib directly. See Plotting Data for help in plotting.

Now read the tutorials to learn more about the capabilities of RoadRunner.

Contents:

Indices and tables

Table Of Contents

Next topic

Introduction

This Page