activeNet             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 _n_e_t_w_o_r_k_s

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

     This function calculate a statistic for each gene network in each
     biological condition that measure the profile of activation of the
     network in that condition. Also the function measures the
     significance of the results.

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

     activeNet(data=NULL, samples=NULL, sLabelID="Classification",
               type="Rpearson", bRep=1000, alternative = "greater",
               adjP="none")

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

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

sLabelID: character string specifying identification of sample label to
          be used. 

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

    type: character string giving the type of correlation to be
          calculated. May be 'Rpearson' (default), 'pearson',
          'kendall', 'spearman' or 'MI'.

    bRep: integer number specifying the bootstraps to be done in the
          correlation test.

alternative: character string specifying the alternative hypotheses.
          May be 'greater' (default) to test the activity of the
          networks in accordance to the to the graph or 'less' to test
          the activity of the network antagonic to the graph.

    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.

_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.maigesActNet' and 'image.maigesActNet' methods to display
     the results of this analysis.

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

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

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

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

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

     'activeNetScoreHTML', 'maigesActNet', 'plot.maigesActNet',
     'image.maigesActNet', 'mt.rawp2adjp'

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

     ## Loading the dataset
     data(gastro)

     ## Doing functional classification of gene networks for sample Label
     ## given by 'Tissue'
     gastro.net = activeNet(gastro.summ, sLabelID="Tissue")

