decomposeIsotopes           package:Rdisop           R Documentation

_M_a_s_s _D_e_c_o_m_p_o_s_i_t_i_o_n _o_f _I_s_o_t_o_p_e _P_a_t_t_e_r_n_s

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

     Calculate the elementary compositions from an exact Mass or
     Isotope Pattern, obtained e.g. by FTICR or TOF mass spectrometers

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

     decomposeMass(mass, ppm=2.0, mzabs=0.0001, elements=NULL, filter=NULL, z=0)
     decomposeIsotopes(masses, intensities, ppm=2.0, mzabs=0.0001, elements=NULL, filter=NULL,  z=0)
     isotopeScore(molecule, masses, intensities, elements = NULL, filter = NULL, z = 0)

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

    mass: A single exact mass (or m/z value)

  masses: A vector of masses (or m/z values) of an isotope cluster

intensities: Abolute or relative intensities of the 'masses' peaks

     ppm: allowed deviation of hypotheses from given mass

   mzabs: absolute deviation in dalton (mzabs and ppm will be added)

       z: charge z of m/z peaks for calculation of real mass. 0 is for
          auto-detection

elements: list of allowed chemical elements, defaults to CHNOPS

  filter: NYI, will be a selection of DU, DBE and Nitrogen rules

molecule: a molecule as obtained from getMolecule() or decomposeMass /
          decomposeIsotopes

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

     Sum formulas are calculated which explain the given mass or
     isotope pattern.

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

     A list of molecules, which contain the sub-lists 

 formula: potential formulae 

    mass: exact mass of hypothesis 

   score: calculated score 

isotopes: a list of isotopes  

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

     Steffen Neumann <sneumann@IPB-Halle.DE>

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

     For a description of the underlying IMS see: WABI Paper

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

     'decomposeMass'

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

     # For Glutamate: 
     decomposeIsotopes(c(147.0529,148.0563), c(100.0,5.561173))

