orderGeneIDs            package:RNAither            R Documentation

_O_r_d_e_r _a _d_a_t_a_s_e_t

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

     Orders dataset according to one of its columns.

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

     orderGeneIDs(dataset, ID1)

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

 dataset: an R data frame generated with 'generateDatasetFile' 

     ID1: a character string specifying the name of the column
          according to which the dataset will be sorted 

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

     An R data frame ('dataset') ordered according to its values in the
     specified column.

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

     'order'

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

     data(exampleHeader, package="RNAither")
     data(exampleDataset, package="RNAither")

     orderedDataset=orderGeneIDs(dataset,"SigIntensity")

