simplifyGateNames         package:flowFlowJo         R Documentation

_S_t_a_n_d_a_r_d_i_z_e _f_l_o_w _c_y_t_o_m_e_t_r_y _g_a_t_e _n_a_m_e_s

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

     This function helps to standardize typical flow cytometry cell
     population names. This is useful when trying to combine the
     results from a large number of flow runs wherein the cytometrist
     may have used slightly different nomenclature to describe the same
     set of cells.   For example, "Lymphocytes" vs. "lymphoctes".

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

      
     simplifyGateNames(x, ...) 

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

       x: Logical.  Default=FALSE.  A flowCore style filter, or a text
          string with a gate (filter) name 

     ...: Additional arguments:     _upperCaseGates_ Logical. 
          Default=FALSE.  If TRUE, convert the gate names to all upper
          case    
           _stripFileName_  Logical.  Default=TRUE.  It is currently
          the convention that the flowFlowJo code prepends the name of
          the referenced FCS file within the gate name, followed by a
          colon, then the rest of the gate information.  This setting
          looks for ".*\.fcs:" and strips it out of the gate name   
            _removeParentalNames_ Logical.  Default=TRUE.  The current
          _getFlowJoGates_ method concatenates a gate's name with the
          name of all of it's parents.  


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

     This function returns either a text string or flowCore style
     filter object.

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

     John Gosink

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

      
     simplifyGateNames(c("LymphoCytes", "lymphocytes", "mOnOcYtEs"));
     simplifyGateNames(c("Lymphocytes:CD8+"), removeParentalNames=TRUE); 
     simplifyGateNames("CD34 positive cells ") 
     simplifyGateNames("CD34 + ") 

