psi25interaction           package:Rintact           R Documentation

_p_a_r_s_e_r _f_o_r _P_S_I-_M_I _2._5 _X_M_L _d_o_c_u_m_e_n_t_s _f_r_o_m _E_B_I _i_n_t_a_c_t

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

     The PSI-MI 2.5 XML format is used by EBI IntAct database to record
     protein-protein interaction data and protein complex data. 
     'psi25interaction' is the parser for interaction data and
     'psi25complex' is the parser for complex data.

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

     psi25interaction(intactFile)
     psi25complex(intactFile)

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

intactFile: character, file name or URL of the XML document

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

     'psi25interaction' returns a list of 'interactionEntry'  objects,
     each represents one 'entry' in the XML document. 'psi25complex'
     returns an 'complexEntry' object, which represents the data from
     one XML document.

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

     Nianhua Li

_R_e_f_e_r_e_n_c_e_s:

     The IntAct Database <URL:
     http://www.ebi.ac.uk/intact/site/contents/downloads.jsf>.

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

     'interactionEntry-class', 'complexEntry-class'

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

     # parse complex data
     fn <- system.file("PSI25XML/complexSample.xml", package="Rintact")
     complexData <- psi25complex(fn)
     complexData

     # parse interaction data
     fn <- system.file("PSI25XML/interactionSample.xml", package="Rintact")
     interactionData <- psi25interaction(fn)
     interactionData

