processArrayDataObject      package:arrayMagic      R Documentation

_A_u_t_o_m_a_t_e_d _p_r_o_c_e_s_s_i_n_g _a_n_d _n_o_r_m_a_l_i_s_a_t_i_o_n _o_f _a_n _a_r_r_a_y_D_a_t_a-_o_b_j_e_c_t
(_p_a_r_t _o_f _f_u_n_c_t_i_o_n _p_r_o_c_e_s_s_A_r_r_a_y_D_a_t_a)

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

     Automated processing and normalisation of an 'arrayData'-object.
     The function is called by 'processArrayData'.

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

     processArrayDataObject(arrayDataObject, spotIdentifier = "Name", verbose = TRUE, normalisationMethod = "vsn", subtractBackground=FALSE, spotsRemovedBeforeNormalisation = NULL, spotsRemovedAfterNormalisation = NULL, subGroups = NULL, channelsSeparately = FALSE, hybridisationGroups = NULL)

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

arrayDataObject: object of class 'arrayData-class'; required; default
          missing 

spotIdentifier: character string; required; default "Name".
          'spotIdentifier' specifies the column in the image analysis
          result files which contain spot or gene identifiers.

 verbose: logical; required; default: 'TRUE' 

normalisationMethod: character string; required; default: "vsn"; cf.
          argument 'method' of 'normalise' 

subtractBackground: logical; required; default: 'FALSE' cf. 'normalise' 

spotsRemovedBeforeNormalisation: vector of character strings; required;
          default 'NULL'. All spots which match the string(s) will be
          excluded   already before normalisation and will not be
          present in the resulting objects at all. 

spotsRemovedAfterNormalisation: vector of character strings; required;
          default: 'NULL'; cf. argument
          'spotsRemovedBeforeNormalisation' 

subGroups: character string or 'NULL'; required; cf. 'normalise';
          default: 'NULL' 

channelsSeparately: logical; required; cf. 'normalise'; default:
          'FALSE'

hybridisationGroups: list of numeric vectors; cf. 'normalise';
          required; default: 'NULL'

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

     A list of objects, i.e.  an "exprSetRGObject" and 
     "arrayDataObject" with corresponding class types
     'exprSetRG-class', 'arrayData-class'.

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

     Andreas Buness <a.buness@dkfz.de>

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

     'processArrayData', 'normalise', 'exprSetRG-class',
     'arrayData-class'

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

            LOADPATH <- file.path(.path.package("arrayMagic"), "extdata")
             SLIDEDESCRIPTIONFILE <- "slideDescription"

            slideDescription <- readpDataSlides(
                                  loadPath=LOADPATH, 
                                  slideDescriptionFile=SLIDEDESCRIPTIONFILE
                                )
             arrayDataObject <- readIntensities(
                                  loadPath=LOADPATH,
                                  slideDescription=slideDescription
                               )

            resultList <- processArrayDataObject( arrayDataObject=arrayDataObject )
              
      

