complexName             package:RpsiXML             R Documentation

_A_c_c_e_s_s_o_r _f_u_n_c_t_i_o_n_s _f_o_r _c_o_m_p_l_e_x

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

     These functions are used to extract useful information of complex
     in the form of 'psimi25Complex-class' object.

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

     complexName(x)
     complexMembers(x)
     complexAttributes(x)

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

       x: An object of 'psimi25Complex-class' 

_D_e_t_a_i_l_s:

     See examples

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

complexName: Returns the name of the complex in characters

complexMembers: A data frame of protein members building the complex
          and their information

complexAttributes: A named vector of character strings, the names are
          the attribute names while the values are attributes
          documented in the PSI-MI 2.5 file

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

     Jitao David Zhang <j.zhang@dkfz.de>, Tony Chiang
     <tchiang@ebi.ac.uk>

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

     'psimi25Complex-class'

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

     xmlDir <- system.file("/extdata/psi25files",package="RpsiXML")

     intactComplexxml <- file.path(xmlDir,"intact_complexSample.xml")
     intactComplexSet <- parsePsimi25Complex(intactComplexxml, INTACT.PSIMI25)
     complexSample <- complexes(intactComplexSet)[[2]]

     complexName(complexSample)
     complexAttributes(complexSample)
     complexMembers(complexSample)

