readCcg              package:affxparser              R Documentation

_R_e_a_d_s _a_n _A_f_f_y_m_e_t_r_i_x _C_o_m_m_a_n_d _C_o_n_s_o_l_e _G_e_n_e_r_i_c (_C_C_G) _D_a_t_a _f_i_l_e

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

     Reads an Affymetrix Command Console Generic (CCG) Data file.  The
     CCG data file format is also known as the Calvin file format.

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

     readCcg(pathname, verbose=0, .filter=NULL, ...)

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

pathname: The pathname of the CCG file.

 verbose: An 'integer' specifying the verbose level. If 0, the file is
          parsed quietly.  The higher numbers, the more details.

 .filter: A 'list'.

     ...: Not used.

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

     Note, the current implementation of this methods does not utilize
     the Affymetrix Fusion SDK library.  Instead, it is implemented in
     R from the file format definition [1].

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

     A named 'list' structure consisting of ...

_A_b_o_u_t _t_h_e _C_C_G _f_i_l_e _f_o_r_m_a_t:

     A CCG file, consists of a "file header", a "generic data header",
     and "data" section, as outlined here:

        *  File Header

        *  Generic Data Header (for the file)

           1.  Generic Data Header (for the files 1st parent)

              1.  Generic Data Header (for the files 1st parents 1st
                 parent)

              2.  Generic Data Header (for the files 1st parents 2nd
                 parent)

              3.  ...

              4.  Generic Data Header (for the files 1st parents Mth
                 parent)

           2.  Generic Data Header (for the files 2nd parent)

           3.  ...

           4.  Generic Data Header (for the files Nth parent)

        *  Data

           1.  Data Group #1

              1.  Data Set #1

                 *  Parameters

                 *  Column definitions

                 *  Matrix of data

              2.  Data Set #2

              3.  ...

              4.  Data Set #L

           2.  Data Group #2

           3.  ...

           4.  Data Group #K


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

     Henrik Bengtsson (<URL: http://www.braju.com/R/>)

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

     [1] Affymetrix Inc, Affymetrix GCOS 1.x compatible file formats,
     April, 2006. <URL: http://www.affymetrix.com/support/developer/>

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

     'readCcgHeader'(). 'readCdfUnits'().

