autoGate              package:flowStats              R Documentation

_A_u_t_o_m_a_t_e_d _g_a_t_i_n_g _o_f _s_i_n_g_l_e _p_o_p_u_l_a_t_i_o_n_s _i_n _2_D

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

     This function tries to fit a single norm2Filter based on a rough
     preselection of the data. This function is considered internal.
     Please use the API provided by 'lymphGate'.

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

     autoGate(x, ..., scale = 2.5)

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

       x: An object of class 'flowSet'

     ...: Named arguments or a list of the ranges used for the initial
          rough preselection. This gets passed on to 'rectangleGate',
          see it's documentation for details. 

   scale: The 'scale' parameter that gets passed on to 'norm2Filter'. 

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

     The 'flowSet' is first filtered using a 'rectangleGate' and the
     'norm2Filter' is subsequently fitted to the remaining subset.

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

     A list with items:

      x : The filtered 'flowSet'. 

 n2gate : The 'norm2Filter' object. 

n2gateResults : The 'filterResult' after applying the 'norm2Filter' on
          the 'flowSet'. 

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

     Florian Hahne

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

     'lymphGate', 'norm2Filter'

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

     data(GvHD)
     flowStats:::autoGate(GvHD[10:15], "FSC-H"=c(100,500), "SSC-H"=c(0, 400))

