R/convenience_wrappers.R
find_fluxes_df.Rd
Given a metabolic model as a data frame, return a new data frame with fluxes
find_fluxes_df(reaction_table, do_minimization = FALSE)
reaction_table | a data frame representing the metabolic model |
---|---|
do_minimization | toggle to uniformly minimize all non-objective fluxes after finding the objective |
The input data frame with a new numeric column, "flux
".
This function uses ROI, so to solve models, you will need a solver plugin for ROI. Probably the easiest one to install is ROI.plugin.glpk.
To install this in Linux, run sudo apt-get install libglpk-dev
in a terminal, and then run install.packages('ROI.plugin.glpk')
in R.
find_fluxes_vector