maiges-class           package:maigesPack           R Documentation

_m_a_i_g_e_s _c_l_a_s_s, _s_t_o_r_e _n_o_r_m_a_l_i_s_e_d _m_i_c_r_o_a_r_r_a_y _d_a_t_a_s_e_t_s

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

     This class describes objects to handle ratio of intensities (_W_)
     and average of intensities (_A_) values values and information
     about genes and samples used in the data. Objects of this class
     are created from class 'maigesRaw' using the functions 'normLoc',
     'normOLIN', 'normRepLoess', 'normScaleLimma' and/or
     'normScaleMarray' to do the normalisation.

     Here, the _M=log(R/G)_ value of intensity ratio was redefined as
     _W=log(Test/Ref)_, where _Test_ and _Ref_ are the test and
     reference samples.

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

     This defines the main class of objects defined in this package. It
     is created from 'maigesRaw' class using the normalisation
     functions 'normLoc', 'normOLIN', 'normRepLoess', 'normScaleLimma'
     and 'normScaleMarray'. From this class of objects it is possible
     to do any type of analysis defined by several functions in this
     package. Also, it is possible to summarise spots (or samples)
     information using the function 'summarizeReplicates'.

_S_l_o_t_s:


     '_W': numeric matrix containing the ratio values (in log2 scale)
          between the test and reference sample intensities (W values).
          Spots are indexed by rows and samples by columns.

     '_A': numeric matrix containing the mean intensity values between
          test and reference samples (also in log2 scale).  Spots
          corresponding to rows and samples (or chips) corresponding to
          columns, too.

     '_S_D': numeric matrix containing the standard deviation of W values
          when the lowess step is repeated several times.

     '_I_C_1': numeric matrix containing the left margin of confidence
          interval defined by repeated lowess during the normalisation
          step.

     '_I_C_2': numeric matrix containing the right margin of confidence
          interval defined above.

     '_B_a_d_S_p_o_t_s': logical vector specifying spots that was judged as bad
          ones. By default this slot is created as a vector of FALSEs
          with same length as number of spots.

     '_U_s_e_S_p_o_t_s': logical matrix indexing the spots to be used for
          normalisation.

     '_G_e_n_e_G_r_p_s': a logical matrix with rows representing the spots and
          columns representing different gene groups. Each column give
          the index of spots in that gene group.

     '_P_a_t_h_s': list containing 'graphNEL' objects specifying gene
          regulatory networks (or pathways). The first object in this
          list is a char string giving the gene label used to match the
          genes.

     '_L_a_y_o_u_t': a list containing the number of rows ('gridR') and
          columns ('gridC') of grids, the number of rows ('spotR') and
          columns ('spotC') of spots inside each grid and the total
          number of spots.

     '_G_l_a_b_e_l_s': data frame giving the gene labels. These labels are
          generally used during the data analysis.

     '_S_l_a_b_e_l_s': data frame giving the sample labels. These labels are
          generally used during the data analysis.

     '_N_o_t_e_s': char string that receives any comment about the dataset.
          The dataset description is stored in this slot.

     '_D_a_t_e': char string giving the date and hour that the object was
          created.

     '_V._i_n_f_o': list containg three characters. The first one is a
          string containing the R version used when the object was
          created. The second is a char vector with base packages and
          the last one is another char vector with additional packages
          and version numbers.

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


     [ 'signature(x = 'maiges')': subsetting operator for spots on the
          array or arrays in the batch, ensures that all slots are
          subset properly.

     _b_o_x_p_l_o_t 'signature(x = 'maiges')': boxplot method for 'maiges'
          class. Display boxplots of the slides and print tip groups
          using package _marray_ or boxplots of one gene previously
          defined.

     _d_i_m 'signature(x = 'maiges', value = 'numeric')': get the
          dimensions of the object, numeric vector of length two.

     _i_m_a_g_e 'signature(x = 'maiges')': image method for 'maiges' class.
          Display colour representation of the slides using package
          _marray_.

     _p_l_o_t 'signature(x = 'maiges')': plot method for 'maiges' class.
          Display 'MA' plots.

     _p_r_i_n_t 'signature(x = 'maiges')': print method for 'maiges' class.

     _s_h_o_w 'signature(x = 'maiges')': show method for 'maiges' class.

     _s_u_m_m_a_r_y 'signature(x = 'maiges')': summary method for 'maiges'
          class.

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

     Gustavo H. Esteves <gesteves@vision.ime.usp.br>

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

     'normLoc', 'normOLIN', 'normRepLoess', 'normScaleLimma',
     'normScaleMarray' and 'summarizeReplicates'.

