readGPR             package:arrayQuality             R Documentation

_R_e_a_d_i_n_g _G_e_n_e_P_i_x _g_p_r _f_i_l_e

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

     This component reads a GenePix file (.gpr) and returns columns
     used for quality control.

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

     readGPR(fnames = NULL, path= ".", DEBUG=FALSE, skip = 0, sep ="\t",
     quote="\"", controlId="ID",...)

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

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

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

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

    skip: Number of lines to skip in the gpr files.

     sep: A "character" string defining the type of separation for the
          columns in the gpr files.

   quote: A "character" string defining the type of quote in the gpr
          files.

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

     ...: additional arguments.

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

     A list of vectors containing information extracted from the
     GenePix file

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

     Agnes Paquet

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

     'slideQuality', 'gpQuality', 'globalQuality'

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

     datadir <- system.file("gprQCData", package="arrayQuality")
     if (interactive())
     gprData <- readGPR(fnames="9Mm137.gpr", path=datadir)

