createMipsDataFrame          package:ScISI          R Documentation

_A _f_u_n_c_t_i_o_n _t_h_a_t _c_r_e_a_t_e_s _a _d_a_t_a _f_r_a_m_e _f_r_o_m _t_h_e _M_I_P_S _D_a_t_a

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

     This function takes two parameters: (1) a named vector that has a
     description of the MIPS protein complexes (this vector is one of
     the two outputs from 'getMipsInfo' referenced by DESC); (2) the
     matrix representation of the bipartite graph. The output of the
     function is a dataframe with three columns: the names of the
     complexes in the matrix; the ID of the corresponding complex; the
     description of the corresponding complex.

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

     createMipsDataFrame(desc, mips)

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

    desc: A named character vector (where the name is the MIPS ID for
          each protein complex obtained by 'getMipsInfo') whose entries
          describe the corrsponding protein complex.

    mips: The matrix representation of the protein complex membership
          graph for the MIPS protein complexes

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

     The return value is a data frame with three coluumns: the names
     column records the names of the protein complexes as indexed in
     the incidence matrix; the ID column records the MIPS ID that
     corresponds to each protein complex; the Desc column describes
     each of the protein complexes.

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

     Tony Chiang

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

     mips.gsf.de

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

     mips = getMipsInfo(wantAllComplexes=FALSE)
     mipsM = createMipsMatrix(mips)
     mipsDF = createMipsDF(mips$DESC, mipsM)

