RGList_CALIB-class           package:CALIB           R Documentation

_R_e_d, _G_r_e_e_n _I_n_t_e_n_s_i_t_y _L_i_s_t - _C_l_a_s_s

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

     A simple list-based class for storing red and green channel
     foreground and  background intensities for a batch of spotted
     microarrays. It is a extension of  the RGList in the LIMMA
     package.

_O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s:

     Objects can be created by calls of the form 'new("RGList_CALIB",
     RG)', where RG is a list. In the CALIB package, RGList_CALIB
     objects are normally generated by 'read.rg'.

_L_i_s_t _C_o_m_p_o_n_e_n_t_s:

     objects should contain the following list components:

     '_R': numeric matrix containing the red(Cy5) foreground
          intensities. Rows correspond to spots and columns to arrays.

     '_G': numeric matrix containing the green(Cy3) foreground
          intensities.

     '_R_b': numeric matrix containing the red(Cy5) background
          intensities.

     '_G_b': numeric matrix containing the green(Cy3) background
          intensities.

     '_R_A_r_e_a': numeric matrix containing the red(Cy5) spot areas.

     '_G_A_r_e_a': numeric matrix containing the green(Cy3) spot areas.

     Optional components include:

     '_w_e_i_g_h_t_s': numeric matrix containing relative spot quality
          weights. Should be non-negative.

     '_p_r_i_n_t_e_r': list containing information on the process used to
          print the spots on the arrays. See 'read.rg'.

     '_g_e_n_e_s': data.frame containing information on the genes spotted on
          the arrays. Should include a character column Name containing
          names for the genes or controls.

     '_t_a_r_g_e_t_s': data.frame containing information on the target RNA
          samples. Should include factor or character columns Cy3 and
          Cy5 specifying which RNA was hybridized to each array.

     '_o_t_h_e_r': list containing numeric matrices of other spot-specific
          information.

     All of the matrices should have the same dimensions. The row
     dimension of targets should match the column dimension of the
     matrices.

_E_x_t_e_n_d_s:

     Class '"list"', from data part. Class '"LargeDataObject"',
     directly. Class '"vector"', by class '"list"'.

_M_e_t_h_o_d_s:

     This class inherits directly from class List so any operation
     appropriate for lists will work on objects of this class. In
     addition, RGList_CALIB objects can be 'subsetted', 'combined' and
     'merged'. RGList_CALIB objects will return dimensions and hence
     functions such as 'dim', 'dimnames', 'nrow' and 'ncol' are
     defined. RGList_CALIB also inherit a 'show' method from the
     virtual class 'LagerDataObject', which means that RGList_CALIB
     objects will print in a compact way.

     In the CALIB package, RGList_CALIB objects are mainly for storing
     microarray data and they are used to pass microarray data into
     functions such as 'estimateParameter' or 'normalizeData'.

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

     Hui Zhao

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

     'RGList' in the limma package

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

     'RGList' and 'LargeDataObject' in limma packge.

