normalizeData             package:CALIB             R Documentation

_N_o_r_m_a_l_i_z_a_t_i_o_n: _e_s_t_i_m_a_t_i_o_n _o_f _a_b_s_o_l_u_t_e _e_x_p_r_e_s_s_i_o_n _l_e_v_e_l_s

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

     estimates absolute expression levels for each combination of a
     gene  and a tested biological condition.

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

     normalizeData(RG, parameter, array = array, condition = condition, dye = dye,
                   cloneid = cloneid, idcol = idcol)

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

      RG: an 'RGList_CALIB' object

parameter: a 'ParameterList' object

   array: integer vector specifying the index of the arrays.  Has
          length equal to two times of the number of arrays. 

condition: integer vector specifying the index of the conditions.  Has
          length equal to two times of the number of arrays. 

     dye: integer vector specifying the index of the dyes. Has length 
          equal to two times of the number of arrays. 

 cloneid: string vector specifying the clone ids of the clones to  be
          normalized. If missing, normalize all the clones.

   idcol: string specifying the column name of clone ids in the  genes
          field of RG. 

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

     This function estimates absolute expression levels for each
     combination of  a gene and a tested biological condition from the
     measured intensity.  It accepts measured intensities from 'RG'.

     The argument 'parameter' is an object of 'ParameterList'. The
     function accepts  model parameters from this argument.

     By using this function, for each combination of a gene and a
     tested biological condition, a single absolute expression level fo
     target is estimated. Therefore, specifying the design of
     experiment is necessary. Namely, the design of array,  condition
     and dye is needed. The three arguments 'array','condition'  and
     'dye' are three numeric vector to indicate the design of array, 
     condition and dye respectively. How to specify these three
     arguments refer to  the example below.

     The function is able to not only estimate all the genes on the
     slides but also estimate any gene on the slides seperately. The
     argument 'cloneid' accepts the clone ids of which the genes are
     interested by the user. If 'cloneid' argument is missing, the
     function will estimate all the genes on the slides.In order to 
     match clone id in the RG, column name which indicates clone ids in
     RG$genes should be specified by argument 'idcol'.

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

     a numeric matix containing the absolute expression levels. Columns
     indicate different conditions and rows indicate different genes.

_W_a_r_n_i_n_g:

     The function doesn't allow missing clone id. So please check
     before run the function.

_N_o_t_e:

     The main calculation part in this function is done by c++ code.

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

     Hui Zhao

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

     Engelen, K., Naudts, B., DeMoor, B., Marchal, K. (2006)  A
     calibration method for estimating absolute expression levels from 
     microarray data. Bioinformatics  22: 1251-1258.

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

     # load data: RG and parameter
     data(RG)
     data(parameter)

     # define design matrix: two arrays, two condition and color-flip design
     array <- c(1,1,2,2)
     condition <- c(1,2,2,1)
     dye <- c(1,2,1,2)

     # specify clone-id column
     idcol <- "CLONE_ID"

     #data <- normalizeData(RG,parameter,array=array,condition=condition,dye=dye,idcol=idcol)

     ## only normalize a group of genes
     cloneid_interested <- c("250001", "250002", "250003", "250004", "250005")
     data <- normalizeData(RG,parameter,array=array,condition=condition,dye=dye,cloneid=cloneid_interested,idcol=idcol)

