getEAWP                package:limma                R Documentation

_E_x_t_r_a_c_t _B_a_s_i_c _D_a_t_a _f_r_o_m _M_i_c_r_o_a_r_r_a_y _D_a_t_a _O_b_j_e_c_t_s

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

     Given a microarray data object of any known class, get the
     expression values, weights, probe annotation and A-values, which
     are needed for linear modelling. This function is called by the
     linear modelling functions in LIMMA.

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

     getEAWP(object)

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

  object: a microarray data object. An object of class 'list',
          'MAList', 'marrayNorm', 'PLMset', 'vsn', or any class
          inheriting from 'ExpressionSet', or any object that can be
          coerced to a numeric matrix.

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

     In the case of two-color objects, the 'Amean' is computed from the
     matrix of A-values. For single-channel objects, 'Amean' is
     computed from the matrix of expression vales. 'PLMset', 'vsn' and
     'ExpressionSet' are assumed to be single-channel for this purpose.

     If 'object' is a matrix, it is assumed to contain log-intensities
     if the values are all positive and log-ratios otherwise. 'Amean'
     is computed in the former case but not the latter.

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

     A list with components 

   exprs: numeric matrix of log-ratios or log-intensities

 weights: numeric matrix of weights

  probes: data.frame of probe-annotation

   Amean: numeric vector of average log-expression for each probe

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

     Gordon Smyth

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

     02.Classes gives an overview of data classes used in LIMMA.

