plotMA               package:codelink               R Documentation

_M_A _p_l_o_t

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

     Takes a Codelink object and plot M vs A.

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

       plotMA(object, array1 = 1, array2 = NULL, cutoff = c(-1, 1), label = NULL,
         type = NULL, high.list = NULL, high.col = "blue", high.pch = 21,
             high.bg = "cyan",       snr = NULL, snr.cutoff = 1, legend.x = NULL, pch = ".", 
             subset = NULL, title = NULL, xlim = NULL, ylim = NULL)

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

  object: an object of class "Codelink" or "MAarrayLM".

  array1: first array to be used.

  array2: second array to be used.

  cutoff: cutoff to be used as fold change markeer.

   label: type of labeling used in legend.

    type: spot type information.

high.list: list of genes highlighted.

high.col: color used for high genes.

high.pch: pch used for high genes.

 high.bg: background color used for high genes.

     snr: vector with SNR values, usually, taking rowMeans() from a SNR
          matrix.

snr.cutoff: SNR cutoff used for label spots.

legend.x: relative position of the legend.

     pch: pch style used to main spots.

  subset: subset of spots used to plot based on 'type' slot.

   title: title of the plot.

    xlim: range for the X axis.

    ylim: range for the Y axis.

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

     This function has suffered recent re-working, to increase the
     usability and  to clean a little bit the code.

     If array2 is NULL a median array is computed using all available
     arrays.   Then the values of M and A are computed using the
     following formula:

     M = array2 - array1

     A = (array2 + array1) / 2

     If type information is available in the Codelink object, or
     provided throught the 'type' argument, spots are colored based on
     that. DISCOVERY spots are  plotted black with pch = "." whereas
     the other classes are plotted with  different background colors,
     using gray as border to increase contrasts. For  that pch = 21 is
     used. If snr is specified as label option, the SNR is used  to
     label spots, if available in the Codelink object. In this case,
     the mean  SNR across all arrays is used when array2 = NULL.

     Some parameters may not be working right now, as the new function
     is using a  different method to labels spots.

     The legend is 'automagically' located, but this can be overrided
     with the  legend.x argument.

     In addition, a subset of the spots can be plotted based on type
     information  when available. This allows, for example, to plot
     only DISCOVERY spots.

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

_N_o_t_e:

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

     Diego Diez

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

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

     ## Not run: 
         data(codelink.example)
         plotMA(codelink.example)
     ## End(Not run)

