findPeaks-methods            package:xcms            R Documentation

_F_e_a_t_u_r_e _d_e_t_e_c_t_i_o_n _f_o_r _G_C/_M_S _a_n_d _L_C/_M_S _D_a_t_a - _m_e_t_h_o_d_s

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

     A number of peak pickers exist in XCMS. 'findPeaks' is the generic
     method.

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

  object: 'xcmsRaw-class' object

  method: Method to use for peak detection. See details.

     ...: Optional arguments to be passed along

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

     Different algorithms can be used by specifying them with the
     'method' argument. For example to use the matched filter approach
     described by Smith et al (2006) one would use: 'findPeaks(object,
     method="matchedFilter")'.

     Further arguments given by '...' are passed through to the
     function implementing the 'method'. 

     A character vector of _nicknames_ for the  algorithms available is
     returned by  'getOption("BioC")$xcms$findPeaks.methods'. If the
     nickname of a method is called "centWave", the help page for that
     specific method can be accessed with '?findPeaks.centWave'.

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

     A matrix with columns: 

      mz: weighted (by intensity) mean of peak m/z across scans 

   mzmin: m/z of minimum step 

   mzmax: m/z of maximum step 

      rt: retention time of peak midpoint 

   rtmin: leading edge of peak retention time 

   rtmax: trailing edge of peak retention time 

    into: integrated area of original (raw) peak 

    maxo: maximum intensity of original (raw) peak 


     and additional columns depending on the choosen method.

_M_e_t_h_o_d_s:


     _o_b_j_e_c_t = "_x_c_m_s_R_a_w" ' findPeaks(object, ...) '


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

     'findPeaks.matchedFilter' 'findPeaks.centWave' 'xcmsRaw-class'

