Description Usage Arguments Value Examples
Get fluxes balance from an observed growth rate
1 2 3 4  | get_fba_fluxes_from_observations(model, observed_growth_rate,
  metabolites_rates = NULL,
  biomass_flux_index = get_biomass_flux_position(model),
  backward_fluxes = "_b", forward_fluxes = "_f")
 | 
model | 
 a genome-scale metabolic model of class modelorg  | 
observed_growth_rate | 
 a numerical value for the observed growth rate  | 
metabolites_rates | 
 Optional, a data.frame consisting of the name of the metabolites, their concentrations and rates in mmol/gDW/h to adjust the model uptake rates. The column name must be "name", "concentrations","rates"  | 
biomass_flux_index | 
 Optional. Index of the biomass flux as returned by
  | 
backward_fluxes | 
 Optional, only relevant for irreversible model  | 
forward_fluxes | 
 Optional, only relevant for irreversible model  | 
Return fluxes values compatible with the observed growth rate through flux balance analysis
1 2 3 4 5 6  | data("iMM904")
metabolites_rates<-data.frame(name=c("D-Glucose","Glycerol"),
                         concentrations=c(16,0),rates=c(-2.81,-8.01))
FluxesFromObs<-get_fba_fluxes_from_observations(iMM904,0.205,
metabolites_rates = metabolites_rates)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.