RefPlus-package           package:RefPlus           R Documentation

_R_M_A _b_a_s_e_d _o_n _r_e_f_e_r_e_n_c_e _m_i_c_r_o_a_r_r_a_y_s: _R_M_A+ _a_n_d _R_M_A++ _m_e_t_h_o_d_s

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

     RMA+ is an extenstion of the RMA algorithm that calculates the
     probeset  intensities of a microarray using a pre-stored RMA model
     fitted on previously  obtained microarrays, e.g. reference
     microarrays. RMA++ is a further extension  based on the RMA+
     method. This package depends on the affyPLM package.

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


       Package:  RefPlus
       Type:     Package
       Version:  1.2.0
       Date:     2006-10-25
       License:  GPL version 2 or newer

     Use 'rma.para' to obtain the reference quantiles and the probe
     effects from a reference set, then use 'rmaplus' to calculate the
     RMA+ intensities based  on the fitted reference quantiles and
     probe effects.

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

     By Kai-Ming Chang(Kai-Ming.Chang@astrazeneca.com,
     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. (Submitted)

_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)

