readClf              package:affxparser              R Documentation

_P_a_r_s_i_n_g _a _C_L_F _f_i_l_e _u_s_i_n_g _A_f_f_y_m_e_t_r_i_x _F_u_s_i_o_n _S_D_K

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

     This function parses a CLF file using the Affymetrix Fusion SDK.
     CLF (chip layout) files contain information associating probe ids
     with chip x- and y- coordinates.

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

     readClf(file)

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

    file: 'character(1)' providing a path to the CLF file to be input.

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

     An list. The 'header' element is always present. 

  header: A list with information about the CLF file. The list contains
          elements described in the CLF file format document referenced
          below.

    dims: A length-two integer vector of chip x- and y-coordinates.

      id: An integer vector of length 'prod(dims)' containing probe
          identifiers.

       x: An integer vector of length 'prod(dims)' containing
          x-coordinates corresponding to the entries in 'id'.

       y: An integer vector of length 'prod(dims)' containing
          y-coordinates corresponding to the entries in 'id'.

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

     Martin Morgan <URL: mtmorgan@fhcrc.org>

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

     <URL:
     https://www.affymetrix.com/support/developer/fusion/File_Format_CLF_aptv161.pdf>
     describes CLF file content.

