readCel2eSet           package:tilingArray           R Documentation

_R_e_a_d _c_e_l_f_i_l_e_s _i_n_t_o _a_n _E_x_p_r_e_s_s_i_o_n_S_e_t _o_b_j_e_c_t.

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

     This is a wrapper for 'ReadAffy' that returns an 'ExpressionSet'
     object rather than an AffyBatch. This is particularly usefiles for
     arrays for which we have or need no CDF environment.

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

     readCel2eSet(filename, adf, path=".", rotated=FALSE, ...)

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

filename: Character vector with CEL file names. Either 'filename' or
          'adf' need to be specified, but not both.

     adf: Object of class 'AnnotatedDataFrame'.

    path: Character scalar with path to CEL files.

 rotated: Logical scalar, see details.

     ...: Further arguments that are passed on to
          'new("ExpressionSet")'.

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

     The 'rotate' options allows to deal with different versions of the
     scanner software. Older versions rotated the image by 90 degrees,
     newer ones do not. Use the default 'rotated=FALSE' for CEL files
     produced by the newer version.

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

     'ExpressionSet' object.

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

     W. Huber

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

     ## To test the rotation, look at the scatterplot between two DNA hybes
     ## that were measured with scanner software that rotated (041120) and did
     ## not rotate (060125)
     ##
     ## cp /ebi/research/huber/Projects/tilingArray/Celfiles/041120_S96genDNA_re-hybe.cel.gz ~/p/tmp
     ## cp /ebi/research/huber/Projects/allelicTranscription/celfiles_allelictrans/060125_S96_genomicDNA.zip ~/p/tmp
     ## cd ~/p/tmp
     ## gunzip 041120_S96genDNA_re-hybe.cel.gz
     ## unzip 060125_S96_genomicDNA.zip
     ##
     ## Not run: 
     library("affy")
     library("geneplotter")
     options(error=recover)

     e1 = readCel2eSet("041120_S96genDNA_re-hybe.cel", rotated=TRUE)
     e2 = readCel2eSet("060125_S96_genomicDNA.CEL")

     smoothScatter(log(exprs(e1)), log(exprs(e2)), nrpoints=0)
     ## End(Not run)

