modelSLGI                package:SLGI                R Documentation

_P_e_r_m_u_t_a_t_i_o_n _m_o_d_e_l _f_o_r _a_s_s_e_s_s_i_n_g _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 _i_n
_c_e_l_l_u_l_a_r _o_r_g_a_n_i_z_a_t_i_o_n_a_l _u_n_i_t_s.

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

     Permutation model for assessing synthetic genetic interactions
     within and between cellular organizational units such as
     multi-protein complexes.

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

     modelSLGI(iMat, universe, interactome,  type="intM", perm=50)

_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.

universe: character vector of the names of the tested genes, e.g.,
          names of the genes on the synthetic genetic array (SGA) used
          by Tong et al.

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.

    type: Character vector of value "intM" (Default) or "interactome"
          to either perform the test based on to the genetic
          interaction matrix or the interactome, respectively.

    perm: Number of permutations to apply. Default is 50.

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

     Interaction matrix between cellular organizational units.

_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(ScISIC)
      data(Atong)
      data(SGA)
      model <-  modelSLGI(Atong, universe= SGA, interactome=ScISIC,
     type="intM", perm=2)
      

