Usage
"permutate"(object, nPerm = 10000, pCutoff = 0.01, where = "fdr", keep = FALSE, corCutoff = 0.1, seed = 1234567890, BPPARAM = bpparam(), verbose = getOption("verbose", default = TRUE))
Arguments
object
a MolecularPermutationClassifier subclass object.
nPerm
integer with number of permutations. Default: 1e4L
pCutoff
numeric with p-value or fdr cutoff used, i.e.,
variable
where
character with significant value used. Default value is "fdr".
keep
should null distribution simulation values be kept?.
Default: FALSE
corCutoff
numeric with correlation difference between classes
cutoff used, i.e.,
$|\rho(profile, class_A)-\rho(profile, class_B)|>corCutoff$.
Default 0.1
seed
integer to use as random seed. Default: 1234567890.
BPPARAM
an optional BiocParallelParam instance determining the
parallel back-end to be used during evaluation, or a list of
BiocParallelParam instances, to be applied in sequence for nested calls to
bplapply. Default=bpparam().
verbose
should the user feedback be displayed? By default value is
"verbose" global option parameter, if present, or FALSE otherwise.