groupCorr-methods           package:CAMERA           R Documentation

_E_I_C _c_o_r_r_e_l_a_t_i_o_n _g_r_o_u_p_i_n_g _o_f _L_C/_E_S_I-_M_S _d_a_t_a

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

     Grouping the peaks after the correlation of the EICs into
     pseudospectragroups for a xsAnnotate object. Return a xsAnnotate
     object with group information.

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

      groupCorr(object,cor_eic_th=0.75)

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

  object: the 'xsAnnotate' object

cor_eic_th: correlation threshold for the EIC correlation

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

     The algorithm correlates the EIC of a every peak with all others,
     to find the peaks that belong to one substance. LC/MS data should
     grouped with groupFWHM first. This step reduce the runtime a lot
     and increased the number of correct classifications.

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

     Carsten Kuhl <ckuhl@ipb-halle.de>

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

      library(CAMERA)
      file <- system.file('mzdata/MM14.mzdata', package = "CAMERA")
      xs   <- xcmsSet(c(file), method="centWave", ppm=30, peakwidth=c(5,10))
      an   <- xsAnnotate(xs)
      an   <- groupFWHM(an)
      an   <- groupCorr(an)

