bpMatrix              package:ppiStats              R Documentation

_T_h_i_s _f_u_n_c_t_i_o_n _g_e_n_e_r_a_t_e_s _t_h_e _B_a_i_t-_P_r_e_y _M_a_t_r_i_x _f_o_r _a_n
_p_r_o_t_e_i_n-_p_r_o_t_e_i_n _i_n_t_e_r_a_c_t_i_o_n (_p_p_i) _e_x_p_e_r_i_m_e_n_t

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

     This function takes in experimental ppi data and generates the
     bait to prey adjacency matrix.

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

     bpMatrix(y2h, symMat = TRUE, homodimer = FALSE, baitAsPrey = FALSE, 
                   unWeighted=TRUE, onlyRecip=FALSE, baitsOnly=FALSE)

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

     y2h: A named list of character vectors.  The names of the list
          correspond to the baits used in the experimental technology.
          The  entries of the character vectors are those  proteins
          found as prey or a character(0) if  the bait did not find any
          prey.

  symMat: A logical, if TRUE, the matrix will be square with all the
          proteins documented in the experiment indexing both the row
          and column; if FALSE, only the baits index the rows, preys
          the columns.

homodimer: A logical. If TRUE, the matrix will record the presence of
          homodimers; if FALSE, all homodimers data will be deleted.

baitAsPrey: A logical; if TRUE, the columns will be indexed by both the
          bait and prey population while the rows will remain indexed
          by the baits exclusively.

unWeighted: A logical. If TRUE, the entries of the adjacency will be 
          binary (0,1) which records the presence of interactions or
          not. If FALSE, the entries of the matrix will be a natrual
          number to record the  multiplicity of the interaction found
          by the experiment.

onlyRecip: A logical. If TRUE, the adjacency matrix will be restricted 
          to only those interactions which are symmetric.

baitsOnly: A logical. If TRUE, the matrix will be indexed by the baits
          for both the rows and columns. If baitsOnly is TRUE, then
          baitsAsPrey must also be TRUE and symMat must be FALSE

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

     It is important to note that the weight of each directed edge is
     recorded by the number of instances bait b finds prey p.

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

     An adjacency matrix with weighting. The rows are indexed by those
     proteins sampled as baits (if symMat is true, only those rows with
     non-trivial row sums were sampled as baits) and the colunms are
     indexed by proteins detected as baits (et cetera).

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

     T Chiang

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

     library(ppiData)
     data(y2hSysGW)
     eg <- y2hSysGW[2:4]
     lapply(eg, bpMatrix)

