writeTab              package:cellHTS2              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:

     ## S4 method for signature 'cellHTS':
     writeTab(x, file=paste(name(x), "txt", sep="."))

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

       x: a 'cellHTS' object.

    file: the name of the output file.

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

     This function is a wrapper for function 'write.table' to write the
     contents of 'assayData' slot of a 'cellHTS' object to a
     tab-delimited file. If the object is already annotated, the probe
     information ('fData(object)@GeneID') is also added.

_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 P. Bras ligia@ebi.ac.uk

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

     'cellHTS'

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

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

