fcFilter-methods             package:xps             R Documentation

_F_o_l_d-_C_h_a_n_g_e _F_i_l_t_e_r

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

     This method initializes the Fold-Change Filter. 
      The fold-change is determined by the mean value of group 2
     divided by the mean value of group 1. 
      The Fold-Change Filter flags all rows with: 'flag = (fc >=
     cutoff)'

     _Usage_

     'fcFilter(object)' 
      'fcFilter(object, value)<-'

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

  object: object of class 'UniFilter'.

   value: numeric vector 'c(cutoff, direction)'

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

     The method 'fcFilter' initializes the following parameters:

         'cutoff':     the cutoff level for the filter.
         'direction':  'direction="both"' (default): select up and downregulated genes.
                       'direction="up"': select upregulated genes only.
                       'direction="down"': select downregulated genes only.

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

     An initialized 'UniFilter' object.

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

     Christian Stratowa

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

     unifltr <- UniFilter()
     fcFilter(unifltr) <- c(1.5,"both")
     str(unifltr)

