write.fit package:limma R Documentation _W_r_i_t_e _M_A_r_r_a_y_L_M _O_b_j_e_c_t _t_o _a _F_i_l_e _D_e_s_c_r_i_p_t_i_o_n: Write a microarray linear model fit to a file. _U_s_a_g_e: write.fit(fit, results=NULL, file, digits=3, adjust="none", method="separate", F.adjust="none", sep="\t", ...) _A_r_g_u_m_e_n_t_s: fit: object of class 'MArrayLM' containing the results of a linear model fit results: object of class 'TestResults' file: character string giving name of file digits: integer indicating precision to be used adjust: character string specifying multiple-testing adjustment method for the t-statistic P-values, e.g., '"BH"'. See 'p.adjust' for the available options. If 'NULL' or '"none"' then the P-values are not adjusted. method: character string, should the P-value adjustment be '"global"' or '"separate"' for each contrast. F.adjust: character string specifying adjustment method for the F-statistic P-values. sep: the field separator string. Values in the output file will be separated by this string. ...: other arguments are passed to 'write.table' _D_e_t_a_i_l_s: This function writes a tab-delimited text file containing for each gene (1) the average log-intensity, (2) the log-ratios, (3) moderated t-statistics, (4) t-statistic P-values, (5) F-statistic if available, (6) F-statistic P-values if available, (7) classification if available and (8) gene names and annotation. _V_a_l_u_e: No value is produced but a file is written to the current working directory. _A_u_t_h_o_r(_s): Gordon Smyth _S_e_e _A_l_s_o: 'write' in the base library. An overview of linear model functions in limma is given by 06.LinearModels.