iBioSim is a computer-aided design (CAD) tool aimed for the modeling, analysis, and design of genetic circuits. While iBioSim primarily targets models of genetic circuits, models representing metabolic networks, cell-signaling pathways, and other biological and chemical systems can also be analyzed.
iBioSim also includes modeling and visualization support for multi-cellular and spatial models as well.
It is capable of importing and exporting models specified using the Systems Biology Markup Language (SBML). It can import all levels and versions of SBML and is able to export Level 3 Version 1. It supports all core SBML modeling constructs except some types of fast reactions, and also has support for the hierarchical model composition, layout, flux balance constraints, and arrays packages.
It has also been tested successfully on the stochastic benchmark suite and the curated models in the BioModels database. iBioSim also supports the Synthetic Biology Open Language (SBOL), an emerging standard for information exchange in synthetic biology.
Website: iBioSim
Video Demo: Tools Workflow
Contact: Chris Myers (@cjmyers) [email protected]
Contributor(s): Nathan Barker, Scott Glass, Kevin Jones, Hiroyuki Kuwahara, Curtis Madsen, Nam Nguyen, Tramy Nguyen, Tyler Patterson, Nicholas Roehner, Jason Stevens, Leandro Watanabe, Michael Zhang, Zhen Zhang, and Zach Zundel.
Active Developer(s): Chris Myers, Tramy Nguyen, Leandro Watanabe, Michael Zhang.
- Create a GitHub account.
- Setup Git on your machine.
- Install Maven plugin on your machine.
- Install Eclipse IDE for Java.
- Install libSBML for validation and flattening.
- Clone the iBioSim, libSBOLj, and SBOLDesigner GitHub repositories to your machine
- Clone libSBOLj (https://github.com/SynBioDex/libSBOLj.git) project (e.g.
git clone https://github.com/SynBioDex/libSBOLj.git
) in a location of your preference. Go to the directory where the libSBOLj is checked out and make sure you are on the develop branch. Performmvn clean
and thenmvn install
. This will build libSBOLj and install it into your local repository, which is used as a dependency in iBioSim. - Clone SBOLDesigner (https://github.com/SynBioDex/SBOLDesigner) project (e.g.
git clone https://github.com/SynBioDex/SBOLDesigner.git
) in a location of your preference. Go to the directory where the SBOLDesigner is checked out and performmvn clean
and thenmvn install
. This will build SBOLDesigner and install it into your local repository, which is used as a dependency in iBioSim. - Clone the iBioSim (https://github.com/MyersResearchGroup/iBioSim.git) project (e.g.
git clone https://github.com/MyersResearchGroup/iBioSim.git
) to a location of your preference. Go to the directory where the iBioSim is checked out and performmvn clean install
. This will install the local non-Maven dependencies into your local repository and then build iBioSim. (NOTE: if you do not want to generate javadocs, use the flag-Dmaven.javadoc.skip=true
).
- Build an executable jar for iBioSim by running
mvn clean
and thenmvn install
on the project root. - Copy
gui/target/iBioSim-gui-3.0.0-SNAPSHOT-jar-with-dependencies.jar
to the bin directory of your iBioSim project and renameiBioSim-gui-3.0.0-SNAPSHOT-jar-with-dependencies.jar
toiBioSim.jar
. - In the bin directory, run:
- Windows:
iBioSim.bat
- Mac OS X:
iBioSim.mac64
- Linux:
iBioSim.linux64
- Windows:
- So far, instructions on how to build, install, and run iBioSim from source have been presented. However, these steps only included source code that are native Java. iBioSim incorporates tools that are not Java-based, and therefore, have to be installed separately.
- The easiest way to install reb2sac and GeneNet is to simply download the pre-compiled binaries for your operating system below:
- Another way to install them is to compile these tools on your machine following the instructions below:
- After compiling or downloading reb2sac and GeneNet, copy the compiled binaries into the bin directory in the local copy of your iBioSim.
- Follow the installation instructions for iBioSim above.
- Open up your Eclipse workspace that you want to import your iBioSim project to.
- Select Import from the File Menu.
- When given the option to select which project import, select
Existing Maven Projects
under Maven- Set Maven Projects:
- Root Directory: full path to your iBioSim project (i.e. path/to/iBioSim)
- Once root directory is set, all the pom.xml should be displayed under Projects. Select all pom.xml files.
- All installation should be complete so click
Finish
- Set Maven Projects:
- Perform
Update Project
under Maven by right clicking on the iBioSim project. - If you want to import SBOLDesigner into Eclipse, then repeat the previous steps for SBOLDesigner. Make sure you execute
Maven generate-sources
to resolve some dependencies in SBOLDesigner as well. - If you want to update SBOLDesigner in iBioSim, then under
Package Explorer
in Eclipse, right click on the SBOLDesigner pom.xml file and click selectRun As
and clickMaven clean
. Do the same forMaven install
. Alternatively, you can do this from the command-line as instructed in Installing iBioSim.
- Open up iBioSim
Run Configurations
window and create a newJava Application
in your Eclipse workspace
- Give the java application a name (i.e. iBioSim_GUI)
- Set the Main tab to the following information:
- Project:
iBioSim-gui
- Main class:
edu.utah.ece.async.ibiosim.gui.Gui
- Project:
- Set the Environment tab to the following information:
- Create variables with the corresponding value:
- BIOSIM: full path to your iBioSim project (i.e. path/to/iBioSim)
- PATH: append your copy of iBioSim bin directory to whatever existing PATH already supplied to the value of this variable (i.e. $PATH:path/to/iBioSim/bin).
- Create variables with the corresponding value:
- Set Arguments tab to the following information:
- Program arguments:
-Xms2048 -Xms2048 -XX:+UseSerialGC -Djava.library.path=/path/to/lib/
- Note: for the java library path,
/path/to/lib/
is the location where libSBML is installed. The libSBML is installed by default in/usr/local/lib
in Linux and Mac OS X machines andC:\Program Files\SBML\libSBML-5.16.0-libxml2-x64
in Windows 64-bit machines.
- Program arguments:
- If you are running on Mac OS X, also set the following:
- VM arguments:
-Dapple.laf.useScreenMenuBar=true -Xdock:name="iBioSim" -Xdock:icon=$BIOSIM/src/resources/icons/iBioSim.jpg
- VM arguments:
- All run configurations are complete. Make sure to apply all your changes.