detectSpatialBias           package:nnNorm           R Documentation

_D_e_t_e_c_t_i_n_g _s_p_a_t_i_a_l _b_i_a_s _w_i_t_h_i_n _t_h_e _p_r_i_n_t-_t_i_p_s _o_f _a _t_w_o _c_h_a_n_n_e_l _a_r_r_a_y

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

     This function allows to identify in two channel batch of arrays,
     which are the print-tips where  spatial bias is present.

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

     detectSpatialBias(mbatch, corThreshold=0.6) 

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

  mbatch: A 'marrayRaw' or 'marrayNorm' batch of two channel arrays. 

corThreshold: The correlation treshold to be used.  

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

     This function computes two matrices: 'biasRow' and 'biasCol'. The
     elements of these  matrices represent the fraction of rows
     (columns) for which the correlation coefficient between
     log-ratios, M, and  column index (row index) is higher than a user
     specified treshold (default corThreshold=0.6). The idea here is to
     see in which print-tip a important fraction of the rows (columns)
     are highly correlated with the  column (row) index. Since some
     rows (columns) will show positive correlation while the other
     negative correlation, we  are only interested in a sigle direction
     of the correlation, i.e. either positive or negative.

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

     This function returns a list with two matrices. 'biasRow' and
     'biasCol'. The rows of these matrices correspond to the print tips
     counted metaRow wise, and the columns correspond to arrays. Values
     in these matrices superior to 33  point to print-tips that have
     more tha a third of the rows (columns) with important spatial
     bias.

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

     Tarca, A.L.

_R_e_f_e_r_e_n_c_e_s:

     A robust neural networks approach for spatial and intensity
     dependent normalization of cDNA microarray data, Adi. L. Tarca ,
     Janice. E. K. Cooke, and John Mackay, Bioinformatics, 21, 2005,
     2674 - 2683.

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

     'maNormNN'

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

     # detecting spatial bias in swirl data
     data(swirl)
     # print-tip, intensity and spatial normalization of the first slide in swirl data set
     myres<-detectSpatialBias(swirl)   

