topInteraction             package:SLGI             R Documentation

_E_x_t_r_a_c_t _i_n_t_e_r_a_c_t_i_n_g _b_i_o_l_o_g_i_c_a_l _c_o_m_p_l_e_x_e_s

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

     Extract the top X interacting biological complexes.

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

     topInteraction(data,top=10)

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

    data: Square matrix of biological complexes that shares one or more
          genes(proteins)

     top: Interger that represents the percentage of interacting
          complexe

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

     Data frame of biological complexes that interact. The first two
     columns are the cellular organizational units names and the third
     column indicates the number of interactions.

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

     N. LeMeur

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

     data(Atong)
     data(ScISIC)
     data(SGA)
     SLa2 <- gi2Interactome(Atong, ScISIC)
     ## Search for synthetic lethal interaction
     compM <- getInteraction(SLa2, SGA, ScISIC)
     top10Interaction<- topInteraction(compM$bwMat,top=10)

