getFlowJoSummary         package:flowFlowJo         R Documentation

_S_u_m_m_a_r_i_z_e _F_l_o_w_J_o _W_o_r_k_s_p_a_c_e_s

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

     Makes a table of the number and count of various gates, possibly
     broken out by FCS file in one or more FlowJo workspaces.

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

     getFlowJoSummary(x, gatesByFile=TRUE, fileNamePatterns=".", ...)

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

       x: a flowJoList or flowJoObj 

gatesByFile: a boolean.  If TRUE (default) then the count of each gate
          type will be broken out for each referenced FCS file. 
          Otherwise this method will just return a table with the total
          counts of each named gate listed in the FlowJo workspace(s). 

fileNamePatterns: A list of patterns for picking out specific FCS
          files.  Default = "."  (ie. examines all of the FCS files) 

     ...: Additional arguments: to simplifyGateNames such as
          stripFileName and removeParentalNames 

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

     The method getFlowJoSummary returns a table summarizing the number
     of gates listed in the referenced FlowJo workspaces.  This
     function is useful for ensuring that the  cytometrist has used a
     consistent set of names in their process.

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

     John Gosink

_R_e_f_e_r_e_n_c_e_s:

     See also FlowJo from Treestar Inc, at:  <URL:
     http://www.flowjo.com/>

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

     demoLocation <- system.file("extdata", "DemoWorkspace.wsp", package="flowFlowJo"); 
     actualFCSLoc <- system.file("extdata/fcsFiles", package="flowFlowJo"); 
     testList     <- readFlowJoList(demoLocation, altFileLocation=actualFCSLoc);

     getFlowJoSummary(testList, gatesByFile=FALSE, removeParentalNames=TRUE);

