==.SBML                package:SBMLR                R Documentation

_C_h_e_c_k _t_h_e _e_q_u_a_l_i_t_y _o_f _t_h_e _s_p_e_c_i_e_s _a_n_d _r_e_a_c_t_i_o_n_s _o_f _t_w_o _S_B_M_L _m_o_d_e_l_s

_D_e_s_c_r_i_p_t_i_o_n:

     This function tests the equivalence of two models with respect to
     the species and reaction data frames generated by summary.

_U_s_a_g_e:

     "==.SBML"(model1, model2, ...)

_A_r_g_u_m_e_n_t_s:

  model1: The first of the two model objects of class SBML which are to
          be compared.

  model2: The second model object.

     ...: For compatibility with '==' of the base package.

_V_a_l_u_e:

     A list containing the following two boolean dataframes  

 species: The equality of species information tabularized  as a data
          frame.

reactions: The equality of reaction information tabularized as a
          dataframe.

_A_u_t_h_o_r(_s):

     Tomas Radivoyevitch  (radivot@hal.cwru.edu)

_S_e_e _A_l_s_o:

     'summary.SBML'

_E_x_a_m_p_l_e_s:

     library(SBMLR)  
     curto1=readSBMLR(file.path(system.file(package="SBMLR"), "models/curto.r"))  
     curto2=readSBML(file.path(system.file(package="SBMLR"), "models/curto.xml"))  
     curto1==curto2

