relNetworkM            package:maigesPack            R Documentation

_R_e_l_e_v_a_n_c_e _N_e_t_w_o_r_k _a_n_a_l_y_s_i_s

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

     Function to construct Relevance Networks comparing two distinct
     biological types.

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

     relNetworkM(data=NULL, gLabelID="GeneName", sLabelID="Classification",
                 geneGrp=NULL, path=NULL, samples=NULL,
                 type="Rpearson", ...)

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

    data: object of class 'maiges'.

gLabelID: character string giving the identification of gene label ID.

sLabelID: character string giving the identification of sample label
          ID.

 geneGrp: character string (or numeric index) specifying the gene group
          to calculate the correlation values between them. If NULL
          (together with path) all genes are used.

    path: character string (or numeric index) specifying the gene
          network to calculate the correlation values between them. If
          NULL (together with geneGrp) all genes are used.

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

    type: type of correlation to be calculated. May be 'Rpearson'
          (default), 'pearson', 'kendall' or 'spearman'.

     ...: additional parameters for functions 'robustCorr' or 'cor'.

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

     This method uses the function 'cor' to calculate the usual
     correlation values or 'robustCorr' to calculate a robust
     correlation using an idea similar to the leave-one-out. The
     correlation values are calculated for pairs of genes in the two
     groups specified by the argument 'samples', then a Fisher's Z
     transformation are done to calculate the significance for the
     difference between the two correlation values, this is implemented
     in the function 'compCorr'. This method was first used in the work
     from Gomes et al. (2005).

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

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

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

     Gomes, L.I.; Esteves, G.H.; Carvalho, A.F.; Cristo, E.B.; Hirata
     Jr., R.; Martins, W.K.; Marques, S.M.; Camargo, L.P.; Brentani,
     H.; Pelosof, A.; Zitron, C.; Sallum, R.A.; Montagnini, A.; Soares,
     F.A.; Neves, E.J. & Reis, L.F. Expression Profile of Malignant and
     Nonmalignant Lesions of Esophagus and Stomach: Differential
     Activity of Functional Modules Related to Inflammation and Lipid
     Metabolism, *Cancer Research*, 65, 7127-7136, 2005 (<URL:
     http://cancerres.aacrjournals.org/cgi/content/abstract/65/16/7127>)

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

     'cor', 'robustCorr' 'compCorr', 'maigesRelNetM',
     'plot.maigesRelNetM', 'image.maigesRelNetM'.

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

     ## Loading the dataset
     data(gastro)

     ## Constructing the relevance network for sample
     ## 'Tissue' comparing 'Neso' and 'Aeso' for the 1st gene group
     gastro.net = relNetworkM(gastro.summ, sLabelID="Tissue", 
       samples = list(Neso="Neso", Aeso="Aeso"), geneGrp=11,
       type="Rpearson")

