libSBML C++ API
5.20.2
|
Please use the following table to find the appropriate instructions for your situation:
For stable releases of libSBML, we provide a unified installer for all versions of MATLAB and all operating systems. The result is ready to run after installation; it does not need compilation, and only requires you tell MATLAB where you placed the files. Here are the steps:
addPath
command.
TranslateSBML('test.xml')
. If
all is well, the output will be a MATLAB data structure.
savepath
command.
installSBML
, which performs the above steps.
Note that the MATLAB installation archive contains only the MATLAB interface; it does not contain the core libSBML library or language libSBML API interfaces for other programming languages.
We provide four ways to obtain the libSBML Python interface. Please use whichever one you prefer.
We provide a distribution of the libSBML Python interface through Conda Forge, making it accessible through conda. To install it this way, follow these instructions:
conda install -c conda-forge python-libsbml
conda install -c conda-forge python-libsbml-experimental
After this, you should be able to access the Python language interface for
libSBML directly from your Python interpreter by importing it like any other
Python module. In other words, import libsbml
should work in
your Python interpreter.
Important: the default version of pip
on your
system may not be appropriate for the version of Python you want to use. (For
example, the default pip
may be for Python 2.7, which will
not work if you want to use Python 3.x.) If you do not have
pip
installed for a given version of Python, a reliable way to
install it is the following:
sudo pythonversion get-pip.py
An example of the command line above is the following: sudo python3 get-pip.py
.
pip2
or pip3
on your system, then to
get the stable release of libSBML, execute the following command:
sudo pipversion install python-libsbml
where version is either 2
or 3
depending on whether you want to use Python 2 or Python 3.
Alternatively, for the experimental release of libSBML, use the
following command instead:
sudo pipversion install python-libsbml-experimental
After this, you should be able to access the Python language interface
for libSBML on your computer directly from your Python interpreter by
importing it like any other Python module. In other words,
import libsbml
Once you have downloaded the appropriate version, one more step is required to install the libSBML R interface. You can do this step in one of two ways: either using the R graphical interface, or using a terminal/shell command. These approaches are explained below.
From the R menu "Packages" or "Packages & Data" (depending on your operating system), select the "Package Installer" item. You will be presented with an interface that lets you install a local binary package. Use that interface to navigate to the directory where you copied the libSBML archive file, and select the archive file for installation.
Suppose that the path to the libSBML R archive on your computer is archive. Execute the following command in a terminal/shell window (note: not in the R command line interpreter!):
R CMD INSTALL archive
If all goes well, you should see R print messages. If you're using the source package, it will be something such as the following (the paths on your computer may differ):
* installing to library '/Library/Frameworks/R.framework/Versions/3.1/Resources/library' * installing *binary* package 'libSBML' ... * DONE (libSBML)
whereas if you are using a binary package, the messages will be something like the following instead:
> utils:::menuInstallLocal() package ‘libSBML’ successfully unpacked and MD5 sums checked >
From this point forward, you should be able to call on libSBML functions from within your copy of R. You can test whether the installation was successful by trying the following command in R:
library('libSBML')
If R does not report an error when you execute this command, then the libSBML R interface is probably installed correctly.
If no installation package is available for your particular platform, or you have special requirements for libSBML's configuration, you can always build libSBML from sources. The process for doing that is the topic a separate section, Building and installing libSBML .