# library("BiGGR")
library(help="BiGGR")
##load reaction identifiers from package examples
file.name <- system.file("extdata",
"Glycolysis_TCA_recon1_reactionIDs.txt",
package="BiGGR")
reaction.ids <- scan(file.name, what=" ")
##load database
data("H.sapiens_Recon_1")
##build SBML model
sbml.model <- buildSBMLFromReactionIDs(reaction.ids, H.sapiens_Recon_1)
##following term is to be maximized
maximize <- "R_ATPS4m - R_NDPK1m - R_HEX1 - R_PFK - R_PGK + R_PYK"
##specify the external metabolites of the system
externals <- c("M_glc_DASH_D_e", "M_lac_DASH_L_e",
"M_ala_DASH_L_e", "M_gln_DASH_L_c", "M_h2o_e",
"M_co2_e", "M_o2_e", "M_h_e", "M_pi_c",
"M_o2s_m", "M_nh4_m", "M_adp_c",
"M_atp_c", "M_nadp_c", "M_nadph_c", "M_h_c")
##specify the values of following fluxes:
##R_GLCt1r=0.4, R_O2t=2.4, R_L_LACt2r=R_GLNtm=0
equation.vars <- c("R_GLCt1r", "R_O2t", "R_L_LACt2r", "R_GLNtm")
equation.values <- c(0.4, 2.4, 0.0, 0.0)
eqns <- list(equation.vars, equation.values)
##create LIM file
limfile.name <- tempfile()
createLIMFromSBML(sbml.model, maximize, equations=eqns,
externals=externals, file.name=limfile.name)
rates <- getRates(limfile.name)
relevant.species <- c("M_glc_DASH_D_c", "M_g6p_c", "M_f6p_c",
"M_fdp_c", "M_dhap_c", "M_g3p_c",
"M_13dpg_c", "M_3pg_c", "M_2pg_c",
"M_pep_c", "M_pyr_c")
##generate graphical representation
hd <- sbml2hyperdraw(sbml.model, rates=rates,
relevant.species=relevant.species,
layoutType="dot", plt.margins=c(20, 0, 20, 0))
##plot hypergraph
plot(hd)
Run the code above in your browser using DataLab