evaluateProcess: Evaluate QA processes

Description Usage Arguments Details Value Note Author(s) See Also Examples

View source: R/evaluateProcess.R

Description

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

Usage

1
evaluateProcess(process, thresh, ...)

Arguments

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.

Details

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.

Value

An updated object of class qaProcess

Note

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

Author(s)

Florian Hahne

See Also

qaProcess, writeQAReport

Examples

1
2
3
4
5
6
7
8
## 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)

flowQ documentation built on Nov. 1, 2018, 3:38 a.m.