writeTab               package:cellHTS               R Documentation

_W_r_i_t_e _t_h_e _d_a_t_a _f_r_o_m _a _c_e_l_l_H_T_S _o_b_j_e_c_t _t_o _a _t_a_b-_d_e_l_i_m_i_t_e_d _f_i_l_e

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

     Write the data from a 'cellHTS' object to a tab-delimited file.

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

     writeTab(x, ...)
     ## S3 method for class 'cellHTS':
     writeTab(x, file=paste(x$name, "txt", sep="."), ...)

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

       x: a cellHTS object.

    file: the name of the output file.

     ...: ignored.

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

     This function is a wrapper for function 'write.table' to write the
     data from a 'cellHTS' object to a tab-delimited file.

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

     The name of the file that was written.

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

     Wolfgang Huber huber@ebi.ac.uk, Ligia Braz ligia@ebi.ac.uk

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

         data(KcViabSmall)     
         writeTab(KcViabSmall, file=tempfile())

