Description Usage Arguments Value Note See Also Examples
Carries out WGCNA with default settings or custom settings
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Auto_WGCNA(
datExpr,
colname_correct = TRUE,
minModuleSize = 10,
deepSplit = 4,
networkType = "signed hybrid",
TOMType = "unsigned",
corFnc = "bicor",
mergeCutHeight = 0.25,
sft_RsquaredCut = 0.85,
removeFirst = FALSE,
reassignThreshold = 1e-06,
maxBlockSize = 25000,
nThreads = NULL
)
|
datExpr |
Expression data. A matrix (preferred) or
data frame in which columns are genes and rows ar samples. NAs are
allowed, but not too many. See |
colname_correct |
a logical value. If TRUE (default), "." in gene names will be replaced with "-". This corrects a name change that is induced by R when creating a data.frame. If FALSE, no changes will be made. |
minModuleSize |
minimum module size for module detection. See
|
deepSplit |
integer value between 0 and 4. Provides a simplified control over how sensitive
module detection should be to module splitting, with 0 least and 4 most sensitive. See
|
networkType |
network type. Allowed values are (unique abbreviations of) |
TOMType |
one of |
corFnc |
the correlation function to be used in adjacency calculation. |
mergeCutHeight |
dendrogram cut height for module merging. |
sft_RsquaredCut |
desired minimum scale free topology fitting index R^2. Default is 0.80. |
removeFirst |
should the first bin be removed from the connectivity histogram? |
reassignThreshold |
p-value ratio threshold for reassigning genes between modules. See Details. |
maxBlockSize |
integer giving maximum block size for module detection. Ignored if |
nThreads |
non-negative integer specifying the number of parallel threads to be used by certain parts of correlation calculations. This option only has an effect on systems on which a POSIX thread library is available (which currently includes Linux and Mac OSX, but excludes Windows). If zero, the number of online processors will be used if it can be determined dynamically, otherwise correlation calculations will use 2 threads. |
Returns a lists containing network input parameters used for WGCNA, WGCNA module information, and quality control plots.
This is a wrapper for WGCNA.
1 2 3 4 5 | sample_dat_dir<-system.file("extdata", "sample_dat.Rdata",
package = "GmicR", mustWork = TRUE)
load(sample_dat_dir)
GMIC_Builder<-Auto_WGCNA(sample_dat, mergeCutHeight = 0.35,
minModuleSize = 10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.