getLocOrfs               package:ScISI               R Documentation

_A _f_u_n_c_t_i_o_n _t_o _o_b_t_a_i_n _O_R_F_s _f_o_r _t_h_e _S_c_I_S_I

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

     This function takes a list of bi-partite graph incidence matrices
     as well as a vector of GO nodes, and for each protein complex of
     each bi-partite graph, finds those constituent member proteins
     which are annotated to each GO node.

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

     getLocOrfs(imList, goNode, pathToSave = NULL, name = NULL)

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

  imList: A list of bi-partite graph incidence matrices

  goNode: A character vector of GO ID's

pathToSave: A character denoting where to save the resultant data

    name: The name by which the resulting R-object as well as the file
          will be named

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

     Currently, this function will take a protein complex and find
     those constituent protein members which have also been annotated
     to the user specified GO ID. For instance, the GO ID "" is the
     nucleus ID. This function will find all proteins within an
     interactome which has been annotated with the ID "". NB - if n GO
     ID is supplied, the function returns n different interactomes,
     each is has proteins uniquely annotated with each GO ID.

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

     The return value is a list of lists of lists:

     1. The top level list contains entries named by each GO ID 2. The
     second tier level contains entries after each entry of imList 3.
     The third tier level contains three entries: i.   A bi-partite
     graph incidence matrix which only has protein complexes restricted
     to the respective GO ID annotation ii.  A bi-partite graph
     incidence matrix which only has protein complexes listed in (i)
     but contains all the original proteins iii. A vector of
     proportions. We look at the column sums of (i) divided by the
     column sums fo (ii). This gives the ratio of proteins which are
     annotated by the GO ID over all other proteins in that complex    

restrictedOrfsComp: A bi-partite graph incidence matrix which only has
          protein complexes restricted to the respective GO ID
          annotation

restrictedOrfsOnly: A bi-partite graph incidence matrix which only has
          protein complexes listed in (i) but contains all the original
          proteins

   ratio: A vector of proportions. We look at the column sums of (i)
          divided by the column sums fo (ii). This gives the ratio of
          proteins which are annotated by the GO ID over all other
          proteins in that complex

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

     TC

_R_e_f_e_r_e_n_c_e_s:

     ~put references to the literature/web site here ~

