| analysis | ||
| bin | ||
| conversion | ||
| dataModels | ||
| docs | ||
| gui | ||
| learn | ||
| lib | ||
| synthesis | ||
| verification | ||
| .gitignore | ||
| LICENSE.txt | ||
| pom.xml | ||
| README.md | ||
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) myers@ece.utah.edu
Contributor(s): Nathan Barker, Scott Glass, Kevin Jones, Hiroyuki Kuwahara, Curtis Madsen, Nam Nguyen, Tramy Nguyen, Tyler Patterson, Nicholas Roehner, Jason Stevens, Leandro Watanabe, Zhen Zhang, and Zach Zundel.
Pre-installation Requirement(s)
- Create a GitHub account.
- Setup Git on your machine.
- Install Maven plugin on your machine.
- Install Eclipse IDE for Java.
- Clone the iBioSim GitHub repository to your machine.
Installing iBioSim in Eclipse
- Clone the iBioSim project from command-line or any other method of your choice as instructed in the provided link.
- 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 Projectsunder Maven- Set Maven Projects:
- Root Directory: full path to your iBioSimn 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:
- Under Package Explorer in Eclipse, right click on the iBioSim pom.xml file and click select Run As and click Maven clean
- Perform Update Project under Maven by right clicking on the iBioSim project.
Setting up iBioSim Configurations
- Open up iBioSim
Run Configurationswindow and create a newJava Applicationin 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.gui.main.Gui
- Project:
-
Set the Environment tab to the following information:
- Create 2 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:$BIOSIM/bin).
- DDLD_LIBRARY_PATH: full path to the lib directory in the iBioSim project (i.e. $BIOSIM/lib64)
- Create 2 variables with the corresponding value:
-
Set Arguments tab to the following information:
- Program arguments:
-Xms2048 -Xms2048 -XX:+UseSerialGC
If you are running on a MAC, also set the following:
- VM arguments:
-Dapple.laf.useScreenMenuBar=true -Xdock:name="iBioSim" -Xdock:icon=$BIOSIM/src/resources/icons/iBioSim.jpg
- Program arguments:
-
All run configurations are complete. Make sure to apply all your changes.
Running iBioSim
- Run the java application that you have created from the previous step (i.e. iBioSim_GUI)