checkTargetInfo package:marray R Documentation _V_e_r_i_f_y_i_n_g _t_h_e _o_r_d_e_r _b_e_t_w_e_e_n _i_n_t_e_n_s_i_t_i_e_s _m_a_t_r_i_x _a_n_d _t_a_r_g_e_t _f_i_l_e _i_n_f_o_r_m_a_t_i_o_n _D_e_s_c_r_i_p_t_i_o_n: Check that the foreground and backgruond intensities are stored in the same order as provided in the first column of target file. _U_s_a_g_e: checkTargetInfo(mraw) _A_r_g_u_m_e_n_t_s: mraw: Object of class 'marrayRaw' or 'marryNorm'. _V_a_l_u_e: A logical value. This function returns "TRUE" if the first column from the Target information is the same order as the foreground and backgruond intensities. _A_u_t_h_o_r(_s): Yee Hwa (Jean) Yang _E_x_a_m_p_l_e_s: datadir <- system.file("swirldata", package="marray") swirl.targets <- read.marrayInfo(file.path(datadir, "SwirlSample.txt")) data(swirl) swirl@maTargets <- swirl.targets checkTargetInfo(swirl) checkTargetInfo(swirl[, 2:4]) ## reorder swirl@maTargets <- swirl.targets[c(2:4, 1),] checkTargetInfo(swirl)