getSpacing               package:limma               R Documentation

_G_e_t _N_u_m_e_r_i_c_a_l _S_p_a_c_i_n_g

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

     Convert character to numerical spacing measure for within-array
     replicate spots.

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

     getSpacing(spacing, layout)

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

 spacing: character string or integer. Acceptable character strings are
          '"columns"', '"rows"', '"subarrays"' or '"topbottom"'.
          Integer values are simply passed through.

  layout: list containing printer layout information

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

     '"rows"' means that duplicate spots are printed side-by-side by
     rows. These will be recorded in consecutive rows in the data
     object.

     '"columns"' means that duplicate spots are printed side-by-sidy by
     columns. These will be separated in the data object by
     'layout$nspot.r' rows.

     '"subarrays"' means that a number of sub-arrays, with identical
     probes in the same arrangement, are printed on each array. The
     spacing therefore will be the size of a sub-array.

     '"topbottom"' is the same as '"subarrays"' when there are two
     sub-arrays.

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

     Integer giving spacing between replicate spots in the gene list.

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

     Gordon Smyth

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

     An overview of LIMMA functions for reading data is given in
     03.ReadingData.

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

     getSpacing("columns",list(ngrid.r=2,ngrid.c=2,nspot.r=20,nspot.c=19))
     getSpacing("rows",list(ngrid.r=2,ngrid.c=2,nspot.r=20,nspot.c=19))
     getSpacing("topbottom",list(ngrid.r=2,ngrid.c=2,nspot.r=20,nspot.c=19))

