globalQuality          package:arrayQuality          R Documentation

_Q_u_a_l_i_t_y _m_e_a_s_u_r_e_s _f_o_r _g_e_n_e_r_a_l _h_y_b_r_i_d_i_z_a_t_i_o_n.

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

     This function provides Quality Control measures for GenePix, Spot
     and Agilent format files. It is used to create a table of measures
     to be used as reference in gpQuality, spotQuality or agQuality.

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

     globalQuality(fnames = NULL, path = ".", organism = c("Mm", "Hs"),
     output = FALSE, resdir = ".", DEBUG = FALSE, inputsource = "readGPR", controlId="ID",...)

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

  fnames: A "character" string naming the input files.

    path: a "character" string representing the data directory.  By
          default this is set to the current working directory (".").

organism: A "character" string naming the organism genome printed on
          the array, either "Mm" or "Hs". By default, organism is set
          to "Mm". It is used to retrieve the corresponding reference
          tables.

  output: Logical. If 'TRUE', the quality measures are printed to a
          file. 

  resdir: A "character" string representing the directory where the
          results will be saved. By default, this is set to the current
          working directory ("."). 

   DEBUG: If 'TRUE', debug statements are printed.

inputsource: A "character" string providing the name of the function to
          use to read the input files. It should be inputsource =
          "readGPR" for GenePix format files, inputsource = "readSpot"
          for Spot files, or inputsource = "readAgilent" for Agilent
          format. By default, 'inputsource' is set to "readGPR".

controlId: Character string. Name of the column of the gpr file used to
          define controls.

     ...: additional arguments

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

     A matrix of Quality Control measures, each column representing a
     different input slide.

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

     Agnes Paquet

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

     'gpQuality', 'slideQuality', 'MmReferenceDB', 'readGPR',
     'readSpot', 'readAgilent'

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

     datadir <- system.file("gprQCData", package="arrayQuality")
     if (interactive())
     reference <- globalQuality(fnames="9Mm137.gpr", path=datadir, organism="Mm")

