sumStats                package:ScISI                R Documentation

_A _f_u_n_c_t_i_o_n _t_o _c_a_l_c_u_l_a_t_e _s_o_m_e _s_u_m_m_a_r_y _s_t_a_t_i_s_t_i_c_s _b_e_t_w_e_e_n _a_n _t_w_o
_i_n_t_e_r_a_c_t_o_m_e_s

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

     This function takes in a named list of in silico interactomes (by
     its incidence matrix representation of the bi-partite graph). The
     function compares each interactome pairwise (with itself as well
     as with each other interactome) and generates some summary
     statistics: e.g. the number of redundant protein complexes, the
     number of protein sub-complexes one interactome may posses with
     respect to some other interactome (possibly itself), etc.

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

     sumStats(imList, pathToSave = NULL)

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

  imList: A named list of in silic interactomes (incidence matrix)

pathToSave: A character vector of a path location to where the summary
          statistics will be saved

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

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

redundantM: A symmetric matrix with the row and column names named by
          the interactome names. The shows the number of redundancies
          (i.e. the number of repeated protein complexes) within two
          interactomes

    subM: A matrix with the row and column names named by the
          interactome names. Each entry details how many protein
          sub-complexes are found within the interactome indexed by the
          row with respect to the interactome indexed by the column

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

     TC

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

     #gavin <- getAPMSData("Gavin")
     #krogan <- getAPMSData("Krogan")
     #imList <- vector("list", length=2)
     #imList[[1]] <- gavin
     #imList[[2]] <- krogan
     #names(imList) <- c("Gavin", "Krogan")

     #sumStats(imList)

