Cdf-class             package:makecdfenv             R Documentation

_C_l_a_s_s _C_d_f

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

     A class describing the content a Chip Description File.

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

     The class 'Cdf' was designed to store the content of Affymetrix's
     Chip Definition Files (CDF). This early class is no longer widely
     used in the package affy. Environments (called 'cdfenvs') are
     preferred to have an efficient mapping between probe set
     identifiers and indexes (needed to access/subset particular probe
     intensities). Unless one needs to access every information
     contained in a CDF file, the 'cdfenvs' will be preferred.

     The following comments are only relevant to someone with interest
     in what is in a CDF file. The name associated to each probe is not
     unique, it corresponds to the gene name. It is very common to have
     a name repeated 40 times (20 perfect matches and 20 mismatches).
     Probes can be grouped by pairs: a perfect match (PM) probe has its
     mismatch (MM) counterpart. The two probes in a pair differ by one
     base (usually located in the middle of the sequence). The
     information relative to this particular base are stored in 'pbase'
     and 'tbase'. At a given position (x,y), having pbase[x,y] ==
     tbase[x,y] means having a MM while having pbase[x,y] != tbase[x,y]
     means having a perfect mismatch if and only if one of the bases is
     A while the other is TRUE, or one is G and the other is C. The
     function  'pmormm' returns 'TRUE' for PMs and 'FALSE' for MMs.

     To know more about the file structure of a CDF file, one has to
     refer to the parsing code (mostly in C).

_C_r_e_a_t_i_n_g _O_b_j_e_c_t_s:

     '  new('Cdf','
      '    cdfName      = ...., # Object of class character'
      '    name         = ...., # Object of class matrix'
      '    name.levels  = ...., # Object of class character'
      '    pbase        = ...., # Object of class matrix'
      '    pbase.levels = ...., # Object of class character'
      '    tbase        = ...., # Object of class matrix'
      '    tbase.levels = ...., # Object of class character'
      '    atom         = ...., # Object of class matrix'
      '  )'

_S_l_o_t_s:


     '_c_d_f_N_a_m_e': the CDF name tag. Used to link with the right CEL files

     '_n_a_m_e': Object of class "matrix" of 'factors' for the gene names
          corresponding to the probes.

     '_n_a_m_e._l_e_v_e_l_s': Object of class "character" containing the levels
          corresponding to 'name'. 

     '_p_b_a_s_e': Object of class "matrix" of pbase levels.

     '_p_b_a_s_e._l_e_v_e_l_s': Object of class "character"  containing the levels
          corresponding to 'pbase'. 

     '_t_b_a_s_e': Object of class "matrix" of tbase levels.

     '_t_b_a_s_e._l_e_v_e_l_s': Object of class "character" containing the levels
          corresponding to 'tbase'.  

     '_a_t_o_m': Object of class "matrix" of atom or probe numbers.

_M_e_t_h_o_d_s:


     _a_t_o_m (Cdf): An accesor function for the 'ato,' slot. 

     _a_t_o_m<- (Cdf):  A replacement function for 'atom' slot. 

     _n_a_m_e._l_e_v_e_l_s (Cdf):  An accesor function for the 'name.levels'
          slot. 

     _n_a_m_e._l_e_v_e_l_s<- (Cdf): A replacement function for 'name.levels'
          slot. 

     _p_b_a_s_e (Cdf):  An accesor function for the 'pbase' slot. 

     _p_b_a_s_e<- (Cdf): A replacement function for 'pbase' slot. 

     _p_b_a_s_e._l_e_v_e_l_s (Cdf):  An accesor function for the 'pbase.levels'
          slot. 

     _p_b_a_s_e._l_e_v_e_l_s<- (Cdf): A replacement function for 'pbase.levels'
          slot. 

     _s_h_o_w (Cdf):  renders information about the 'Cdf' object in a
          concise way on stdout. 

     _t_b_a_s_e (Cdf):  An accesor function for the 'tbase' slot. 

     _t_b_a_s_e<- (Cdf): A replacement function for 'tbase' slot. 

     _t_b_a_s_e._l_e_v_e_l_s (Cdf):  An accesor function for the 'tbase.levels'
          slot. 

     _t_b_a_s_e._l_e_v_e_l_s<- (Cdf): A replacement function for 'tbase.levels'
          slot. 

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

     L. Gautier <laurent@cbs.dtu.dk>

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

     'read.cdffile', 'make.cdf.env', 'make.cdf.package'

