Usage
preservationNetworkConnectivity(
multiExpr,
useSets = NULL, useGenes = NULL,
corFnc = "cor", corOptions = "use='p'",
networkType = "unsigned",
power = 6,
sampleLinks = NULL, nLinks = 5000,
blockSize = 1000,
setSeed = 12345,
weightPower = 2,
verbose = 2, indent = 0)
Arguments
multiExpr
expression data in the multi-set format (see checkSets
). A vector of
lists, one per set. Each set must contain a component data
that contains the expression data, with
rows corresponding to s useSets
optional specification of sets to be used for the preservation calculation. Defaults to
using all sets.
useGenes
optional specification of genes to be used for the preservation calculation. Defaults
to all genes.
corFnc
character string containing the name of the function to calculate correlation. Suggested
functions include "cor"
and "bicor"
.
corOptions
further argument to the correlation function.
networkType
a character string encoding network type. Recognized values are (unique
abbreviations of) "unsigned"
, "signed"
, and "signed hybrid"
.
power
soft thresholding power for network construction. Should be a number greater than 1.
sampleLinks
logical: should network connections be sampled (TRUE
) or should all
connections be used systematically (FALSE
)?
nLinks
number of links to be sampled. Should be set such that nLinks * nNeighbors
be
several times larger than the number of genes.
blockSize
correlation calculations will be split into square blocks of this size, to prevent
running out of memory for large gene sets.
setSeed
seed to be used for sampling, for repeatability. If a seed already exists, it is saved
before the sampling starts and restored upon exit.
weightPower
power with which higher adjacencies will be weighted in weighted means
verbose
integer level of verbosity. Zero means silent, higher values make the output
progressively more and more verbose.
indent
indentation for diagnostic messages. Zero means no indentation, each unit adds
two spaces.