createGOMatrix             package:ScISI             R Documentation

_A _f_u_n_c_t_i_o_n _t_o _c_r_e_a_t_e _t_h_e _b_i_p_a_r_t_i_t_e _g_r_a_p_h (_B_G) _i_n_c_i_d_e_n_c_e _m_a_t_r_i_x
_f_r_o_m _t_h_e _p_r_o_t_e_i_n _c_o_m_p_l_e_x_e_s _p_a_r_s_e_d _f_r_o_m _t_h_e _G_O _D_a_t_a_b_a_s_e

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

     This function takes the output from the 'getGOInfo' function and
     creates the bipartite graph (BG) incidence matrix from the output.

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

     createGOMatrix(cMembers)

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

cMembers: A named list consisting of vectors. Each list item is named
          by a protein complex GO ID and points to a character vector
          where each character vector consists of the proteins
          composing of that protein complex.

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

     A bipartite graph matrix of the corresponding GO protein complexes
     where the rows are indexed by the protein names and the colunms by
     GO ID's.

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

     Tony Chiang

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

     cMembers = getGOInfo(wantAllComplexes = FALSE)
     createGOMatrix(cMembers)

