preprocess              package:affyPLM              R Documentation

_B_a_c_k_g_r_o_u_n_d _c_o_r_r_e_c_t _a_n_d _N_o_r_m_a_l_i_z_e

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

     This function pre-processes an 'AffyBatch'.

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

     preprocess(object,subset=NULL, normalize=TRUE,background=TRUE,background.method="RMA.2",normalize.method="quantile",background.param = list(),normalize.param=list(),verbosity.level=0)

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

  object: an 'AffyBatch'

  subset: a vector with the names of probesets to be used. If NULL then
          all probesets are used.

normalize: logical value. If 'TRUE' normalize data using quantile
          normalization

background: logical value. If 'TRUE' background correct using RMA
          background correction

background.method: name of background method to use.

normalize.method: name of normalization method to use.

background.param: list of parameters for background correction methods

normalize.param: list of parameters for normalization methods

verbosity.level: An integer specifying how much to print out. Higher
          values indicate more verbose. A value of 0 will print nothing

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

     This function carries out background correction and normalization
     pre-processing steps. It does not summarize to produce gene
     expression measures. All the same pre-processing methods supplied
     by 'threestep' are supported by this function.

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

     An 'AffyBatch'

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

     Ben Bolstad bmb@bmbolstad.com

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

     Bolstad, BM (2004) _Low Level Analysis of High-density
     Oligonucleotide Array Data: Background, Normalization and
     Summarization_. PhD Dissertation. University of California,
     Berkeley.

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

     'expresso', 'rma'

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

     data(affybatch.example)

     # should be equivalent to the bg and norm of rma()
     abatch.preprocessed <- preprocess(affybatch.example)

