normInteraction             package:SLGI             R Documentation

_N_o_r_m_a_l_i_z_e _a _m_a_t_r_i_x _o_f _b_i_o_l_o_g_i_c_a_l _i_n_t_e_r_a_c_t_i_o_n_s

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

     Normalize a square matrix of biological interactions according to
     the number of possible interactions between each biological
     complex.

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

     normInteraction(data, genename, interactome)

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

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

genename: 

interactome: Adjacency matrix where row are genes and columns are
          cellular organizational units. Each entry has value 0 or 1,
          for absence or presence of a gene in a complex, e.g., 'ScISI'

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

     Square matrix of biological complexes linked by one or more
     interacting proteins and normalized by the possible number of
     interactions between each complex.

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

     N. LeMeur

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

     'getInteraction'

_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)
     ## Normalize
     normIntComplex<- normInteraction(compM$bwMat, SGA, ScISIC)

