maCompPlate              package:marray              R Documentation

_G_e_n_e_r_a_t_e _p_l_a_t_e _I_D_s

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

     This function generates plate IDs from the dimensions of the grid
     and spot matrices. Note that this function only applies to arrays
     with a regular plate layout, where the number of spots is a
     multiple of the number of wells on a plate (usually 96 or 384) and
     each well contributes  exactly one spot. It should thus be used
     with caution.

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

     maCompPlate(x, n=384)

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

       x: object of class '"marrayLayout"', '"marrayRaw"' and
          '"marrayNorm"'

       n: object of class "numeric", number of wells in each plate,
          usually 384 or 96.

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

     Having plate IDs may be useful for the purpose of normalization.
     Normalization by plate can be done using the function
     'maNormMain'.

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

     a vector of plate IDs ('factor').

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

     Yee Hwa (Jean) Yang, Sandrine Dudoit, <URL:
     http://www.stat.berkeley.edu/~sandrine>.

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

     'marrayLayout', 'marrayRaw', 'marrayNorm'

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

     L<-new("marrayLayout", maNgr=4, maNgc=4, maNsr=22, maNsc=24)
     plate<-maCompPlate(L,384)
     table(plate)
     maPlate(L)<-plate

