Usage
Fluo_modeling(data, init.path, VSmethod = "DDHFmv", CPmethod = "ECP", CPgroups = 5, CPpvalue = 0.05, CPmingroup = 10, seed = NULL)
Arguments
data
List. The output of pathEstimator().
init.path
Numeric vector. The cell path progression as it has been estimated by
pathEstimator() or a user-defined path that can be deduced from Fluo_inspection(). The latter
is suggested only when path.type = "other" in pathEstimator().
VSmethod
Character string. The variance stabilization transformation method to be applied
to the corrected fluorescence data prior to the change point analysis. IT can be one of "log"
or "DDHFmv". Default is "DDHFmv".
CPmethod
Character string. The change point method to be used. It can be one of "ECP",
(non-parametric) "manualECP" (non-parametric with user-defined numner of change-points) or
"PELT" (Pruned Exact Linear Time; parametric). Default is ECP.
CPgroups
Integer. The number of change-points to be kept if CPmethod = "manualECP".
Default is 5.
CPpvalue
Float. The significance level below which we do not reject a change point.
Default is 0.05.
CPmingroup
Integer. The minimum number of values for a cluster re-estimated by the
change-point analysis. Default is 10.
seed
Integer. An optional seed number for the Random Number Generator. Note that this seed is a 'reference'
value of the actual seed used in sampling. CONFESS is using various random sampling methods. Each method's
actual seed is factor*seed. The factors vary across methods. Default is NULL.