readCdfHeader           package:affxparser           R Documentation

_R_e_a_d_s _t_h_e _h_e_a_d_e_r _a_s_s_o_c_i_a_t_e_d _w_i_t_h _a_n _A_f_f_y_m_e_t_r_i_x _C_D_F _f_i_l_e

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

     Reads the header of an Affymetrix CDF file using the Fusion SDK.

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

      readCdfHeader(filename)

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

filename: name of the CDF file.

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

     A named list with the following components: 

    rows: the number of rows on the chip.

    cols: the number of columns on the chip.

probesets: the number of probesets on the chip.

qcprobesets: the number of QC probesets on the chip.

reference: the reference sequence (this component only exists for
          resequencing chips).

chiptype: the type of the chip.

filename: the name of the cdf file.

     normal-bracket23bracket-normal

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

     James Bullard, bullard@stat.berkeley.edu and  Kasper Daniel
     Hansen, khansen@stat.berkeley.edu

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

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

     'affxparserInfo' for general information about the package and
     'readCdfUnits()' for information about CDF files.

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

     for (zzz in 0) {

     # Find any CDF file
     cdfFile <- findCdf()
     if (is.null(cdfFile))
       break

     header <- readCdfHeader(cdfFile)
     print(header)

     } # for (zzz in 0)

