| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: libsbml | Distribution: Unknown |
| Version: 5.3.0 | Vendor: The SBML Team |
| Release: 1 | Build date: Thu Dec 22 20:48:04 2011 |
| Group: Libraries/Development | Build host: localhost.localdomain |
| Size: 77516694 | Source RPM: libsbml-5.3.0-1.src.rpm |
| Summary: An API library for reading/writing/manipulating SBML. | |
l i b S B M L
Sarah Keating, Akiya Jouraku, Frank Bergmann,
Ben Bornstein and Michael Hucka
with contributions from (in alphabetical order):
Bill Denney, Christoph Flamm, Akira Funahashi, Ralph Gauges,
Martin Ginkel, Alex Gutteridge, Stefan Hoops, Moriyoshi Koizumi,
Ben Kovitz, Rainer Machne, Nicolas Rodriguez, Lucian Smith,
and many others.
Please see the file NEWS.txt for a log of recent changes in libSBML
More information about libSBML is available online at
http://sbml.org/Software/libSBML
Please report problems with libSBML using the tracker at
http://sbml.org/Software/libSBML/issue-tracker
Mailing lists and online web forums for discussing libSBML are at
http://sbml.org/Forums
To contact the core libSBML developers directly, send email to
libsbml-team@caltech.edu
,---------------------------------------------------------------.
| Table of contents |
| 0. Foreword |
| 1. What's new in this release? |
| 2. Quick start |
| 3. Introduction |
| 4. Detailed instructions for configuring and installing LibSBML |
| 5. Reporting bugs and other problems |
| 6. Mailing lists |
| 7. Licensing and distribution |
| 8. Acknowledgments |
`---------------------------------------------------------------'
Date of last update to this file:
$Date: 2011-10-30 18:51:57 -0700 (Sun, 30 Oct 2011) $
0. FOREWORD
======================================================================
Article citations are crucial to our academic careers. If you use
libSBML and you publish papers about your software, we ask that you
please cite the libSBML paper:
Bornstein, B. J., Keating, S. M., Jouraku, A., and Hucka M. (2008)
LibSBML: An API Library for SBML. Bioinformatics, 24(6):880-881.
1. WHAT'S NEW IN THIS RELEASE?
======================================================================
Please see the file NEWS.txt for more information about recent changes
in libSBML. For a complete list of changes, please see the revision
logs in the source code repository at
http://sbml.svn.sourceforge.net/viewvc/sbml/
2. QUICK START
======================================================================
1.1 Linux, MacOS X, FreeBSD, and Solaris
----------------------------------------
At the Unix command prompt, untar the distribution, cd into it (e.g.,
libsbml-5.0.0/), and first type:
./configure
LibSBML will try to find and use libxml2 as its XML parser library.
If you do not have libxml2 version 2.6.16 or later on your system, the
configure step will fail. In that case, you can try using the Expat
or Xerces libraries instead. For Expat, use
./configure --with-expat
and for Xerces, use
./configure --with-xerces
IMPORTANT: If you are using the Xerces XML library, beware there is a
bug in Xerces 2.6.0 that cannot be worked around at this time and
causes errors in software using it. Xerces versions 2.2 -
2.5, and 2.7.0 and above, are known to work properly.
By default, libSBML only builds the C and C++ API library. If you
want to configure libSBML to build the Java, C#, Python, Perl, MATLAB,
Ruby and/or Octave API libraries as well, add the flags --with-java,
--with-csharp, --with-python, --with-perl, --with-matlab, --with-ruby,
and/or --with-octave to the configure command. You can combine
options as you need. (To see what other options are available, run
the configure command with --help option.)
Depending on your system, you may need to tell the configure program
where to find some of these extra components by adding a directory
path after the option. For example, if you wish to use a copy of Java
whose components are in /usr/local (with files in /usr/local/bin and
/usr/local/lib), use
./configure --with-java=/usr/local
Once you've successfully configured libSBML, run the following two
commands to build and install it:
make # Note: use 'gmake' on FreeBSD
make install # Note: use 'gmake install' on FreeBSD
To compile C or C++ programs that use libSBML with GCC, use a command
such as the following, where -lsbml tells the compiler to link with
the installed libSBML library:
gcc -o myapp.c myapp.c -lsbml
If the compiler cannot find the library, you probably need to adjust
the settings of your environment variable LD_LIBRARY_PATH (called
DYLD_LIBRARY_PATH on MacOS) or use ldconfig to adjust the library
search paths on your computer. Please refer to the full libSBML
documentation for more information on this and related matters.
Documentation for libSBML is available as a separate download from the
same locations as the libSBML distribution (namely, the SBML project
SourceForge and the http://sbml.org/Software/libSBML web page). You
may also regenerate the documentation from the source code distribution
if you have Doxygen version 1.5.8 or later installed and have
configured libSBML with the --with-doxygen flag. Then you can execute
the following to generate and install the libSBML documentation files:
make install-docs # Note: use 'gmake install-docs' on FreeBSD
To uninstall the libSBML installed by the above 'make install' command,
cd into the top directory of the libSBML source tree and run the following
command:
make uninstall
1.2 Windows
-----------
Download and run the self-extracting windows installer for libSBML.
There are debug (libsbmld) and release (libsbml) versions of libSBML,
with .dll and .lib files for both versions in the 'win32/bin'
subdirectory of the libSBML distribution. Header files are located in
the subdirectory 'win32/include/sbml'.
Users of Visual C++ should make their Visual C++ projects link with
the files libsbml.lib or libsbmld.lib and generate code for the
Multithreaded DLL or Debug Multithreaded DLL version of the VC++
runtime, respectively.
2. INTRODUCTION
======================================================================
This README file describes libSBML, a library for reading, writing and
manipulating files and data streams containing the Systems Biology
Markup Language (SBML). The library supports all levels and versions
of SBML, up to Level 3 Version 1 Core.
The library is written in ISO standard C and C++ and currently
provides an API for the languages C, C++, C#, Java, MATLAB, Octave,
Perl, Python, and Ruby. LibSBML is known to run on Linux, Windows,
MacOS X, FreeBSD and Solaris, but is portable and support for other
platforms should be straightforward to implement.
LibSBML is entirely open-source and all specifications and source code
are freely and publicly available. For more information about SBML,
please visit the website http://sbml.org/.
Feature Highlights:
-------------------
* Full SBML Support. All constructs in SBML Levels 1, 2 and 3 are
supported. For compatibility with some technically incorrect but
popular Level 1 applications and models, the parser recognizes and
stores notes and annotations defined for the top-level <sbml>
element (logging a warning).
* Unified SBML Level 1, Level 2, and Level 3 object models. All
objects have getSBMLDocument(), getModel(), getLevel(), and
getVersion(), methods among other things.
* Full XML and SBML Validation. All XML and Schema warning, error and
fatal error messages are logged with line and column number
information and may be retrieved and manipulated programmatically.
* Dimensional analysis and unit checking. LibSBML implements a
thorough system for dimensional analysis and checking units of
quantities in a model. The validation rules for units that are
specified in SBML Level 2 and Level 3 are fully implemented,
including checking units in mathematical formulas.
* Access to SBML annotations and notes as XML objects. Annotations
and notes in libSBML 4.x are read and manipulated as XML structures;
a text-string interface is available for backward compatibility with
the libSBML 2.x series. Further, in order to facilitate the support
of MIRIAM compatible annotations, there are new object classes
ModelHistory and CVTerm. These classes facilitate the creation and
addition of RDF annotations inside <annotation> elements by
providing parsing and manipulation functions that treat the
annotations in terms of XMLNode objects implemented by the new XML
layer. Both ModelHistory and CVTerm follow the general libSBML
format of providing getters and setters for each variable stored
within the class.
* Support for compressed SBML files. If an SBML file name ends in
.gz, .zip or .bz2, libSBML will automatically uncompress the file
upon reading it. Similarly, if the file to be written has one of
those extensions, libSBML will write it out in compressed form.
(The compression library incorporated by libSBML is MiniZip 1.01e,
written by Gilles Vollant and made freely available for all uses
including commercial applications.)
* Parser abstraction layer. LibSBML relies on third-party XML parser
libraries, but thanks to its implementation of a custom abstraction
layer (named LIBLAX), libSBML can use any of the three most popular
XML parser libraries: Expat, Apache Xerces-C++, and Libxml2.
LibSBML provides identical functionality and checking of XML syntax
is now available no matter which one is used. SBML Documents are
parsed and manipulated in the Unicode codepage for efficiency;
however, strings are transcoded to the local code page for SBML
structures.
* Small memory footprint and fast runtime. The parser is event-based
(SAX2) and loads SBML data into C++ structures that mirror the SBML
specification.
* Interfaces for C, C++, C#, Java, MATLAB, Octave, Python, Perl, and
Ruby. The C and C++ interfaces are implemented natively; the C#,
Java, Perl, Python, and Ruby interfaces are implemented using SWIG,
the Simplified Wrapper Interface Generator; and the rest are
implemented using custom hand-written interface code.
* Well tested: libSBML has over 4300 unit tests and over 11,000
individual assertions. The entire library was written using the
test-first approach popularized by Kent Beck and eXtreme
Programming, where it's one of the 12 principles.
* Written in portable, pure ISO C and C++. The build system uses GNU
tools (Autoconf, GNU Make) to build shared and static libraries.
* Complete user manual. The manual is generated from the source code
and closely reflects the actual API.
3. DETAILED INSTRUCTIONS FOR CONFIGURING AND INSTALLING LIBSBML
======================================================================
Detailed instructions for building and configuring libSBML are now
included as part of the full documentation available for libSBML.
You may find the documentation online at
http://sbml.org/Software/libSBML
You may also download a compressed archive of the formatted
documentation from the same place you found this libSBML source
distribution (e.g., from http://sourceforge.net/projects/sbml/).
Lastly you can format the documentation from the sources, which are
provided as part of this libSBML source distribution in the "docs"
subdirectory. (To do that, however, you will need certain additional
software tools such as Doxygen and a full latex distribution.)
Please see NEWS.txt and the following bundled README files for details
of the current libSBML-5:
(1) docs/00README-HowToUsePackageExtension.txt
(For package developers)
(2) docs/00README-ExtensionSupportClasses.txt
(3) docs/00README-HowToImplementPackageExtension.txt
(4) docs/00README-ChangesInSBase.txt
4. REPORTING BUGS AND OTHER PROBLEMS
======================================================================
We invite you to report bugs and other problems using the issue
tracker for libSBML on SourceForge. The following URL will take you
there directly:
http://sbml.org/Software/libSBML/issue-tracker
You can also ask questions on the 'sbml-interoperability' mailing
list, either over email or using the web forum interface (see below).
This may even have advantages, such as that other people may also have
experienced the issue and offer a workaround more quickly than the
libSBML developers can respond.
5. MAILING LISTS
======================================================================
There are two kinds of mailing lists available: normal discussion
lists for humans, and a SVN change notification list.
Discussion lists
----------------
All discussion lists, their web interfaces and their RSS feeds are at
http://sbml.org/Forums/
If you use SBML, we urge you to sign up for sbml-announce, the SBML
announcements mailing list. It is a low-volume, broadcast-only list.
If you use libSBML, we also encourage you to subscribe to or monitor
via RSS the 'sbml-interoperability' list, where people discuss the
development, use, and interoperability of software that supports SBML,
including libSBML.
If you are interested in helping to modify libSBML, or just want to
know about deeper issues and technical topics, you are welcome to
subscribe to the 'libsbml-development' mailing list. Being a member
of libsbml-development will enable you to keep in touch with the
latest developments in libSBML as well as to ask questions and share
your experiences with fellow developers and users of libSBML.
SVN notification
----------------
If you are obtaining your libSBML files from SVN, you may wish to
subscribe to the mailing list sbml-svn, to be apprised of changes to
the SVN repository as soon as they are committed. You can join the
list by visiting the following URL:
https://lists.sourceforge.net/lists/listinfo/sbml-svn
6. LICENSING AND DISTRIBUTION
======================================================================
LibSBML incorporates a third-party software library, MiniZip
1.01e, copyright (C) 1998-2005 Gilles Vollant, released under
terms compatible with the LGPL. Please see the file
src/compress/00README.txt for more information about MiniZip
1.01e and its license terms.
Licensing and Distribution Terms for libSBML:
Copyright (C) 2009-2011 jointly by the following organizations:
1. California Institute of Technology, Pasadena, CA, USA
2. EMBL European Bioinformatics Institute (EBML-EBI), Hinxton, UK
Copyright (C) 2006-2008 by the California Institute of Technology,
Pasadena, CA, USA
Copyright (C) 2002-2005 jointly by the following organizations:
1. California Institute of Technology, Pasadena, CA, USA
2. Japan Science and Technology Agency, Japan
LibSBML is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of
the License, or any later version.
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. The software
and documentation provided hereunder is on an "as is" basis, and
the copyright holders have no obligations to provide maintenance,
support, updates, enhancements or modifications. In no event
shall the copyright holders be liable to any party for direct,
indirect, special, incidental or consequential damages, including
lost profits, arising out of the use of this software and its
documentation, even if the copyright holders have been advised of
the possibility of such damage. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library in the file named "COPYING.txt"
included with the software distribution. A copy is also
available online at the Internet address
http://sbml.org/software/libsbml/COPYING.html for your
convenience. You may also write to obtain a copy from the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
7. ACKNOWLEDGMENTS
======================================================================
This and other projects of the SBML Team have been supported by the
following organizations: the National Institutes of Health (USA) under
grants R01 GM070923 and R01 GM077671; the International Joint Research
Program of NEDO (Japan); the JST ERATO-SORST Program (Japan); the
Japanese Ministry of Agriculture; the Japanese Ministry of Education,
Culture, Sports, Science and Technology; the BBSRC e-Science
Initiative (UK); the DARPA IPTO Bio-Computation Program (USA); the
Army Research Office's Institute for Collaborative Biotechnologies
(USA); the Air Force Office of Scientific Research (USA); the
California Institute of Technology (USA); the University of
Hertfordshire (UK); the Molecular Sciences Institute (USA); the
Systems Biology Institute (Japan); and Keio University (Japan).
The libSBML authors are also grateful to Gilles Vollant for writing
MiniZip 1.01e and making it freely available. LibSBML incorporates
MiniZip to support reading and writing compressed SBML files.
-----------------------------------------------
File author: M. Hucka, B. Bornstein, S. Keating
Last Modified: $Date: 2011-10-30 18:51:57 -0700 (Sun, 30 Oct 2011) $
Last Modified By: $Author: mhucka $
$HeadURL: https://sbml.svn.sourceforge.net/svnroot/sbml/trunk/libsbml/README.txt $
-----------------------------------------------
LGPL
* Mon Jul 05 2010 Erk <eric.noulard@gmail.com> Generated by CPack RPM (no Changelog file were provided)
/usr/include/sbml/Compartment.h /usr/include/sbml/CompartmentType.h /usr/include/sbml/Constraint.h /usr/include/sbml/Delay.h /usr/include/sbml/Event.h /usr/include/sbml/EventAssignment.h /usr/include/sbml/ExpectedAttributes.h /usr/include/sbml/FunctionDefinition.h /usr/include/sbml/InitialAssignment.h /usr/include/sbml/KineticLaw.h /usr/include/sbml/ListOf.h /usr/include/sbml/LocalParameter.h /usr/include/sbml/Model.h /usr/include/sbml/Parameter.h /usr/include/sbml/Priority.h /usr/include/sbml/Reaction.h /usr/include/sbml/Rule.h /usr/include/sbml/SBMLConstructorException.h /usr/include/sbml/SBMLDocument.h /usr/include/sbml/SBMLError.h /usr/include/sbml/SBMLErrorLog.h /usr/include/sbml/SBMLErrorTable.h /usr/include/sbml/SBMLNamespaces.h /usr/include/sbml/SBMLReader.h /usr/include/sbml/SBMLTransforms.h /usr/include/sbml/SBMLTypeCodes.h /usr/include/sbml/SBMLTypes.h /usr/include/sbml/SBMLVisitor.h /usr/include/sbml/SBMLWriter.h /usr/include/sbml/SBO.h /usr/include/sbml/SBase.h /usr/include/sbml/Species.h /usr/include/sbml/SpeciesReference.h /usr/include/sbml/SpeciesType.h /usr/include/sbml/StoichiometryMath.h /usr/include/sbml/SyntaxChecker.h /usr/include/sbml/Trigger.h /usr/include/sbml/Unit.h /usr/include/sbml/UnitDefinition.h /usr/include/sbml/UnitKind.h /usr/include/sbml/annotation/CVTerm.h /usr/include/sbml/annotation/ModelHistory.h /usr/include/sbml/annotation/RDFAnnotation.h /usr/include/sbml/common/common.h /usr/include/sbml/common/extern.h /usr/include/sbml/common/libsbml-config-common.h /usr/include/sbml/common/libsbml-config.h /usr/include/sbml/common/libsbml-namespace.h /usr/include/sbml/common/libsbml-package.h /usr/include/sbml/common/libsbml-version.h /usr/include/sbml/common/operationReturnValues.h /usr/include/sbml/common/sbmlfwd.h /usr/include/sbml/compress/CompressCommon.h /usr/include/sbml/compress/InputDecompressor.h /usr/include/sbml/compress/OutputCompressor.h /usr/include/sbml/compress/bzfstream.h /usr/include/sbml/compress/crypt.h /usr/include/sbml/compress/ioapi.h /usr/include/sbml/compress/iowin32.h /usr/include/sbml/compress/unzip.h /usr/include/sbml/compress/zfstream.h /usr/include/sbml/compress/zip.h /usr/include/sbml/compress/zipfstream.h /usr/include/sbml/conversion/ConversionOption.h /usr/include/sbml/conversion/ConversionProperties.h /usr/include/sbml/conversion/SBMLConverter.h /usr/include/sbml/conversion/SBMLConverterRegister.h /usr/include/sbml/conversion/SBMLConverterRegistry.h /usr/include/sbml/conversion/SBMLFunctionDefinitionConverter.h /usr/include/sbml/conversion/SBMLInitialAssignmentConverter.h /usr/include/sbml/conversion/SBMLLevelVersionConverter.h /usr/include/sbml/conversion/SBMLRuleConverter.h /usr/include/sbml/conversion/SBMLStripPackageConverter.h /usr/include/sbml/conversion/SBMLUnitsConverter.h /usr/include/sbml/extension/ISBMLExtensionNamespaces.h /usr/include/sbml/extension/SBMLDocumentPlugin.h /usr/include/sbml/extension/SBMLExtension.h /usr/include/sbml/extension/SBMLExtensionException.h /usr/include/sbml/extension/SBMLExtensionNamespaces.h /usr/include/sbml/extension/SBMLExtensionRegister.h /usr/include/sbml/extension/SBMLExtensionRegistry.h /usr/include/sbml/extension/SBaseExtensionPoint.h /usr/include/sbml/extension/SBasePlugin.h /usr/include/sbml/extension/SBasePluginCreator.h /usr/include/sbml/extension/SBasePluginCreatorBase.h /usr/include/sbml/math/ASTNode.h /usr/include/sbml/math/FormulaFormatter.h /usr/include/sbml/math/FormulaParser.h /usr/include/sbml/math/FormulaTokenizer.h /usr/include/sbml/math/MathML.h /usr/include/sbml/packages/comp/common/CompExtensionTypes.h /usr/include/sbml/packages/comp/common/compfwd.h /usr/include/sbml/packages/comp/extension/CompExtension.h /usr/include/sbml/packages/comp/extension/CompModelPlugin.h /usr/include/sbml/packages/comp/extension/CompSBMLDocumentPlugin.h /usr/include/sbml/packages/comp/extension/CompSBasePlugin.h /usr/include/sbml/packages/comp/sbml/CompBase.h /usr/include/sbml/packages/comp/sbml/Deletion.h /usr/include/sbml/packages/comp/sbml/ExternalModelDefinition.h /usr/include/sbml/packages/comp/sbml/ListOfDeletions.h /usr/include/sbml/packages/comp/sbml/ListOfExternalModelDefinitions.h /usr/include/sbml/packages/comp/sbml/ListOfModelDefinitions.h /usr/include/sbml/packages/comp/sbml/ListOfPorts.h /usr/include/sbml/packages/comp/sbml/ListOfReplacedElements.h /usr/include/sbml/packages/comp/sbml/ListOfSubmodels.h /usr/include/sbml/packages/comp/sbml/ModelDefinition.h /usr/include/sbml/packages/comp/sbml/Port.h /usr/include/sbml/packages/comp/sbml/ReplacedBy.h /usr/include/sbml/packages/comp/sbml/ReplacedElement.h /usr/include/sbml/packages/comp/sbml/Replacing.h /usr/include/sbml/packages/comp/sbml/SBaseRef.h /usr/include/sbml/packages/comp/sbml/Submodel.h /usr/include/sbml/packages/comp/util/CompFlatteningConverter.h /usr/include/sbml/packages/fbc/common/FbcExtensionTypes.h /usr/include/sbml/packages/fbc/common/fbcfwd.h /usr/include/sbml/packages/fbc/extension/FbcExtension.h /usr/include/sbml/packages/fbc/extension/FbcModelPlugin.h /usr/include/sbml/packages/fbc/extension/FbcSpeciesPlugin.h /usr/include/sbml/packages/fbc/sbml/Association.h /usr/include/sbml/packages/fbc/sbml/FluxBound.h /usr/include/sbml/packages/fbc/sbml/FluxObjective.h /usr/include/sbml/packages/fbc/sbml/GeneAssociation.h /usr/include/sbml/packages/fbc/sbml/Objective.h /usr/include/sbml/packages/groups/common/GroupsExtensionTypes.h /usr/include/sbml/packages/groups/common/groupsfwd.h /usr/include/sbml/packages/groups/extension/GroupsExtension.h /usr/include/sbml/packages/groups/extension/GroupsModelPlugin.h /usr/include/sbml/packages/groups/sbml/Group.h /usr/include/sbml/packages/groups/sbml/Member.h /usr/include/sbml/packages/layout/common/LayoutExtensionTypes.h /usr/include/sbml/packages/layout/common/layoutfwd.h /usr/include/sbml/packages/layout/extension/LayoutExtension.h /usr/include/sbml/packages/layout/extension/LayoutModelPlugin.h /usr/include/sbml/packages/layout/extension/LayoutSpeciesReferencePlugin.h /usr/include/sbml/packages/layout/sbml/BoundingBox.h /usr/include/sbml/packages/layout/sbml/CompartmentGlyph.h /usr/include/sbml/packages/layout/sbml/CubicBezier.h /usr/include/sbml/packages/layout/sbml/Curve.h /usr/include/sbml/packages/layout/sbml/Dimensions.h /usr/include/sbml/packages/layout/sbml/GraphicalObject.h /usr/include/sbml/packages/layout/sbml/Layout.h /usr/include/sbml/packages/layout/sbml/LineSegment.h /usr/include/sbml/packages/layout/sbml/Point.h /usr/include/sbml/packages/layout/sbml/ReactionGlyph.h /usr/include/sbml/packages/layout/sbml/SpeciesGlyph.h /usr/include/sbml/packages/layout/sbml/SpeciesReferenceGlyph.h /usr/include/sbml/packages/layout/sbml/SpeciesReferenceRole.h /usr/include/sbml/packages/layout/sbml/TextGlyph.h /usr/include/sbml/packages/layout/util/LayoutAnnotation.h /usr/include/sbml/packages/layout/util/LayoutUtilities.h /usr/include/sbml/packages/render/common/RenderExtensionTypes.h /usr/include/sbml/packages/render/common/renderfwd.h /usr/include/sbml/packages/render/extension/RenderExtension.h /usr/include/sbml/packages/render/extension/RenderGraphicalObjectPlugin.h /usr/include/sbml/packages/render/extension/RenderLayoutPlugin.h /usr/include/sbml/packages/render/extension/RenderListOfLayoutsPlugin.h /usr/include/sbml/packages/render/sbml/ColorDefinition.h /usr/include/sbml/packages/render/sbml/Ellipse.h /usr/include/sbml/packages/render/sbml/GlobalRenderInformation.h /usr/include/sbml/packages/render/sbml/GlobalStyle.h /usr/include/sbml/packages/render/sbml/GradientBase.h /usr/include/sbml/packages/render/sbml/GradientStop.h /usr/include/sbml/packages/render/sbml/GraphicalPrimitive1D.h /usr/include/sbml/packages/render/sbml/GraphicalPrimitive2D.h /usr/include/sbml/packages/render/sbml/Image.h /usr/include/sbml/packages/render/sbml/LineEnding.h /usr/include/sbml/packages/render/sbml/LinearGradient.h /usr/include/sbml/packages/render/sbml/ListOfCurveElements.h /usr/include/sbml/packages/render/sbml/LocalRenderInformation.h /usr/include/sbml/packages/render/sbml/LocalStyle.h /usr/include/sbml/packages/render/sbml/Polygon.h /usr/include/sbml/packages/render/sbml/RadialGradient.h /usr/include/sbml/packages/render/sbml/Rectangle.h /usr/include/sbml/packages/render/sbml/RelAbsVector.h /usr/include/sbml/packages/render/sbml/RenderCubicBezier.h /usr/include/sbml/packages/render/sbml/RenderCurve.h /usr/include/sbml/packages/render/sbml/RenderGroup.h /usr/include/sbml/packages/render/sbml/RenderInformationBase.h /usr/include/sbml/packages/render/sbml/RenderPoint.h /usr/include/sbml/packages/render/sbml/Style.h /usr/include/sbml/packages/render/sbml/Text.h /usr/include/sbml/packages/render/sbml/Transformation.h /usr/include/sbml/packages/render/sbml/Transformation2D.h /usr/include/sbml/packages/render/util/RenderUtilities.h /usr/include/sbml/packages/req/common/RequiredElementsExtensionTypes.h /usr/include/sbml/packages/req/common/requiredElementsfwd.h /usr/include/sbml/packages/req/extension/RequiredElementsExtension.h /usr/include/sbml/packages/req/extension/RequiredElementsSBasePlugin.h /usr/include/sbml/packages/spatial/common/SpatialExtensionTypes.h /usr/include/sbml/packages/spatial/common/spatialfwd.h /usr/include/sbml/packages/spatial/extension/SpatialCompartmentPlugin.h /usr/include/sbml/packages/spatial/extension/SpatialExtension.h /usr/include/sbml/packages/spatial/extension/SpatialModelPlugin.h /usr/include/sbml/packages/spatial/extension/SpatialParameterPlugin.h /usr/include/sbml/packages/spatial/extension/SpatialSpeciesRxnPlugin.h /usr/include/sbml/packages/spatial/sbml/AdjacentDomains.h /usr/include/sbml/packages/spatial/sbml/AdvectionCoefficient.h /usr/include/sbml/packages/spatial/sbml/AnalyticGeometry.h /usr/include/sbml/packages/spatial/sbml/AnalyticVolume.h /usr/include/sbml/packages/spatial/sbml/Boundary.h /usr/include/sbml/packages/spatial/sbml/BoundaryCondition.h /usr/include/sbml/packages/spatial/sbml/CSGHomogeneousTransformation.h /usr/include/sbml/packages/spatial/sbml/CSGNode.h /usr/include/sbml/packages/spatial/sbml/CSGObject.h /usr/include/sbml/packages/spatial/sbml/CSGPrimitive.h /usr/include/sbml/packages/spatial/sbml/CSGPseudoPrimitive.h /usr/include/sbml/packages/spatial/sbml/CSGRotation.h /usr/include/sbml/packages/spatial/sbml/CSGScale.h /usr/include/sbml/packages/spatial/sbml/CSGSetOperator.h /usr/include/sbml/packages/spatial/sbml/CSGTransformation.h /usr/include/sbml/packages/spatial/sbml/CSGTranslation.h /usr/include/sbml/packages/spatial/sbml/CSGeometry.h /usr/include/sbml/packages/spatial/sbml/CompartmentMapping.h /usr/include/sbml/packages/spatial/sbml/CoordinateComponent.h /usr/include/sbml/packages/spatial/sbml/DiffusionCoefficient.h /usr/include/sbml/packages/spatial/sbml/Domain.h /usr/include/sbml/packages/spatial/sbml/DomainType.h /usr/include/sbml/packages/spatial/sbml/Geometry.h /usr/include/sbml/packages/spatial/sbml/GeometryDefinition.h /usr/include/sbml/packages/spatial/sbml/ImageData.h /usr/include/sbml/packages/spatial/sbml/InteriorPoint.h /usr/include/sbml/packages/spatial/sbml/ParametricGeometry.h /usr/include/sbml/packages/spatial/sbml/ParametricObject.h /usr/include/sbml/packages/spatial/sbml/PolygonObject.h /usr/include/sbml/packages/spatial/sbml/SampledField.h /usr/include/sbml/packages/spatial/sbml/SampledFieldGeometry.h /usr/include/sbml/packages/spatial/sbml/SampledVolume.h /usr/include/sbml/packages/spatial/sbml/SpatialPoint.h /usr/include/sbml/packages/spatial/sbml/SpatialSymbolReference.h /usr/include/sbml/packages/spatial/sbml/TransformationComponents.h /usr/include/sbml/units/FormulaUnitsData.h /usr/include/sbml/units/UnitFormulaFormatter.h /usr/include/sbml/units/UnitKindList.h /usr/include/sbml/util/List.h /usr/include/sbml/util/Stack.h /usr/include/sbml/util/StringBuffer.h /usr/include/sbml/util/memory.h /usr/include/sbml/util/util.h /usr/include/sbml/validator/ConsistencyValidator.h /usr/include/sbml/validator/ConstraintMacros.h /usr/include/sbml/validator/IdentifierConsistencyValidator.h /usr/include/sbml/validator/InternalConsistencyValidator.h /usr/include/sbml/validator/L1CompatibilityValidator.h /usr/include/sbml/validator/L2v1CompatibilityValidator.h /usr/include/sbml/validator/L2v2CompatibilityValidator.h /usr/include/sbml/validator/L2v3CompatibilityValidator.h /usr/include/sbml/validator/L2v4CompatibilityValidator.h /usr/include/sbml/validator/L3v1CompatibilityValidator.h /usr/include/sbml/validator/MathMLConsistencyValidator.h /usr/include/sbml/validator/ModelingPracticeValidator.h /usr/include/sbml/validator/OverdeterminedValidator.h /usr/include/sbml/validator/SBMLExternalValidator.h /usr/include/sbml/validator/SBMLInternalValidator.h /usr/include/sbml/validator/SBMLValidator.h /usr/include/sbml/validator/SBOConsistencyValidator.h /usr/include/sbml/validator/UnitConsistencyValidator.h /usr/include/sbml/validator/VConstraint.h /usr/include/sbml/validator/Validator.h /usr/include/sbml/xml/ExpatAttributes.h /usr/include/sbml/xml/ExpatHandler.h /usr/include/sbml/xml/ExpatParser.h /usr/include/sbml/xml/LibXMLAttributes.h /usr/include/sbml/xml/LibXMLHandler.h /usr/include/sbml/xml/LibXMLNamespaces.h /usr/include/sbml/xml/LibXMLParser.h /usr/include/sbml/xml/LibXMLTranscode.h /usr/include/sbml/xml/XMLAttributes.h /usr/include/sbml/xml/XMLBuffer.h /usr/include/sbml/xml/XMLError.h /usr/include/sbml/xml/XMLErrorLog.h /usr/include/sbml/xml/XMLExtern.h /usr/include/sbml/xml/XMLFileBuffer.h /usr/include/sbml/xml/XMLHandler.h /usr/include/sbml/xml/XMLInputStream.h /usr/include/sbml/xml/XMLMemoryBuffer.h /usr/include/sbml/xml/XMLNamespaces.h /usr/include/sbml/xml/XMLNode.h /usr/include/sbml/xml/XMLOutputStream.h /usr/include/sbml/xml/XMLParser.h /usr/include/sbml/xml/XMLToken.h /usr/include/sbml/xml/XMLTokenizer.h /usr/include/sbml/xml/XMLTriple.h /usr/include/sbml/xml/XercesAttributes.h /usr/include/sbml/xml/XercesHandler.h /usr/include/sbml/xml/XercesNamespaces.h /usr/include/sbml/xml/XercesParser.h /usr/include/sbml/xml/XercesTranscode.h /usr/lib/libsbml-static.a /usr/lib/libsbml.so /usr/lib/libsbml.so.5 /usr/lib/libsbml.so.5.3.0 /usr/lib/libsbmlj.so /usr/lib/perl5/site-perl/5.8.5/i386-linux-thread-multi/LibSBML.pm /usr/lib/perl5/site-perl/5.8.5/i386-linux-thread-multi/LibSBML.pod /usr/lib/perl5/site-perl/5.8.5/i386-linux-thread-multi/auto/libSBML/LibSBML.so /usr/lib/ruby/site-ruby/1.8/i386-linux-gnu/libSBML.so /usr/share/java/libsbmlj.jar /usr/share/libsbml/COPYING.txt /usr/share/libsbml/FUNDING.txt /usr/share/libsbml/LICENSE.txt /usr/share/libsbml/NEWS.txt /usr/share/libsbml/README.txt /usr/share/libsbml/VERSION.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Jun 19 23:04:57 2013