createMaigesRaw          package:maigesPack          R Documentation

_F_u_n_c_t_i_o_n _t_o _c_r_e_a_t_e _o_b_j_e_c_t_s _o_f _c_l_a_s_s _m_a_i_g_e_s_R_a_w

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

     Function to create objects of class 'maigesRaw' from objects of
     class 'maigesPreRaw'.

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

     createMaigesRaw(PreRaw, greenDataField, greenBackDataField, redDataField,
                     redBackDataField, flagDataField, gLabelGrp, gLabelPath)

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

  PreRaw: object of class 'maigesPreRaw' to be used to generate another
          object of class 'maigesRaw'.

greenDataField: character string specifying the name of the 'Data' slot
          from 'PreRaw' that will be used to read the spot intensity
          values for green channel.

greenBackDataField: character string specifying the name of the 'Data'
          slot from 'PreRaw' that will be used to read the background
          intensity values for green channel.

redDataField: character string specifying the name of the 'Data' slot
          from 'PreRaw' that will be used to read the spot intensity
          values for red channel.

redBackDataField: character string specifying the name of the 'Data'
          slot from 'PreRaw' that will be used to read the background
          intensity values for red channel.

flagDataField: character string specifying the name of the 'Data' slot
          from 'PreRaw' that will be used to read the flag values.

gLabelGrp: character string with the gene label to match gene groups.

gLabelPath: character string with the gene label to match gene
          networks.

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

     The result of this function is an object of class 'maigesRaw'.

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

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

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

     'loadData', 'maigesPreRaw',

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

     ## Load a little dataset
     data(gastro)

     ## See the object
     gastro

     ## Transform gastro into a maigesRaw object
     gastro.raw = createMaigesRaw(gastro, greenDataField="Ch1.Mean",
       greenBackDataField="Ch1.B.Mean", redDataField="Ch2.Mean",
       redBackDataField="Ch2.B.Mean", flagDataField="Flags",
       gLabelGrp="GeneName", gLabelPath="GeneName")

