SBML
The Systems Biology Markup Language (SBML) is a machine-readable language, based on XML, for representing models of biological processes. SBML can represent metabolic networks, cell-signaling pathways, regulatory networks, and many other kinds of systems. [1] [2] [3]
History
In the year 2000, with funding from the Japan Science and Technology Corporation (JST), Hiroaki Kitano and John C. Doyle assembled a small team of researchers to work on developing better software infrastructure for computational modeling in systems biology. Hamid Bolouri was the leader of the development team, which consisted of Andrew Finney, Herbert Sauro, and Michael Hucka [4]. Their initial work focused on a system to allow a subset of existing simulation software packages to communicate. This subset consisted of DBSolve, E-Cell, Gepasi, Jarnac, StochSim and The Virtual Cell. The groups developing these tools met on April 28-29, 2000 at the ERATO Software Platforms for Molecular Biology workshop, held at the California Institute of Technology. It became clear during the workshop that a common model representation format was needed to enable exchanging models between software tools. The workshop attendees decided the format should be encoded in XML. The Caltech ERATO team developed a proposal for a format and circulated the draft definition to the meeting attendees in August, 2000. This draft underwent extensive discussion over mailing lists and during the Second Workshop on Software Platforms for Systems Biology, held in Tokyo, Japan, in November 2000 as a satellite workshop of the ICSB 2000 conference. After further revisions and discussions, the Caltech team issued a specification for SBML Level 1, Version 1 in March 2001.
SBML Level 2 was conceived at the 5th Workshop on Software Platforms for Systems Biology, held in July 2002, at the University of Hertfordshire, UK [5]. By this time, far more people were involved than the original group of SBML collaborators and the continued evolution of SBML became a larger community effort, with many new tools having been enhanced to support SBML. The workshop participants in 2002 collectively decided to revise the form of SBML in Level 2. The first draft of the Level 2 Version 1 specification was released in August 2002, and the final set of features was finalized in May 2003 at the 7th Workshop on Software Platforms for Systems Biology in Ft. Lauderdale, Florida.
The next iteration of SBML took two years in part because software developers requested time to absorb and understand the larger and more complex SBML Level 2. The inevitable discovery of limitations and errors lead to the development of SBML Level 2 Version 2, issued in September 2006. By this time, the team of SBML Editors (who reconcile proposals for changes and write a coherent final specification document) had changed and now consisted of Andrew Finney, Michael Hucka and Nicolas Le Novère.
SBML Level 2 Version 3 was published in 2007 after countless contributions by and discussions with the SBML community. 2007 also saw the election of two more SBML Editors (Sarah Keating and Stefan Hoops). In 2008, Darren J. Wilkinson and Sven Sahle were elected editors while Andrew Finney and Michael Hucka stepped down. Michael Hucka continued on as Chair of the SBML Editors.
SBML Level 2 Version 4 was published in 2008 after certain changes in Level 2 were requested by popular demand. (For example, an electronic vote by the SBML community in late 2007 indicated a majority preferred not to require strict unit consistency before an SBML model is considered valid.) Version 4 was finalized after the SBML Forum meeting held in Gothenburg, Sweden, as a satellite workshop of ICSB 2008 in the fall of 2008 [6].
The language
Purposes
SBML has three main purposes:
- enabling the use of multiple software tools without rewriting models for each tool;
- enabling models to be shared and published in a form other researchers can use even in a different software environment;
- ensuring the survival of models beyond the lifetime of the software used to create them.
SBML is not an attempt to define a universal language for quantitative models. SBML's purpose is to serve as a lingua franca—an exchange format used by different present-day software tools to communicate the essential aspects of a computational model [7].
Main capabilities
SBML can encode models consisting of biochemical entities (species) linked by reactions to form biochemical networks. An important principle is that models are decomposed into explicitly-labeled constituent elements, the set of which resembles a verbose rendition of chemical reaction equations; the representation deliberately does not cast the model directly into a set of differential equations or other specific interpretation of the model. This explicit, modeling-framework-agnostic decomposition makes it easier for a software tool to interpret the model and translate the SBML form into whatever internal form the tool actually uses.
A software package can read an SBML model description and translate it into its own internal format for model analysis. For example, a package might provide the ability to simulate the model by constructing differential equations representing the network and then perform numerical time integration on the equations to explore the model's dynamic behavior. Or, alternatively, a package might construct a discrete stochastic representation of the model and use a Monte Carlo simulation method such as the Gillespie algorithm.
SBML allows models of arbitrary complexity to be represented. Each type of component in a model is described using a specific type of data structure that organizes the relevant information. The data structures determine how the resulting model is encoded in XML.
In addition to the elements above, another important feature of SBML is that every entity can have machine-readable annotations attached to it. These annotations can be used to express relationships between the entities in a given model and entities in external resources such as databases. A good example of the value of this is in BioModels Database, where every model is annotated and linked to relevant data resources such as publications, databases of compounds and pathways, controlled vocabularies, and more. With annotations, a model becomes more than simply a rendition of a mathematical construct—it becomes a semantically-enriched framework for communicating knowledge.
Levels and versions
SBML is defined in Levels: upward-compatible specifications that add features and expressive power. Software tools that do not need or cannot support the complexity of higher Levels can go on using lower Levels; tools that can read higher Levels are assured of also being able to interpret models defined in the lower Levels. Thus new Levels do not supersede previous ones. However, each Level can have multiple Versions within it, and new Versions of a Level do supersede old Versions of that same Level.
There are currently three Levels of SBML defined. The current Versions within those Levels are the following:
- Level 3 Version 1 Core, for which the final Release 1 candidate specification was issued 31 December 2009
- Level 2 Version 4 Release 1
- Level 1 Version 2
Open-source software infrastructure such as libSBML allows developers to support all Levels of SBML their software with a minimum amount of effort.
The SBML Team maintains a public issue tracker where readers may report errors or other issues in the SBML specification documents. Reported issues are eventually put on the list of official errata associated with each specification release. (An example is the list of errata for Level 2 Version 4.)
Structure
A model definition in SBML Levels 2 and 3 consists of lists of one or more of the following components:
- Function definition: A named mathematical function that may be used throughout the rest of a model.
- Unit definition: A named definition of a new unit of measure, or a redefinition of an existing SBML default unit. Named units can be used in the expression of quantities in a model.
- Compartment Type (only in SBML Level 2): A type of location where reacting entities such as chemical substances may be located.
- Species type (only in SBML Level 2): A type of entity that can participate in reactions. Examples of species types include ions such as Ca2+, molecules such as glucose or ATP, binding sites on a protein, and more.
- Compartment: A well-stirred container of a particular type and finite size where species may be located. A model may contain multiple compartments of the same compartment type. Every species in a model must be located in a compartment.
- Species: A pool of entities of the same species type located in a specific compartment.
- Parameter: A quantity with a symbolic name. In SBML, the term parameter is used in a generic sense to refer to named quantities regardless of whether they are constants or variables in a model.
- Initial Assignment: A mathematical expression used to determine the initial conditions of a model. This type of structure can only be used to define how the value of a variable can be calculated from other values and variables at the start of simulated time.
- Rule: A mathematical expression used in combination with the differential equations constructed based on the set of reactions in a model. It can be used to define how a variable's value can be calculated from other variables, or used to define the rate of change of a variable. The set of rules in a model can be used with the reaction rate equations to determine the behavior of the model with respect to time. The set of rules constrains the model for the entire duration of simulated time.
- Constraint: A mathematical expression that defines a constraint on the values of model variables. The constraint applies at all instants of simulated time. The set of constraints in model should not be used to determine the behavior of the model with respect to time.
- Reaction: A statement describing some transformation, transport or binding process that can change the amount of one or more species. For example, a reaction may describe how certain entities (reactants) are transformed into certain other entities (products). Reactions have associated kinetic rate expressions describing how quickly they take place.
- Event: A statement describing an instantaneous, discontinuous change in a set of variables of any type (species concentration, compartment size or parameter value) when a triggering condition is satisfied.
Community
As of December, 2009, more than 180 software systems advertise support for SBML. A current list is available in the form of the SBML Software Guide, hosted at sbml.org.
SBML has been and continues to be developed by the community of people making software platforms for systems biology, through active email discussion lists and biannual workshops. The meetings are often held in conjunction with other biology conferences, especially the International Conference on Systems Biology (ICSB). The community effort is coordinated by an elected editorial board made up of five members. Each editor is elected for a 3-year non-renewable term.
Tools such as an on-line model validator as well as open-source libraries for incorporating SBML into software programmed in the C, C++, Java, Python, Mathematica, MATLAB and other languages are developed partly by the SBML Team and partly by the broader SBML community.
SBML is an official IETF MIME type, specified by RFC 3823[8]
References
- ↑ Hucka M, Finney A, Sauro HM, Bolouri H, Doyle JC, Kitano H et al. (2003). "The systems biology markup language (SBML): a medium for representation and exchange of biochemical network models.". Bioinformatics 19 (4): 524-31. PMID 12611808. http://www.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&retmode=ref&cmd=prlinks&id=12611808.
- ↑ Finney A, Hucka M (2003). "Systems biology markup language: Level 2 and beyond.". Biochem Soc Trans 31 (Pt 6): 1472-3. doi: . PMID 14641091. http://www.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&retmode=ref&cmd=prlinks&id=14641091.
- ↑ Hucka M, Finney A, Bornstein BJ, Keating SM, Shapiro BE, Matthews J et al. (2004). "Evolving a lingua franca and associated software infrastructure for computational systems biology: the Systems Biology Markup Language (SBML) project.". Syst Biol (Stevenage) 1 (1): 41-53. PMID 17052114. http://www.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&retmode=ref&cmd=prlinks&id=17052114.
- ↑ Hucka, Michael. "History of SBML". http://sbml.org/History_of_SBML.
- ↑ SBML Team. "The 5th Workshop on Software Platforms for Systems Biology". http://sbml.org/Events/Workshops/The_5th_Workshop_on_Software_Platforms_for_Systems_Biology.
- ↑ SBML Team. "The 13th SBML Forum". http://sbml.org/Events/Workshops/The_13th_SBML_Forum_Meeting.
- ↑ Finney, A., Hucka, M., Bornstein, B.J., Keating, S.M., Shapiro, B.E., Matthews, J., Kovitz, B.L., Schilstra, M.J., Funahashi, A., Doyle, J.C., Kitano, H. (2006). "Software Infrastructure for Effective Communication and Reuse of Computational Models". Systems Modeling in Cell Biology: From Concepts to Nuts and Bolts. MIT Press. pp. 369–378.
- ↑ Kovitz, Benjamin (June). "MIME Media Type for the Systems Biology Markup Language (SBML).". IETF Request for Comments 3823. http://www.rfc-editor.org/rfc/rfc3823.txt.
See also
- BioModels Database
- BioPAX
- CellML
- MIASE
- MIRIAM
- Systems Biology Ontology (SBO)
- Systems Biology Graphical Notation (SBGN)
External links
- http://sbml.org Home site of SBML
If you like SEOmastering Site, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...