pmcorrect                package:affy                R Documentation

_P_M _C_o_r_r_e_c_t_i_o_n

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

     Corrects the PM intensities in a 'ProbeSet' for nonspecific
     binding.

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

     pmcorrect.pmonly(object)

     pmcorrect.subtractmm(object)

     pmcorrect.mas(object, contrast.tau=0.03, scale.tau=10, delta=2^(-20))

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

  object: An object of class 'ProbeSet'.

contrast.tau: a number denoting the contrast tau parameter in the MAS
          5.0  pm correction algorithm.

scale.tau: a number denoting the scale tau parameter in the MAS 5.0  pm
          correction algorithm.

   delta: a number denoting the detla parameter in the MAS 5.0  pm
          correction algorithm.

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

     These are the pm correction methods perfromed by Affymetrix MAS
     4.0 (subtractmm) and MAS 5.0 (mas). See the Affymetrix Manual for
     details. pmonly does what you think: does not change the PM
     values.

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

     A 'ProbeSet' for which the 'pm' slot contains the  corrected  PM
     values.

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

     Affymetrix MAS 4.0 and 5.0 manual

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

     data(affybatch.example)
     gn <- geneNames(affybatch.example)
     pps <- probeset(affybatch.example, gn[1])[[1]]

     pps.pmonly <- pmcorrect.pmonly(pps)
     pps.subtractmm <- pmcorrect.subtractmm(pps)
     pps.mas5 <- pmcorrect.mas(pps)
     par(mfrow=c(2,2))
     #plot(pm(pps.pmonly), pm(pps.subtractmm))
     #plot(pm(pps.pmonly),pm(pps.mas5))
     #plot(pm(pps.subtractmm),pm(pps.mas5))

