affy-options              package:affy              R Documentation

_O_p_t_i_o_n_s _f_o_r _t_h_e _a_f_f_y _p_a_c_k_a_g_e

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

     Description of the options for the affy package.

_N_o_t_e:

     The affy package options are contained in the Bioconductor
     options. The options are:

        *  'use.widgets': a logical used to decide on the default of
           widget use.

        *  'compress.cel': a logical

        *  'compress.cdf': a logical

        *  'probes.loc': a list. Each element of the list is it self a
           list with two elements _what_ and _where_. When looking for
           the informations about the locations of the probes on the
           array, the elements in the list will be looked at one after
           the other. The first one for which _what_ and _where_ lead
           to the matching locations information is used. The element
           _what_ can be one of _package_, _environment_ or _file_. The
           element _where_ depends on the corresponding element _what_.

           *  if _package_: location for the package (like it would be
              for the argument 'lib.loc' for the function 'library'.)

           *  if _environment_: an 'environment' to look for the
              information (like the argument 'env' for the function
              'get').

           *  if _file_: a 'character' with the path in which a CDF
              file can be found.


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

     ## get the options
     opt <- getOption("BioC")
     affy.opt <- opt$affy

     ## list their names
     names(affy.opt)

     ## set the option compress.cel
     affy.opt$compress.cel <- TRUE
     options(BioC=opt)

