maigesPreRaw-class        package:maigesPack        R Documentation

_m_a_i_g_e_s_P_r_e_R_a_w _c_l_a_s_s, _s_t_o_r_e _p_r_e _r_a_w _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 data values and information
     about genes and samples used in the data. Here, it is possible to
     put any field from data tables that you want.

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

     This class of objects is intended to define an intermediate step
     between the external world (data tables, gene groups, gene
     networks, etc) and real raw objects given by the class
     'maigesRaw'. In this intermediate step the user can do any type of
     exploratory analysis and set bad spots (at slot 'BadSpots'), or to
     do any type of calculation they judge important in the fields of
     'Data' slot.

     This class of objects is created by a call from 'loadData'. The
     functions 'addGeneGrps' and 'addPaths' may also be used to add
     information for gene groups and gene networks. After the
     exploratory analysis it must be converted in an object of class
     'maigesRaw' using the function 'createMaigesRaw'.

     If you have the package _Rgraphviz_ installed and working it is
     possible to display the graphs stored in the slot 'Paths' using
     the command 'plot'.

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


     '_D_a_t_a': contains a list with matrices. Each matrix has 'nrow' =
          number of spots and 'ncol' = number of data tables (or chips)
          with the numerical values of each data field specified by the
          user in the configuration file used as parameter for
          'loadData' function.

     '_G_e_n_e_G_r_p_s': a list containing character vectors. These vectors
          specify genes from the gene groups that must be studied. Each
          vector is used as a gene group. The names of the groups are
          catch from the names of the vectors from the list, that is
          catch from file names.

     '_P_a_t_h_s': list containing 'graphNEL' objects specifying gene
          regulatory networks (or pathways). As in the previous slot,
          the names are catch from file names and stored as names of
          the elements from the list.

     '_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.

     '_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.

     '_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:


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

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

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

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

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

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

     'loadData', 'addGeneGrps', 'addPaths', 'createMaigesRaw'.

