readpDataSlides          package:arrayMagic          R Documentation

_R_e_a_d_s _t_h_e _d_e_s_c_r_i_p_t_i_o_n _o_f _a_l_l _s_l_i_d_e_s _o_r _c_h_a_n_n_e_l_s

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

     The function reads the 'slideDescriptionFile', which contains all
     information row-wise for each slide/microarray or for each channel
     in a tab-deliminated text file. The file is read up to the first
     line containing solely "white space".

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

     readpDataSlides(slideDescriptionFile = "slideDescription.txt", loadPath = ".", deleteBlanks = TRUE, verbose = TRUE)

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

slideDescriptionFile: character string; required; default
          "slideDescription.txt". The first line of the file must
          contain all column names, in particular the column named
          "fileName" which contains image analyis result file names and
          possibly additionally a column which contains the slide
          names; cf. the arguments 'fileNameColumn' and
          'slideNameColumn' of 'readIntensities'. Note: Column names
          must not contain underlines or spaces. 

loadPath: character string; required; default: ".". The path is used to
          load the 'slideDescriptionFile'; note: "." refers to the
          working directory. 

deleteBlanks: logical; required; default: 'TRUE'. Any blank character
          is removed from the text body of the 'slideDescriptionFile'.
          Thus no item/name should contain spaces. 

 verbose: logical; required; default: 'TRUE' 

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

     'data.frame'

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

     Andreas Buness <a.buness@dkfz.de>

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

     'readIntensities', 'processArrayData'

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

            LOADPATH <- file.path(.path.package("arrayMagic"), "extdata")
             SLIDEDESCRIPTIONFILE <- "slideDescription"
       
             resultObject <- readpDataSlides(
                                  loadPath=LOADPATH, 
                                  slideDescriptionFile=SLIDEDESCRIPTIONFILE
                       )
      

