getInfoInFile           package:makecdfenv           R Documentation

_g_e_t _i_n_f_o_r_m_a_t_i_o_n _f_r_o_m _A_f_f_y_m_e_t_r_i_x _d_a_t_a _f_i_l_e_s

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

     Get specific information stored in Affymetrix data files (CEL or
     CDF).

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

     getInfoInFile(filename, type, unit, property, compress = NULL)

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

filename: a file name 

    type: '"CEL"' or '"CDF"' are the only known types.

    unit: the 'unit' to find the information

property: the 'property' of interest

compress: a boolean

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

     The data files seem to have a structure of 'units'. A 'unit' start
     with something between square brackets (ex: "[UNIT1]"). The
     parameter 'unit' let one specify in which unit the information of
     interest is located. The 'properties' are constituted of an
     identifier, the sign '=' and the value for the property (ex:
     "numCells=12000").

     If you are planning to use this function, I assume you know the
     what is in CEL and CDF files in details and that you know what are
     doing.

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

     a character with the value of the 'property'.

_N_o_t_e:

     The code goes through the file until the rigth 'unit' is found.
     Then it looks for the right 'property' further down (eventually
     going through the next units if the property is not found).

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

     'read.celfile', 'read.cdffile', 'whatcdf'

