Learn R Programming

minval : an R package for MINimal VALidation of stoichiometric reactions

The genome-scale metabolic reconstructions, a compilation of all stoichiometric reactions that can describe the entire cellular metabolism of an organism, have become an indispensable tool for our understanding of biological phenomena, covering fields that range from systems biology to bioengineering. Evaluation of metabolic reconstructions are generally carried through Flux Balance Analysis, an optimization method where the biological sense of optimal solution is sensitive to thermodynamic unbalance, caused by the presence of stoichiometric reactions whose compounds are not produced or consumed in any other reaction (orphan metabolites) and by mass unbalanced stoichiometric reactions. The MINVAL package was designed as a tool to identify orphan metabolites and evaluate the mass and charge balance of stoichiometric reactions. MINVAL package also includes functions to characterize and write models in TSV and SBML formats, extract all reactants, products, metabolite names and compartments from a metabolic reconstruction.

Install:

This package required R version 2.10 or higher. If you are using an older version of R you will be prompted to upgrade when you try to install the package.

The official release of MINVAL is available on CRAN. To install from CRAN, use the following command:

install.packages("minval", dependencies = TRUE)

If you have devtools installed, install the latest stable version this package directly from GitHub:

# Install 'minval' package
devtools::install_github("gibbslab/minval")
library("minval")

Available functions:

FunctionDescription
characterizeReactionsCharacterize stoichiometric reactions by compartments and reaction type
checkBalanceEvaluate the mass or charge balance for a set of stoichiometric reactions
compartmentsExtract the compartments associated to metabolites of a set of stoichiometric reactions
downloadChEBIDownload the ChEBI database
metabolitesIdentify the list of metabolites for a set of stoichiometric reactions
orphanMetabolitesIdentify the orphan metabolites of a set of stoichiometric reactions
productsIdentify the products of a stoichometric reaction
reactantsIdentify the reactants of a stoichometric reaction
stoichiometricMatrixBuild the stoichiometric matrix for a set of stoichiometric reactions
validateSyntaxEvaluate if a stoichiometric reaction has a valid syntax
writeSBMLmodWrite a model in SBML format
writeTSVmodWrite a model in TSV format for the 'sybil' R package

Citation

Daniel Osorio, Janneth Gonzalez and Andres Pinzon (2016). minval: MINimal VALidation for Stoichiometric Reactions. R package version 0.8. https://CRAN.R-project.org/package=minval

Copy Link

Version

Install

install.packages('minval')

Monthly Downloads

127

Version

0.8-2

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

May 9th, 2022

Functions in minval (0.8-2)

compartments

Extract the compartments associated to metabolites of a set of stoichiometric reactions.
checkBalance

Evaluate the mass or charge balance for a set of stoichiometric reactions
characterizeReactions

Characterize stoichiometric reactions by compartments and reaction type
validateSyntax

Evaluate if a stoichiometric reaction has a valid syntax
orphanMetabolites

Identify the orphan metabolites of a set of stoichiometric reactions
products

Identify the products of a stoichometric reaction
stoichiometricMatrix

Build the stoichiometric matrix for a set of stoichiometric reactions
metabolites

Identify the list of metabolites for a set of stoichiometric reactions
downloadChEBI

Download the ChEBI database
writeSBMLmod

Write a model in SBML format
reactants

Identify the reactants of a stoichometric reaction
writeTSVmod

Write a model in TSV format for the 'sybil' R package