readImaGeneHeader package:limma R Documentation _R_e_a_d _I_m_a_G_e_n_e _H_e_a_d_e_r _I_n_f_o_r_m_a_t_i_o_n _D_e_s_c_r_i_p_t_i_o_n: Read the header information from an ImaGene image analysis output file. This function is used internally by 'read.maimages' and is not usually called directly by users. _U_s_a_g_e: readImaGeneHeader(file) _A_r_g_u_m_e_n_t_s: file: character string giving file name or path _D_e_t_a_i_l_s: The raw data files exported by the image analysis software ImaGene include a number of header lines which contain information about the printing and scanning processes. This function extracts that information and locates the line where the intensity data begins. _V_a_l_u_e: A list containing information read from the header of the ImaGene file. Each Begin-End environment found in the file header will become a recursive list in the output object, with components corresponding to fields in the file. See the ImaGene documentation for further information. The output object will also contain a component 'NHeaderRecords'giving the number of lines in the file before the intensity data begins. _A_u_t_h_o_r(_s): Gordon Smyth _R_e_f_e_r_e_n_c_e_s: _S_e_e _A_l_s_o: 'read.imagene' An overview of LIMMA functions to read data is given in 03.ReadingData. _E_x_a_m_p_l_e_s: ## Not run: h <- readImaGeneHeader("myImaGenefile.txt") names(h) h$NHeaderRecords h[["Field Dimensions"]] ## End(Not run)