findReplicates           package:RNAither           R Documentation

_F_i_n_d _a_l_l _r_e_p_l_i_c_a_t_e_s _o_f _a _c_e_r_t_a_i_n _s_i_R_N_A/_g_e_n_e _i_n _a _d_a_t_a_s_e_t

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

     Returns which lines in the dataset correspond to a given
     siRNA/gene ID.

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

     findReplicates(dataset, whichCol, replicateID)

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

 dataset: an R data frame generated with 'generateDatasetFile' 

whichCol: a character string specifying the name of the column
          containing the ID, either ' Internal_GeneID' or ' GeneName' 

replicateID: the siRNA/gene ID of interest 

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

     An integer vector containing the indexes in the main dataset of
     all wells corresponding to a given siRNA/gene ID

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

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

     Indexes <- findReplicates(dataset, "GeneName", "CPSF1")

