• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.ci/H26-Nov-2020-6945

.graphics/H03-May-2022-

config/H26-Nov-2020-24,08020,227

dev/H26-Nov-2020-23,41618,069

docs/H03-May-2022-48,77829,351

examples/H03-May-2022-83,62846,411

macosx/H26-Nov-2020-1,8871,614

src/H03-May-2022-1,742,7871,073,966

.gitignoreH A D25-Nov-20202.8 KiB230186

.sonarcloud.propertiesH A D26-Aug-2020286 98

.travis.ymlH A D26-Aug-20203 KiB7772

CODE_OF_CONDUCT.mdH A D02-Jul-20203.7 KiB4728

CONTRIBUTING.mdH A D26-Aug-20201.5 KiB2512

Makefile.inH A D25-Nov-202050.7 KiB1,048752

README.mdH A D25-Nov-202010.2 KiB14396

VERSION_PACKAGES.acH A D02-Jul-20206.7 KiB120100

acinclude.m4H A D02-Jul-2020676 2421

aclocal.m4H A D25-Nov-2020708 1611

arrays-package.cmakeH A D02-Jul-20202.3 KiB5849

autogen.shH A D02-Jul-2020429 304

cmake_uninstall.cmake.inH A D02-Jul-20204.4 KiB123110

common.cmakeH A D02-Jul-20203.6 KiB10592

comp-package.cmakeH A D02-Jul-20202.1 KiB4642

configureH A D25-Nov-2020971.5 KiB28,98123,002

configure.acH A D02-Jul-202039.8 KiB969801

distrib-package.cmakeH A D02-Jul-20202.2 KiB5045

dyn-package.cmakeH A D02-Jul-20202.1 KiB4942

fbc-package.cmakeH A D02-Jul-20202.1 KiB4743

groups-package.cmakeH A D02-Jul-20202.1 KiB4642

l3v2extendedmath-package.cmakeH A D02-Jul-20202.5 KiB6352

layout-package.cmakeH A D02-Jul-20202.1 KiB4642

libsbml.spec.inH A D02-Jul-202010.8 KiB311263

libtoolize.shH A D02-Jul-2020863 3910

multi-package.cmakeH A D02-Jul-20202.1 KiB4941

pull_request_template.mdH A D02-Jul-2020972 2317

qual-package.cmakeH A D02-Jul-20202.1 KiB4642

render-package.cmakeH A D02-Jul-20202.6 KiB5952

req-package.cmakeH A D02-Jul-20202 KiB4439

spatial-package.cmakeH A D02-Jul-20202.2 KiB5045

README.md

1libSBML<img width="22%" align="right" src=".graphics/libsbml-logo-and-name.svg">
2=============================================================================
3
4LibSBML is an open-source library for working with SBML (the Systems Biology Markup Language).  It is written in C++ and provides language bindings for many other programming languages.
5
6[![License](https://img.shields.io/badge/License-LGPL-blue.svg?style=flat-square)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html)
7[![Stable release](https://img.shields.io/badge/Stable_release-5.18.0-brightgreen.svg?style=flat-square)](https://sourceforge.net/projects/sbml/files/libsbml/5.18.0/stable/)
8[![Experimental release](https://img.shields.io/badge/Experimental_release-5.18.0-b44e88.svg?style=flat-square)](https://sourceforge.net/projects/sbml/files/libsbml/5.18.0/experimental/)
9[![Pivotal Tracker](https://img.shields.io/badge/Project_management-Pivotal-d07a3e.svg?style=flat-square)](https://www.pivotaltracker.com/n/projects/248655)
10[![Discussion](https://img.shields.io/badge/Discussion-libsbml--development-lightgray.svg?style=flat-square)]()
11
12
13Table of contents
14-----------------
15
16* [Introduction](#introduction)
17* [Installation](#installation)
18* [Usage](#usage)
19* [Relationships to other similar tools](#relationships-to-other-similar-tools)
20* [Getting help](#getting-help)
21* [Contributing](#contributing)
22* [License](#license)
23* [Authors and history](#authors-and-history)
24* [Acknowledgments](#authors-and-acknowledgments)
25
26
27Introduction
28------------
29
30LibSBML is a programming library that helps you read, write, manipulate, translate, and validate files and data streams in the [SBML (Systems Biology Markup Language)](http://sbml.org) format.  Developers can embed the library in their applications, saving themselves the work of implementing their own parsing, manipulation and validation software. At the API level, libSBML provides the same interface to data structures independently of whether the model originated in SBML Level&nbsp;1, 2 or&nbsp;3.  LibSBML understands all Levels and Versions of SBML, and supports all **SBML Level&nbsp;3 packages**.
31
32Why not simply use a generic XML parsing library?  A specialized library such as libSBML or [JSBML](https://github.com/sbmlteam/jsbml) offers many advantages over using a generic XML library directly.  Here are some:
33
34* **Domain-specific object model**.  LibSBML's object model and API are designed around SBML and the operations that are commonly needed when working with SBML.
35
36* **Validation facilities**. LibSBML implements all the validation rules defined in the SBML specifications, and performs additional validation of its own.  (These validation rules are not part of the SBML schemas.)
37
38* **Conversion facilities**: LibSBML can convert between most Levels and Versions of SBML, and can interconvert between certain kinds of SBML constructs.
39
40* **Broad language support**: LibSBML is written in ISO standard C++ and provides APIs for the languages C, C++, C#, Java, JavaScript, MATLAB, Perl, PHP, Python, R, and Ruby.
41
42* **Other features**. LibSBML offers powerful features such as reading/writing compressed SBML files, detecting overconstrained models, dimensional analysis and unit checking, and an API for SBML `<annotation>` content.
43
44LibSBML works on Linux, Windows, MacOS X, and other operating systems, and can use any of the three most popular XML parser libraries: [Xerces](http://xml.apache.org/xerces-c), [Expat](http://expat.sourceforge.net/), and [libxml2](http://xmlsoft.org/).
45
46
47Installation
48------------
49
50A **stable release** of libSBML includes support for SBML Level&nbsp;3 Core and all accepted SBML &nbsp;3 packages, as well as support for packages that are currently under development. An **experimental-only release** only updates code for the SBML Level&nbsp;3 packages under development.
51
52Before the year 2020, we used SourceForge for our code repository and software downloads.  Our software releases for libSBML are currently still done from SourceForge at this location:
53
54<p align="center"><b>
55↓ ↓ ↓<br>
56→ → →&nbsp;&nbsp;&nbsp;&nbsp; http://sourceforge.net/projects/sbml/files/libsbml/ &nbsp;&nbsp;&nbsp;&nbsp;← ← ←<br>
57↑ ↑ ↑
58</b></p>
59
60We provide Zenodo DOIs for specific releases, so that you can cite the exact version of the software that you use:
61
62* libSBML-5.18.0 &rArr; [10.5281/zenodo.2645216](https://doi.org/10.5281/zenodo.2645216)
63* libSBML-5.17.0 &rArr; [10.5281/zenodo.1250696](https://doi.org/10.5281/zenodo.)
64* libSBML-5.16.0 &rArr; [10.5281/zenodo.1095483](https://doi.org/10.5281/zenodo.)
65* libSBML-5.15.0 &rArr; [10.5281/zenodo.495344](https://doi.org/10.5281/zenodo.)
66
67
68Usage
69-----
70
71Please read the file [NEWS.txt](NEWS.txt) for highlights about recent changes in libSBML and important information.
72
73Documentation is available online at http://sbml.org/Software/libSBML
74
75
76Getting help
77------------
78
79We encourage you to join the [sbml-interoperability](https://groups.google.com/g/sbml-interoperability) group, where other libSBML users can be found.  You can ask questions and discuss the development, use, and interoperability of all kinds of software that supports SBML.
80
81You can report issues, suggestions and requests using the [GitHub issue tracker](https://github.com/sbmlteam/libsbml/issues).  If you are interested in participating in or observing libSBML development more closely, we encourage you to join [libsbml-development@googlegroups.com](https://groups.google.com/forum/#!forum/libsbml-development), a mailing list and web forum devoted to discussions about LIBSBML.
82
83You can email the main developers directly at [libsbml-team@googlegroups.com](mailto:libsbml-team@googlegroups.com).
84
85
86Contributing
87------------
88
89We welcome contributions to libSBML!  Please read our [contribution guidelines](CONTRIBUTING.md), and also feel free to contact the developers at [libsbml-team@googlegroups.com](mailto:libsbml-team@googlegroups.com) to coordinate your efforts.
90
91
92License
93-------
94
95LibSBML is available for free under the terms of the [LGPL version 2.1](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) in both source-code form and precompiled binaries for a variety of systems.  Please see the accompanying license file, [LICENSE.html](LICENSE.html), for detailed copyright and license information, particularly for **third-party software included in and used by the libSBML distribution**.
96
97
98Authors and history
99---------------------------
100
101LibSBML's main authors are [Sarah M. Keating](https://github.com/skeating), [Frank T. Bergmann](https://www.cos.uni-heidelberg.de/index.php/f.bergmann/?l=_e), [Lucian P. Smith](https://github.com/luciansmith), [Brett G. Olivier](http://www.bgoli.net), [Akiya Jouraku](https://www.researchgate.net/profile/Akiya_Jouraku), [Michael Hucka](http://www.cds.caltech.edu/~mhucka/), and [Ben Bornstein](http://ml.jpl.nasa.gov/people/bornstein.shtml), with contributions from many others.  We especially thank the following (in alphabetical order):
102
103* Gordon Ball
104* Bill Denney
105* Christoph Flamm
106* Akira Funahashi
107* Ralph Gauges
108* Martin Ginkel
109* Alex Gutteridge
110* Stefan Hoops
111* Totte Karlsson
112* Moriyoshi Koizumi
113* Ben Kovitz
114* Rainer Machn&eacute;
115* Thomas Pfau
116* Nicolas Rodriguez
117* Fengkai Zhang
118
119
120Acknowledgments
121---------------
122
123The development of libSBML was supported in largely by funding from the [National Institute of General Medical Sciences](https://www.nigms.nih.gov) (USA) under grant R01&nbsp;GM070923 (principal investigator: Michael Hucka).
124
125Contributions to libSBML have also come as a result of work by the SBML Team and others on other grant-funded projects.  The core development of SBML from its inception through 2003 was principally funded by the [Japan Science and Technology Agency](http://www.jst.go.jp/EN/) under the [ERATO Kitano Symbiotic Systems Project](http://www.symbio.jst.go.jp/symbio), with funding going to the group of [John Doyle](http://www.cds.caltech.edu/~doyle/) at Caltech.  This included the first version of libSBML.  After 2003, primary direct support for the core development of SBML and supporting software and activities came from the [National Institute of General Medical Sciences (NIH/NIGMS)](http://www.nigms.nih.gov/) under grants R01 GM070923 and R01GM077671. Additional support came from the following agencies and programs: the [National Human Genome Research Institute](http://www.genome.gov/) (USA), the [International Joint Research Program of NEDO](http://www.nedo.go.jp/) (Japan), the [ERATO-SORST](http://www.jst.go.jp/kisoken/sorst/) Program of the Japan Science and Technology Agency (Japan), the [Ministry of Agriculture](http://www.maff.go.jp/eindex.html) (Japan), the [Ministry of Education, Culture, Sports, Science and Technology](http://www.mext.go.jp/) (Japan), the [BBSRC e-Science Initiative](http://www.bbsrc.ac.uk/) (UK), the [DARPA IPTO Bio-Computation Program](http://www.darpa.mil/ipto/programs/biocomp/vision.htm) (USA), the Army Research Office's [Institute for Collaborative Biotechnologies](https://www.icb.ucsb.edu) (USA), the [Air Force Office of Scientific Research](http://www.afosr.af.mil/) (USA), the [EU Commission 6th Framework Programme](http://ec.europa.eu/research/fp6/index_en.cfm), the [European Commision's 7th Framework Programme for Research and Technological Development](http://systemsbiology.ucsd.edu/projects/AMBiCon), the [Federal Ministry of Education and Research (BMBF, Germany)](https://www.bmbf.de/en/index.html), the [Virtual Liver Network](http://www.virtual-liver.de), the [Systems Biology Institute](http://systems-biology.org/) (Japan), and [Google Summer of Code](https://developers.google.com/open-source/gsoc/).
126
127<br>
128<div align="center">
129  <a href="https://www.nigms.nih.gov">
130    <img valign="middle"  height="100" src=".graphics/US-NIH-NIGMS-Logo.svg">
131  </a>
132  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
133  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
134  <a href="https://www.caltech.edu">
135    <img valign="middle" height="130" src=".graphics/caltech-round.png">
136  </a>
137  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
138  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
139  <a href="https://www.caltech.edu">
140    <img valign="middle" height="100" src=".graphics/sbml-logo-only.png">
141  </a>
142</div>
143