xcmsRaw-class              package:xcms              R Documentation

_C_l_a_s_s _x_c_m_s_R_a_w, _a _c_l_a_s_s _f_o_r _h_a_n_d_l_i_n_g _r_a_w _d_a_t_a

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

     This class handles processing and visualization of the raw data
     from a single LC/MS or GS/MS run. It includes methods for
     producing a standard suite of plots including individual spectra,
     multi-scan average spectra, TIC, and EIC. It will also produce a
     feature list of significant peaks using matched filtration.

_O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s:

     Objects can be created with the 'xcmsRaw' constructor which reads
     data from a NetCDF file into a new object.

_S_l_o_t_s:

     '_e_n_v': environment with three variables: 'mz' - concatenated m/z
          values for all scans, 'intensity' - corresponding signal
          intensity for each m/z value, and 'profile' - matrix
          represention of the intensity values with columns
          representing scans and rows representing equally spaced m/z
          values

     '_t_i_c': numeric vector with total ion count (intensity) for each
          scan

     '_s_c_a_n_t_i_m_e': numeric vector with acquisition time (in seconds) for
          each scan

     '_s_c_a_n_i_n_d_e_x': integer vector with starting positions of each scan
          in the 'mz' and 'intensity' variables (note that index values
          are based off a 0 initial position instead of 1)

     '_p_r_o_f_m_e_t_h_o_d': characer value with name of method used for
          generating the profile matrix

     '_m_z_r_a_n_g_e': numeric vector of length 2 with minimum and maximum m/z
          values represented in the profile matrix

     '_g_r_a_d_i_e_n_t': matrix with first row, 'time', containing the time
          point for interpolation and successive columns representing
          solvent fractions at each point

     '_m_s_m_s_i_n_f_o': matrix with first row, 'parent', containing parent ion
          m/z and sucessive columns representing additional information
          about fragmentation (energy, etc.)

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

     _f_i_n_d_P_e_a_k_s 'signature(object = "xcmsRaw")': feature detection using
          matched filtration in the chromatographic time domain

     _g_e_t_E_I_C 'signature(object = "xcmsRaw")': get extracted ion
          chromatograms in specified m/z ranges

     _g_e_t_P_e_a_k_s 'signature(object = "xcmsRaw")': get data for peaks in
          specified m/z and time ranges

     _g_e_t_S_c_a_n 'signature(object = "xcmsRaw")': get m/z and intensity
          values for a single mass scan

     _g_e_t_S_p_e_c 'signature(object = "xcmsRaw")': get average m/z and
          intensity values for multiple mass scans

     _i_m_a_g_e 'signature(x = "xcmsRaw")': get data for peaks in specified
          m/z and time ranges

     _p_l_o_t_C_h_r_o_m 'signature(object = "xcmsRaw")': plot a chromatogram
          from profile data

     _p_l_o_t_R_a_w 'signature(object = "xcmsRaw")': plot locations of raw
          intensity data points

     _p_l_o_t_S_c_a_n 'signature(object = "xcmsRaw")': plot a mass spectrum of
          an individual scan from the raw data

     _p_l_o_t_S_p_e_c 'signature(object = "xcmsRaw")': plot a mass spectrum
          from profile data

     _p_l_o_t_S_u_r_f 'signature(object = "xcmsRaw")': experimental method for
          plotting 3D surface of profile data with 'rgl'.

     _p_l_o_t_T_I_C 'signature(object = "xcmsRaw")': plot total ion count
          chromatogram

     _p_r_o_f_M_e_d_F_i_l_t 'signature(object = "xcmsRaw")': median filter profile
          data in time and m/z dimensions

     _p_r_o_f_M_e_t_h_o_d<- 'signature(object = "xcmsRaw")': change the method of
          generating the 'profile' matrix

     _p_r_o_f_M_e_t_h_o_d 'signature(object = "xcmsRaw")': get the method of
          generating the 'profile' matrix

     _p_r_o_f_M_z 'signature(object = "xcmsRaw")': get vector of m/z values
          for each row of the 'profile' matrix

     _p_r_o_f_R_a_n_g_e 'signature(object = "xcmsRaw")': interpret flexible ways
          of specifying subsets of the 'profile' matrix

     _p_r_o_f_S_t_e_p<- 'signature(object = "xcmsRaw")': change the m/z step
          used for generating the 'profile' matrix

     _p_r_o_f_S_t_e_p 'signature(object = "xcmsRaw")': get the m/z step used
          for generating the 'profile' matrix

     _r_e_v_M_z 'signature(object = "xcmsRaw")': reverse the order of the
          data points for each scan

     _s_o_r_t_M_z 'signature(object = "xcmsRaw")': sort the data points by
          increasing m/z for each scan

_N_o_t_e:

     No notes yet.

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

     Colin A. Smith, csmith@scripps.edu

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

     A parallel effort in metabolite profiling data sharing: <URL:
     http://metlin.scripps.edu/>

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

     'xcmsRaw'

