getSharedInteraction          package:SLGI          R Documentation

_C_a_l_c_u_l_a_t_e _t_h_e _n_u_m_b_e_r _o_f _s_h_a_r_e_d _s_y_n_t_h_e_t_i_c _g_e_n_e_t_i_c _i_n_t_e_r_a_c_t_i_o_n_s
_b_e_t_w_e_e_n _p_a_i_r_s _o_f _g_e_n_e_s.

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

     The number of common synthetic genetic interacting partners
     between two genes.

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

     getSharedInteraction(iMat, mode="query")

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

    iMat: Adjacency matrix reporting genetic Interactions. Each entry
          has value 0 or 1, representing positive or negative
          interaction of corresponding pairs of row and column,
          respectively.

    mode: Character vector of value "query" or "target"

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

     A numeric vector of the number of common genetic interactions
     between a pair of query or target genes.

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

     N. LeMeur

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

     'congruence'

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

     intM <- matrix(c(0,1,0,0,1,1,1,0,1,0,0,1,1,0,1,0),
                     nrow=4, ncol=4, 
                     dimnames=list(c("p1","p2","p3","p4"),
                       c("p1","p3","p5","p7")))

     sharedInt <- getSharedInteraction(intM)

