rawCELName-methods            package:xps            R Documentation

_M_e_t_h_o_d _f_o_r _g_e_t_t_i_n_g _n_a_m_e_s _o_f _t_h_e _r_a_w _C_E_L-_f_i_l_e_s

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

     Method for getting names (and full path) of the original
     CEL-files.

     _Usage_

     'rawCELName(object, treename = "*", fullpath = TRUE)'

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

  object: object of class 'DataTreeSet'.

treename: treename, for which the name of the original CEL-file should
          be returned.

fullpath: logical, if TRUE return full path.

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

     Since CEL-files can be imported with 'import.data' using
     alternative 'celnames', method 'rawCELName' allows to return the
     original name and optionally the full path for each CEL-file.

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

     A character vector.

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

     Christian Stratowa

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

     'import.data'

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

     ## load existing ROOT scheme file and ROOT data file
     scheme.test3 <- root.scheme(paste(.path.package("xps"),"schemes/SchemeTest3.root",sep="/"))
     data.test3 <- root.data(scheme.test3, paste(.path.package("xps"),"rootdata/DataTest3_cel.root",sep="/"))

     rawCELName(data.test3)
     rawCELName(data.test3, treename = "TestA2.cel", fullpath = FALSE)

