Skip to main content

MEMOSys: Bioinformatics platform for genome-scale metabolic models

Abstract

Background

Recent advances in genomic sequencing have enabled the use of genome sequencing in standard biological and biotechnological research projects. The challenge is how to integrate the large amount of data in order to gain novel biological insights. One way to leverage sequence data is to use genome-scale metabolic models. We have therefore designed and implemented a bioinformatics platform which supports the development of such metabolic models.

Results

MEMOSys (MEtabolic MOdel research and development System) is a versatile platform for the management, storage, and development of genome-scale metabolic models. It supports the development of new models by providing a built-in version control system which offers access to the complete developmental history. Moreover, the integrated web board, the authorization system, and the definition of user roles allow collaborations across departments and institutions. Research on existing models is facilitated by a search system, references to external databases, and a feature-rich comparison mechanism. MEMOSys provides customizable data exchange mechanisms using the SBML format to enable analysis in external tools. The web application is based on the Java EE framework and offers an intuitive user interface. It currently contains six annotated microbial metabolic models.

Conclusions

We have developed a web-based system designed to provide researchers a novel application facilitating the management and development of metabolic models. The system is freely available at http://www.icbi.at/MEMOSys.

Background

With the assembly of the first whole genome sequences in the mid-1990s [1], it became possible to identify all gene products involved in biological processes of an organism [2], and soon it became obvious that a holistic approach can provide answers to relevant mechanistic questions, i.e. by simultaneously studying all processes and dynamic interactions at molecular level in order to define entire pathways and predict the behavior of the investigated systems. The molecular activity of cell components is strongly interconnected and needs to be investigated using a system-level approach to explain physiological characteristics and dynamic behavior [3]. Over and above, recent development of next generation sequencing platforms considerably reduces analysis time and financial effort, which allows a far wider use of genome sequencing in biological and biotechnological research. The task at hand is now to integrate the large amount of data about biological systems into models in order to gain novel insights into their interconnected functionality [4].

A well-established approach to analyze high-throughput results of complex cellular systems is genome-scale metabolic modeling, as it provides a new way for investigating molecular processes [5, 6]. A metabolic model aims at assessing the physiological states of an organism by describing it as the sum of all chemical reactions of a particular system [7]. Due to the growing number of sequenced organisms, genome-scale metabolic models are compiled for more and more organisms, including over 20 manually curated bacterial species, yeast and several fungi, as well as components of mammalian cells [6, 8, 9]. Genome-scale metabolic models have already proven to be valuable for strain engineering which aims at improving production yield and stability [10, 11]. Their ability to predict the outcome of gene deletions and prognosticate the adaptation of an organism to new nutritional environments makes them a useful instrument to determine the characteristics of alternative flux distributions [12]. Future applications of metabolic models will contribute to the understanding of microbial genomes and may lead to better diagnostic tests and therapies for human diseases [13].

The reconstruction of a new model can be supported by protein homology comparisons with already existing networks. Therefore, several repositories were created which provide access to established metabolic models (e.g.: BioCyc [14], BioModels [15], BIGG [16]). However, while these databases and web applications allow researchers to download and query metabolic models, none of them provides support for the laborious reconstruction process. Assembling the final version of a model is an iterative process involving many manual steps that generate multiple intermediate versions. The possibility to review all changes, extract previous versions, and use an intuitive interface to create new entries would greatly enhance the construction of new models. Hence, an application supporting the development of a model would be of great help to the community.

Basic requirement for such a model development application is the support of data standards. The most prominent standard to describe biological models is the Systems Biology Markup Language (SBML) [17]. It provides a common intermediate format that can be used to define models in regulatory networks, signaling pathways, gene regulation networks, and metabolic pathways. The work of Herrgård et al.[9] focused on combining existing yeast models into one consensus reconstruction and published a SBML compliant model where they laid special emphasis on referencing model components to persistent databases or using database-independent annotations, such as SMILES [18] or InChI [19] strings. These annotations allow the unambiguous identification of components and solve the problem of comparing models where an inconsistent naming schema was applied. Therefore, enzymes should be assigned to distinct Enzyme Commission classification numbers (EC numbers) and may be further linked to established and manually curated databases like KEGG [20]. Moreover, metabolites should be annotated with unique identifiers as defined in the ChEBI database [21] and the KEGG Compound Database [22] to enable unambiguous component identification.

The existence of a unified bioinformatics platform which supports researchers in the construction of new genome-scale metabolic models and offers sophisticated query mechanisms accessing the complete developmental history would be of great interest to the metabolic research community. Therefore, we have developed a new application combining all above mentioned functionalities to support research and development of genome-scale metabolic models. The platform provides customizable data exchange mechanisms using the SBML format, an integrated version control system, and it currently holds six microbial genome-scale metabolic models.

Implementation

The MEMOSys system was implemented in Java, a platform independent and object-oriented programming language [23]. The application is based on Java Enterprise Edition 5 (Java EE) and uses the JBoss Seam framework [24]. It features a three-tier architecture consisting of a presentation-, logic-, and database- layer. A relational database (PostgreSQL [25] or Oracle [26]) is used as the persistence backend which is accessed by the Hibernate [27] persistence framework. The logic layer consists of ordinary Java objects (POJOs) and Enterprise Java Beans (EJB) deployed on a JBoss [28] application server. The presentation layer is based on Java Server Faces (JSF) [29] and the JBoss Richfaces [30] component library.

The schema of the MEMOSys application has been designed using the Unified Modeling Language (UML) [31] (see additional file 1: databaseDiagram.pdf depicting the database model). The use of a UML representation improves maintainability as the application architecture is outright visible and provides an important part of the system documentation. After finishing the definition of a database layout the reverse engineering mechanism of the Seam framework has been used to create a first scaffold of MEMOSys. The resulting application components were used as a starting point to implement the required functionality.

Envers [32] has been used to provide basic functionality for the version control mechanism. The framework allows easy versioning of persistent classes and is well integrated into Hibernate. For each annotated entity, Envers creates an additional table to store its revisions. A unique revision number is used for all entities to allow retrieving a view of the database at a certain revision. The framework provides a rich API which is used by MEMOSys to search for archived data. In addition, Hibernate native SQL queries are used to fetch versioned entities where the API provided by Envers could not be used.

The libSBML library [33] is used to read and create SBML files. Furthermore, it has been modified to include attributes which were not present in exported files under certain conditions (e.g.: always output stoichiometry information). The modifications included customizing the libSBML source code files and adapting several libSBML wrapper classes.

The application uses the resource description framework (RDF) and the "Minimum information requested in the annotation of biochemical models" (MIRIAM) [34] notation to annotate components with external references. Each MIRIAM identifier is a single unique string, which unambiguously references an object in an external resource (see Figure 1).

Figure 1
figure 1

Edit and view reactions. The edit view (a) uses a balance check mechanism to check the equilibrium of production and consumption and highlights missing or overproduced components. EC Number and KEGG Id input fields are examples of inserted MIRIAM identifiers. The detail view (b) of a reaction displays the full chemical equation and transforms MIRIAM identifiers into links that open the corresponding external resource page.

Stored data is secured by a user management system which allows the definition of different user access levels and offers concurrent access in a multi-centric environment [35]. Permission checks are performed at all layers of the application guaranteeing a fine grained and secure authorization mechanism.

Results

MEMOSys is an application for managing, developing, and storing genome-scale metabolic models of microbial organisms. It is a database-centric Java EE application including a web front-end, a version control system, comparison functionality, and data exchange mechanisms. In the following, the major features of the application are described.

Data Model

MEMOSys has been designed to map and store all properties of a metabolic model in a database. Reactions are the essential part of a model and their main attributes are name, reactants, and their reversibility. Each reactant is made up of a metabolite, the stoichiometric coefficient for that metabolite, and is assigned to a compartment. Compartments are arranged in a hierarchy which is mapped to the database using references to their parent compartment. Reactions can be assigned to a subsystem which is a representation of a certain metabolic pathway. To support users in the creation or adaptation of reactions, MEMOSys provides a balance check mechanism that validates the elemental composition of consuming and producing reactants (see Figure 1).

In addition to general properties like name and EC number, reactions are linked to citations in order to provide primary literature evidence. Genes and their relationship to other genes and reactions can be described using Boolean operators and hierarchical structures (e.g.: gene1 AND [gene2 OR gene3]). For genes having a reference to the UniProt database [36], the system provides a mechanism to download the amino acid sequence of the transcribed protein and display additional information.

The model is represented in the database by a name, its unique model id, and containing reactions. It specifies an organism and may contain references to an image that graphically represents the metabolic map. Compartments, metabolites, genes, and reactions may include several references to external databases using the MIRIAM notation. MEMOSys automatically transforms MIRIAM annotations to web addresses and displays links to the external references. Moreover, the application includes a mechanism to easily define additional external databases which can be referenced by components. The reference itself can be provided either as a MIRIAM annotation or as plain hyperlink.

Version control

The development of a metabolic model is an iterative task producing several intermediate versions until the final model is established. Therefore, the application includes an automatic version control system that stores each modification as a new revision. Except for static information like file uploads, all entities and their references are included in the version control system. This allows researchers to retrieve the complete model at any revision and query, compare, and export previous versions of a model. MEMOSys provides a function to display the history of all version controlled entities including a list of modifications between each version, which allows researchers to track development changes (see Figure 2). The home screen (see Figure 3) of the application lists the latest modifications for metabolites and reactions which gives users a first overview about recent updates.

Figure 2
figure 2

Entity discussions and history. The top part of the figure lists the discussions about the current reaction. The lower part shows its history including the latest modifications. For each version a comment, the timestamp, the user, and the differences to the last version are shown. The currently selected version is marked using a gray background color.

Figure 3
figure 3

Home screen. This figure illustrates the home screen of the application where users can select models and versions used in the reaction view and quick search functionality. The page displays the latest modifications of reactions and metabolites and shows the newest comments on the web board (collapsed in the figure).

Model selection

The home screen of the application displays a list of all available models and allows the selection of specific versions. Since each reaction belongs to a model, the system allows users to restrict reaction queries to currently selected models and examine reactions of only one model or several models at once. The model selection is taken into account by all reaction queries and the quick search functionality.

Quick search

The quick search field, located beneath the navigation menu on the start page, queries for several entities at once:

  • Reactions are searched for abbreviation, name, EC number, enzyme, ORF, and KEGG ID.

  • Metabolites are searched for abbreviation, name, formula, ChEBI ID, and KEGG ID.

  • Genes are searched for abbreviation, name, EC number, KEGG ID, and UniProt ID

  • Organisms are searched for name.

For each entity type the result page displays lists of found items and provides links to referenced objects.

Data exchange

MEMOSys features import and export of metabolic models that are stored in the SBML format.

MEMOSys allows export of all available versions of a model and supports restricting the exported reactions by either including only reactions that are in certain subsystems, or using the result of a reaction query as input for the export mechanism. Furthermore, the export functionality defines three different ways to assign reactions and metabolites to compartments (compartmentalization):

  • Completely Compartmentalized - reactions and metabolites are assigned to compartments as they are stored in the database.

  • Partially Decompartmentalized - reactions and metabolites assigned to compartments which are within the cytoplasm (e.g.: peroxisome, nucleus) are reassigned to the cytoplasm. All other compartments are still present in the exported model.

  • Fully Decompartmentalized - the exported model contains no compartments resulting in an unsegregated system.

Currently, MEMOSys supports export of models into valid SBML files that contain either all stored information about a model or are optimized for usage in the COBRA toolbox [37]. In addition to the SBML export functionality, metabolite and reaction lists can be exported into Excel or PDF files for further use.

Model comparison

Great attention has been paid to the implementation of a model comparison functionality. The application allows researchers to compare any version of two different models. Moreover, it is possible to compare two versions of the same model to identify development changes. Reactions are compared based on their KEGG ID if available for both reactions. Otherwise the system uses the chemical equation (reversibility, metabolites, and their stoichiometry) for comparison. Metabolites are compared based on their ChEBI ID, KEGG ID, and their name. Genes are compared based on their UniProt ID and their name.

The first section of the comparison result displays a summary of the detected differences (see Figure 4) and shows Venn diagrams for reactions, metabolites, and genes. Next, restrictions on the used models can be applied to limit the results to selected compartments and subsystems. In addition to the graphical representation, the application shows detailed lists of equal and unique entities for each model and provides tabs to switch between reactions, metabolites, and genes. Furthermore, reactions, metabolites, and genes are linked to the corresponding pages which display detailed information about the components.

Figure 4
figure 4

Visualization of a comparison result. Displayed is a graphical representation of a model comparison result. It shows the area accurate Venn diagrams for reactions, metabolites, and genes, and provides a short quantitative description of the differences between the models. In the next stage the result list can be restricted by the selection of subsystems or compartments.

User access

MEMOSys is designed as a multi-user application which is capable of handling concurrent accesses due to the used enterprise application framework. It defines four different user classes to control data access (see Table 1). Unregistered visitors are allowed to view only accepted, publicly available versions of a model. Registered users are able to browse in addition to publicly available models, accepted versions of assigned models. Furthermore, for registered users certain user settings are persisted in the database to increase the usability of the application. Editors are able to create, update, and delete entities of assigned models in the database. Moreover, they have access to their unpublished models, are allowed to upload files to the web server, and import SBML models into the database. Administrators are editors, which have access to all models, are able to accept modifications of entities, and change the public availability of models.

Table 1 User classes in MEMOSys

Supervision

Each modification of an object is at first marked as pending and needs to be confirmed by an administrator. The system provides a clean user interface to accept pending changes. Every time an administrator approves modifications, a new version number is assigned to the model. In addition to the internal revision number provided by the auditing system, models contain a user defined version number which can be set by administrators. MEMOSys differentiates between two access types for models: (a) public available models are visible to all visitors and contain only accepted modifications; (b) assigned models are only visible to registered users and editors of the particular models.

Web board

The integrated web board allows researchers to create general threads and attach discussions to stored entities. On every entity page a list of currently attached threads is shown, and new discussions can be added to the object. The latest comments of all discussions are displayed on the home screen to quickly update users about new topics. Administrators are able to mark threads as sticky to permanently display them on top of the thread list.

Model integration

The developed application has been filled with several well-annotated reconstructions of metabolic models. Each reconstruction was manually reviewed in accordance with the model developers and has been improved to be stored as a valid SBML file.

The following models are currently stored in the system:

  • iWV1314- Aspergillus oryzae[38]

  • iMA871 - Aspergillus niger[39]

  • iHD666 - Aspergillus nidulans[40]

  • iFF708 - Saccharomyces cerevisiae[41]

  • iIN800 - Saccharomyces cerevisiae[42]

  • ymn2_0 - Saccharomyces cerevisiae[9]

Additional models will be included in the future. Moreover, authors are encouraged to provide their models in order to enlarge the repository.

Discussion

We have developed a bioinformatics platform for the management, development, and storage of metabolic models. MEMOSys is aimed at the metabolic research community to facilitate the study of existing metabolic models and ease the collaborative development of new ones.

Blazeck and Alper [43] and Risso et al. [44] state that the development of new metabolic networks is an iterative process where the possibility to reproduce each development step is an important prerequisite. Therefore, MEMOSys features a built-in version control mechanism that automatically stores the complete history of a model. The system allows querying and displaying previous versions of a model and provides the possibility to display the complete history of each component. Since certain use cases demand access to specific versions of a model, the MEMOSys export mechanism is fully integrated into the version control system and provides researchers access to the complete history of a model.

As more and more metabolic models are being generated, the future development of genome-scale models will strongly rely on already existing reconstructions of related organisms. Hence, a flexible and intuitive mechanism to assess the similarity between models is of great importance. For this reason, MEMOSys offers a comparison tool to get an overview of the differences between two models featuring Venn diagrams and allowing restricting the comparison to a selection of subsystems or compartments. As the unique identification of components in metabolic models is a prerequisite for model comparability and scientific collaborations [45], special emphasis has been laid on annotating components with external references using the MIRIAM notation.

Over the past years, numerous methods and toolboxes have been developed to analyze large-scale metabolic networks [37, 46–48]. In order to make use of these tools, the application provides sophisticated data exchange mechanisms that allow the export of models into valid SBML files, which can be, for instance, directly imported into the widely-used COBRA toolbox. Furthermore, the application is easily extensible to include file formats of new analysis tools. MEMOSys supports several different ways of compartmentalization which allows researchers to directly use exported models in analysis tools that do not support a fine-grained assignment of reactions to compartments.

The development of new metabolic models is facilitated by using previously inserted, well annotated components that were created during prior reconstruction processes. Furthermore, due to the flexible export mechanism certain parts of existing models can be used as a scaffold for new models. As the development of a new model is often a collaborative task between several different institutes, specific prerequisites are required by the used software. MEMOSys meets these demands by providing many useful development and collaboration features. The application supports the definition of user roles to guarantee that unpublished data is only visible within a specific group. Furthermore, the application offers a feature rich editing system and includes a supervision mechanism which enforces that modifications are approved by a key researcher to maintain a high model quality. The integrated web board facilitates the collaborative development as researchers can create either global threads to discuss general topics, or attach threads to individual objects to debate specific issues of a model or its components. Moreover, MEMOSys supports concurrent access by multiple users and offers an adjustable user management system for data access control.

In contrast to the Pathway Tools [49] software system, which has also been used for the reconstruction of metabolic pathways [50], MEMOSys offers a rich web-based editing functionality for all components and covers change management for relevant model elements by a built-in version control system. Moreover, its specific focus lies on supporting the research and development of metabolic models opposed to the breadth of functionality provided by Pathway Tools. Therefore, MEMOSys is able to offer interfaces and functionalities specifically optimized for the work with genome-scale metabolic models.

The developed bioinformatics platform for genome-scale metabolic models offers a sophisticated version control system, includes a flexible user management system, and is free of charge. Currently existing systems like the BiGG Database or the BioModels database do not actively support researchers during the reconstruction of novel metabolic models by providing an automatic auditing system and a customizable authentication and authorization system. Furthermore, the developed application features a state-of-the-art web front-end and versatile search functionalities, which allow researchers to perform complex search queries on the stored models. MEMOSys is not restricted to a particular organism and is therefore able to manage any metabolic model. It currently contains six well annotated models which have been manually curated to be compliant with the SBML specification.

Conclusions

In conclusion, the implemented application MEMOSys provides researchers a tool to store, manage, and develop metabolic models. The web interface and the included version control system greatly facilitate the development of new metabolic models and support the study of existing one. Furthermore, the authorization system and the clear definition of user roles allow collaborations across departments and institutions. Due to the flexible and modular software architecture additional tools and new methods can be easily integrated into the application.

Availability and requirements

  • Project name: MEMOSys

  • Project home page: http://www.icbi.at/MEMOSys also available through http://sysbio.se/BioMet

  • Operating system: Solaris, Linux, Windows, Mac OS X

  • Programming language: Java

  • Other requirements: Java JDK 1.6.x, Oracleâ„¢ 9i or PostgreSQLâ„¢ 8.0.x, a server with at least 1 GB of main memory available to the application

  • License: GNU AFFERO GENERAL PUBLIC LICENSE

  • Any restrictions to use by non-academics: none

The application can be used either by requesting for an account on the existing server or by performing a local installation.

The setup of the application should be completed within a few hours provided the necessary database access rights are granted. We recommend installing the application on a central server by a system administrator. Step-by-step instructions are provided at the project's web site together with the necessary files.

References

  1. Fleischmann RD, Adams MD, White O, Clayton RA, Kirkness EF, Kerlavage AR, Bult CJ, Tomb JF, Dougherty BA, Merrick JM: Whole-genome random sequencing and assembly of Haemophilus influenzae Rd. Science 1995, 269: 496-512. 10.1126/science.7542800

    Article  CAS  PubMed  Google Scholar 

  2. Palsson B: Metabolic systems biology. FEBS Lett 2009, 583: 3900-3904. 10.1016/j.febslet.2009.09.031

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  3. Eils R, Kriete A: Computational Systems Biology. Academic Press; 2005.

    Google Scholar 

  4. Kay E, Wren BW: Recent advances in systems microbiology. Curr Opin Microbiol 2009, 12: 577-581. 10.1016/j.mib.2009.08.007

    Article  CAS  PubMed  Google Scholar 

  5. Trawick JD, Schilling CH: Use of constraint-based modeling for the prediction and validation of antimicrobial targets. Biochem Pharmacol 2006, 71: 1026-1035. 10.1016/j.bcp.2005.10.049

    Article  CAS  PubMed  Google Scholar 

  6. Selvarasu S, Karimi IA, Ghim GH, Lee DY: Genome-scale modeling and in silico analysis of mouse cell metabolic network. Mol Biosyst 2010, 6: 152-161. 10.1039/b912865d

    Article  CAS  PubMed  Google Scholar 

  7. Palsson B: Systems Biology: Properties of Reconstructed Networks. Cambridge University Press; 2006.

    Book  Google Scholar 

  8. Durot M, Bourguignon PY, Schachter V: Genome-scale models of bacterial metabolism: reconstruction and applications. FEMS Microbiol Rev 2009, 33: 164-190. 10.1111/j.1574-6976.2008.00146.x

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  9. Herrgard MJ, Swainston N, Dobson P, Dunn WB, Arga KY, Arvas M, Bluthgen N, Borger S, Costenoble R, Heinemann M, Hucka M, Le Novere N, Li P, Liebermeister W, Mo ML, Oliveira AP, Petranovic D, Pettifer S, Simeonidis E, Smallbone K, Spasic I, Weichart D, Brent R, Broomhead DS, Westerhoff HV, Kirdar B, Penttila M, Klipp E, Palsson BO, Sauer U, Oliver SG, Mendes P, Nielsen J, Kell DB: A consensus yeast metabolic network reconstruction obtained from a community approach to systems biology. Nat Biotechnol 2008, 26: 1155-1160. 10.1038/nbt1492

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  10. Lee SY, Lee DY, Kim TY: Systems biotechnology for strain improvement. Trends Biotechnol 2005, 23: 349-358. 10.1016/j.tibtech.2005.05.003

    Article  CAS  PubMed  Google Scholar 

  11. Nielsen J, Jewett MC: Impact of systems biology on metabolic engineering of Saccharomyces cerevisiae. FEMS Yeast Res 2008, 8: 122-131. 10.1111/j.1567-1364.2007.00302.x

    Article  CAS  PubMed  Google Scholar 

  12. Papin JA, Price ND, Wiback SJ, Fell DA, Palsson BO: Metabolic pathways in the post-genome era. Trends Biochem Sci 2003, 28: 250-258. 10.1016/S0968-0004(03)00064-1

    Article  CAS  PubMed  Google Scholar 

  13. Westerhoff HV, Palsson BO: The evolution of molecular biology into systems biology. Nat Biotechnol 2004, 22: 1249-1252. 10.1038/nbt1020

    Article  CAS  PubMed  Google Scholar 

  14. Karp PD, Ouzounis CA, Moore-Kochlacs C, Goldovsky L, Kaipa P, Ahren D, Tsoka S, Darzentas N, Kunin V, Lopez-Bigas N: Expansion of the BioCyc collection of pathway/genome databases to 160 genomes. Nucleic Acids Res 2005, 33: 6083-6089. 10.1093/nar/gki892

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  15. Li C, Donizelli M, Rodriguez N, Dharuri H, Endler L, Chelliah V, Li L, He E, Henry A, Stefan MI, Snoep JL, Hucka M, Le Novere N, Laibe C: BioModels Database: An enhanced, curated and annotated resource for published quantitative kinetic models. BMC Syst Biol 2010, 4: 92. 10.1186/1752-0509-4-92

    Article  PubMed Central  PubMed  Google Scholar 

  16. Schellenberger J, Park JO, Conrad TM, Palsson BO: BiGG: a Biochemical Genetic and Genomic knowledgebase of large scale metabolic reconstructions. BMC Bioinformatics 2010, 11: 213. 10.1186/1471-2105-11-213

    Article  PubMed Central  PubMed  Google Scholar 

  17. Hucka M, Finney A, Sauro HM, Bolouri H, Doyle JC, Kitano H, Arkin AP, Bornstein BJ, Bray D, Cornish-Bowden A, Cuellar AA, Dronov S, Gilles ED, Ginkel M, Gor V, Goryanin II, Hedley WJ, Hodgman TC, Hofmeyr JH, Hunter PJ, Juty NS, Kasberger JL, Kremling A, Kummer U, Le N, Loew LM, Lucio D, Mendes P, Minch E, Mjolsness ED, Nakayama Y, Nelson MR, Nielsen PF, Sakurada T, Schaff JC, Shapiro BE, Shimizu TS, Spence HD, Stelling J, Takahashi K, Tomita M, Wagner J, Wang J: The systems biology markup language (SBML): a medium for representation and exchange of biochemical network models. Bioinformatics 2003, 19: 524-531. 10.1093/bioinformatics/btg015

    Article  CAS  PubMed  Google Scholar 

  18. Weininger D: Smiles, A Chemical Language and Information-System. 1. Introduction to Methodology and Encoding Rules. Journal of Chemical Information and Computer Sciences 1988, 28: 31-36.

    CAS  Google Scholar 

  19. Coles SJ, Day NE, Murray-Rust P, Rzepa HS, Zhang Y: Enhancement of the chemical semantic web through the use of InChI identifiers. Org Biomol Chem 2005, 3: 1832-1834. 10.1039/b502828k

    Article  CAS  PubMed  Google Scholar 

  20. Kanehisa M, Goto S, Kawashima S, Nakaya A: The KEGG databases at GenomeNet. Nucleic Acids Res 2002, 30: 42-46. 10.1093/nar/30.1.42

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  21. Degtyarenko K, de Matos P, Ennis M, Hastings J, Zbinden M, McNaught A, Alcantara R, Darsow M, Guedj M, Ashburner M: ChEBI: a database and ontology for chemical entities of biological interest. Nucleic Acids Res 2008, 36: D344-D350. 10.1093/nar/gkm791

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  22. Goto S, Okuno Y, Hattori M, Nishioka T, Kanehisa M: LIGAND: database of chemical compounds and reactions in biological pathways. Nucleic Acids Res 2002, 30: 402-404. 10.1093/nar/30.1.402

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  23. Gosling J, Joy B, Steele G, Bracha G: The Java(TM) Language Specification. 3rd edition. Boston: Addison-Wesley Professional; 2005.

    Google Scholar 

  24. Red Hat Middleware, LLC: The Seam framework.2010. [http://www.seamframework.org/]

    Google Scholar 

  25. PostgreSQL Global Development Group: PostgreSQL.2011. [http://www.postgresql.org/]

    Google Scholar 

  26. Oracle Corporation: Oracle Database.2011. [http://www.oracle.com/us/products/database/]

    Google Scholar 

  27. JBoss Group: Hibernate Persistence Framework.2010. [http://www.hibernate.org/]

    Google Scholar 

  28. JBoss Group: JBoss Application Server.2008. [http://www.jboss.org/jbossas/]

    Google Scholar 

  29. Oracle Corporation: JSF Reference Implementation.2010. [http://java.sun.com/javaee/javaserverfaces/]

    Google Scholar 

  30. JBoss Group: RichFaces.2010. [http://www.jboss.org/jbossrichfaces/]

    Google Scholar 

  31. Booch G, Rumbaugh J, Jacobson I: The Unified Modeling Language User Guide. 2nd edition. Boston, MA, USA, Addison-Wesley Professional; 2005.

    Google Scholar 

  32. JBoss Group: Envers.2010. [http://www.jboss.org/envers]

    Google Scholar 

  33. Bornstein BJ, Keating SM, Jouraku A, Hucka M: LibSBML: an API library for SBML. Bioinformatics 2008, 24: 880-881. 10.1093/bioinformatics/btn051

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  34. Le Novere N, Finney A, Hucka M, Bhalla US, Campagne F, Collado-Vides J, Crampin EJ, Halstead M, Klipp E, Mendes P, Nielsen P, Sauro H, Shapiro B, Snoep JL, Spence HD, Wanner BL: Minimum information requested in the annotation of biochemical models (MIRIAM). Nat Biotechnol 2005, 23: 1509-1515. 10.1038/nbt1156

    Article  CAS  PubMed  Google Scholar 

  35. Maurer M, Molidor R, Sturn A, Hartler J, Hackl H, Stocker G, Prokesch A, Scheideler M, Trajanoski Z: MARS: microarray analysis, retrieval, and storage system. BMC Bioinformatics 2005, 6: 101. 10.1186/1471-2105-6-101

    Article  PubMed Central  PubMed  Google Scholar 

  36. The UniProt Consortium: The Universal Protein Resource (UniProt) in 2010. Nucleic Acids Res 2010, 38: D142-D148.

    Article  PubMed Central  Google Scholar 

  37. Becker SA, Feist AM, Mo ML, Hannum G, Palsson BO, Herrgard MJ: Quantitative prediction of cellular metabolism with constraint-based models: the COBRA Toolbox. Nat Protoc 2007, 2: 727-738. 10.1038/nprot.2007.99

    Article  CAS  PubMed  Google Scholar 

  38. Vongsangnak W, Olsen P, Hansen K, Krogsgaard S, Nielsen J: Improved annotation through genome-scale metabolic modeling of Aspergillus oryzae. BMC Genomics 2008, 9: 245. 10.1186/1471-2164-9-245

    Article  PubMed Central  PubMed  Google Scholar 

  39. Andersen MR, Nielsen ML, Nielsen J: Metabolic model integration of the bibliome, genome, metabolome and reactome of Aspergillus niger. Mol Syst Biol 2008, 4: 178. 10.1038/msb.2008.12

    Article  PubMed Central  PubMed  Google Scholar 

  40. David H, Ozcelik IS, Hofmann G, Nielsen J: Analysis of Aspergillus nidulans metabolism at the genome-scale. BMC Genomics 2008, 9: 163. 10.1186/1471-2164-9-163

    Article  PubMed Central  PubMed  Google Scholar 

  41. Forster J, Famili I, Fu P, Palsson BO, Nielsen J: Genome-scale reconstruction of the Saccharomyces cerevisiae metabolic network. Genome Res 2003, 13: 244-253. 10.1101/gr.234503

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  42. Nookaew I, Jewett MC, Meechai A, Thammarongtham C, Laoteng K, Cheevadhanarak S, Nielsen J, Bhumiratana S: The genome-scale metabolic model iIN800 of Saccharomyces cerevisiae and its validation: a scaffold to query lipid metabolism. BMC Syst Biol 2008, 2: 71. 10.1186/1752-0509-2-71

    Article  PubMed Central  PubMed  Google Scholar 

  43. Blazeck J, Alper H: Systems metabolic engineering: Genome-scale models and beyond. Biotechnol J 2010.

    Google Scholar 

  44. Risso C, Sun J, Zhuang K, Mahadevan R, DeBoy R, Ismail W, Shrivastava S, Huot H, Kothari S, Daugherty S, Bui O, Schilling CH, Lovley DR, Methe BA: Genome-scale comparison and constraint-based metabolic reconstruction of the facultative anaerobic Fe(III)-reducer Rhodoferax ferrireducens. BMC Genomics 2009, 10: 447. 10.1186/1471-2164-10-447

    Article  PubMed Central  PubMed  Google Scholar 

  45. Krause F, Uhlendorf J, Lubitz T, Schulz M, Klipp E, Liebermeister W: Annotation and merging of SBML models with semanticSBML. Bioinformatics 2010, 26: 421-422. 10.1093/bioinformatics/btp642

    Article  CAS  PubMed  Google Scholar 

  46. Hoops S, Sahle S, Gauges R, Lee C, Pahle J, Simus N, Singhal M, Xu L, Mendes P, Kummer U: COPASI--a COmplex PAthway SImulator. Bioinformatics 2006, 22: 3067-3074. 10.1093/bioinformatics/btl485

    Article  CAS  PubMed  Google Scholar 

  47. Cvijovic Marija, Roberto Olivares-Hernández, Agren Rasmus, Dahr Niklas, Vongsangnak Wanwipa, Nookaew Intawat, Kiran Raosaheb Patil, Nielsen Jens: BioMet Toolbox: genome-wide analysis of metabolism. Nucl Acids Res 2010, 38: 144-149. 10.1093/nar/gkq404

    Article  Google Scholar 

  48. Sauro HM, Hucka M, Finney A, Wellock C, Bolouri H, Doyle J, Kitano H: Next generation simulation tools: the Systems Biology Workbench and BioSPICE integration. OMICS 2003, 7: 355-372. 10.1089/153623103322637670

    Article  CAS  PubMed  Google Scholar 

  49. Karp PD, Paley SM, Krummenacker M, Latendresse M, Dale JM, Lee TJ, Kaipa P, Gilham F, Spaulding A, Popescu L, Altman T, Paulsen I, Keseler IM, Caspi R: Pathway Tools version 13.0: integrated software for pathway/genome informatics and systems biology. Brief Bioinform 2010, 11: 40-79. 10.1093/bib/bbp043

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  50. Teusink B, van Enckevort FH, Francke C, Wiersma A, Wegkamp A, Smid EJ, Siezen RJ: In silico reconstruction of the metabolic pathways of Lactobacillus plantarum: comparing predictions of nutrient requirements with those from growth experiments. Appl Environ Microbiol 2005, 71: 7253-7262. 10.1128/AEM.71.11.7253-7262.2005

    Article  PubMed Central  CAS  PubMed  Google Scholar 

Download references

Acknowledgements

This work was supported by the Austrian Ministry of Science and Research (GEN-AU project Bioinformatics Integration Network) and the Christian-Doppler Society. We thank Wanwipa Vongsangnak for valuable discussions.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Zlatko Trajanoski.

Additional information

Authors' contributions

SP designed the application and drafted the manuscript. He was responsible for the design of the database schema, the development of the logic layer, and the implementation of data presentation. RR contributed to conception, design, and implementation of the application and helped drafting the manuscript. RA was responsible for converting models into a valid SBML format and helped designing the application. JN and ZT were responsible for the overall project coordination. All authors gave final approval of the version to be published.

Electronic supplementary material

Authors’ original submitted files for images

Rights and permissions

Open Access This article is published under license to BioMed Central Ltd. This is an Open Access article is distributed under the terms of the Creative Commons Attribution License ( https://creativecommons.org/licenses/by/2.0 ), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Pabinger, S., Rader, R., Agren, R. et al. MEMOSys: Bioinformatics platform for genome-scale metabolic models. BMC Syst Biol 5, 20 (2011). https://doi.org/10.1186/1752-0509-5-20

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1752-0509-5-20

Keywords