rmaplus               package:RefPlus               R Documentation

_D_e_r_i_v_e _R_M_A+ _i_n_t_e_n_s_i_t_i_e_s

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

     Calculate the RMA+ intensities using pre-stored reference
     quantiles and probe effects. The reference quantiles and the probe
     effects are the estimated  parameter values from RMAing a set of
     microarrays (e.g. a reference set).

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

     rmaplus(Future, rmapara, r.q, p.e, bg = TRUE)

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

  Future: An 'affybatch' object of the microarrays to be  pre-processed
          using the RMA+ methods.

 rmapara: Output of 'rma.para' function that the contain reference 
          quantiles and the reference probe effects.

     r.q: The pre-stored vector of the quantiles that the  probe
          intensity data of a microarray should be normalized to.

     p.e: A pre-stored list of probe effects. It is a probe.coefs
          object of  PLMset class in 'affyPLM' package.

      bg: A logical flag. If 'True'(by default), background correct 
          'Train' using default 'bg.correct.rma'. 

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

     The RMA+ intensities of 'Future'.

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

     Kai-Ming Chang(kaiming@gmail.com)

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

     Chang,K.M., Harbron,C., South,M.C. (2006) An Exploration of 
     Extensions to the RMA Algorithm. Available with the RefPlus
     package.

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

     'PLMset-class','rma.para', 'rmaref.predict'

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

     ## Use affybatch.example in affy package
     data(affybatch.example)

     ##Calculate RMA intensities using the rma function.
     Ex0<-exprs(rma(affybatch.example))

     ## Background correct, estimate the probe effects, and calculate the 
     ## RMA intensities using rma.para function.
     Para<-rma.para(affybatch.example,bg=TRUE,exp=TRUE)
     Ex1<-Para[[3]]
      
     ## Calculate the RMA+ intensity using rmaplus function. 
     Ex2<-rmaplus(affybatch.example, rmapara=Para, bg = TRUE)

