activeMod             package:maigesPack             R Documentation

_F_u_n_c_t_i_o_n_a_l _c_l_a_s_s_i_f_i_c_a_t_i_o_n _o_f _g_e_n_e _g_r_o_u_p_s

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

     This function calculate profiles of expression for groups of genes
     in each sample of the dataset and for each biological condition
     (group of samples).

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

     activeMod(data=NULL, gNameID="GeneName", samples=NULL, usePaths=FALSE,
               sLabelID="Classification", adjP="none", cutExp=1,
               cutPhiper=0.05)

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

    data: object of class 'maiges' to be used to functionally classify
          gene groups stored in 'GeneGrps' slot.

 gNameID: character string specifying identification of gene label to
          be used. 

sLabelID: idem to the previous argument for identification of sample
          label.

 samples: a list with character vectors specifying the groups that must
          be compared.

usePaths: logical specifying if the pathways given in 'Paths' slot must
          also be used, defaults to FALSE.

  cutExp: real number specifying the cutoff for expression levels (to
          discretise the expression)

    adjP: character string giving the type of p-value adjustment. May
          be 'Bonferroni', 'Holm', 'Hochberg', 'SidakSS', 'SidakSD',
          'BH', 'BY' or 'none'. Defaults to 'none'. See function
          'mt.rawp2adjp' in package multtest for more details.

cutPhiper: p-value cutoff to select significant gene groups.

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

     If the argument 'samples' is NULL, all types defined by the sample
     label given by 'sLabelID' are used. It is possible to use the
     'plot.maigesActMod' and 'image.maigesActMod' to display the
     results of this analysis. This function is based in the method
     proposed by Segal et al. (2004).

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

     The result of this function is an object of class 'maigesActMod'.

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

     Gustavo H. Esteves <gesteves@vision.ime.usp.br>

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

     Segal, E.; Friedman, N.; Koller, D. and Regev, A. A module map
     showing conditional activity of expression modules in cancer.
     *Nature Genetics*, 36, 1090-1098, 2004. (<URL:
     http://www.nature.com/ng/journal/v36/n10/abs/ng1434.html>)

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

     'activeModScoreHTML', 'maigesActMod', 'plot.maigesActMod',
     'image.maigesActMod', 'mt.rawp2adjp'

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

     ## Loading a little dataset
     data(gastro)

     ## Doing functional classification of gene groups for 'Tissue' sample label
     gastro.mod = activeMod(gastro.summ, sLabelID="Tissue", cutExp=1,
       cutPhiper=0.05)

     ## Doing functional classification of gene groups together with the
     ## networks given by Paths slot for 'Tissue' sample label. Also we are
     ## using a cuttoff for p-value of hipergeometric test as 0.1
     gastro.mod = activeMod(gastro.summ, sLabelID="Tissue", cutExp=1,
       cutPhiper=0.1, usePaths=TRUE)

