evaluateProcess            package:flowQ            R Documentation

_E_v_a_l_u_a_t_e _Q_A _p_r_o_c_e_s_s_e_s

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

     Re-evaluate an object of class 'qaProcess', e.g. for the case that
     a threshold value has changed.

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

     evaluateProcess(process, thresh, ...)

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

 process: An object of class 'qaProcess'. 

  thresh: The new treshold on which the process is to be evaluated. 

     ...: Further arguments that are passed on to the individual
          functions for each QA process type.

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

     It is sometimes useful to update the state of aggregators in a
     'qaProcess' , for instances after changing the threshold value,
     without having to recompute all images, which can be very time
     consuming.

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

     An updated object of class 'qaProcess'

_N_o_t_e:

     This function needs to be extended for new types of 'qaProcess'.

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

     Florian Hahne

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

     'qaProcess', 'writeQAReport'

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

     ## Not run: 
     data(GvHD)
     dest <- tempdir()
     qp1 <- qaProcess.timeline(GvHD[1:3], channel="FL1-H", outdir=dest,
     cutoff=1)
     evaluateProcess(qp1, thresh=4)
     ## End(Not run)

