Description Usage Arguments Value References See Also Examples
View source: R/calculate.beta.R
The WGCNA
package assumes that in the coexpression network
the genes are connected with a power-law distribution. Therefore, it need a
soft-thresholding power for network construction, which is estimated
by this auxiliary function.
1 2 | calculate.beta(saveFile = NULL, RsquaredCut = 0.8, Data, doThreads=FALSE,
verbose = 0)
|
saveFile |
The file to save the results in. Set to |
RsquaredCut |
A threshold in the range [0,1] used to estimate the power. A higher value
can increase power. For technical use only. See |
Data |
A matrix or data frame containing the expression data, with genes corresponding to columns and rows corresponding to samples. Rows and columns must be named. |
doThreads |
Boolean. Allows WGCNA to run a little faster using multi-threading but might not work on all systems. |
verbose |
The integer level of verbosity. 0 means silent and higher values produce more details of computation. |
A list of:
sft |
The full output of |
power |
The estimated power (beta) value |
powers |
The numeric vector of all tried powers |
RsquaredCut |
The value of input argument |
Langfelder P and Horvath S, WGCNA: an R package for weighted correlation network analysis. BMC Bioinformatics 2008, 9:559
pickSoftThreshold
,
blockwiseModules
,
one.step.pigengene
,
wgcna.one.step
1 2 | data(aml)
p1 <- calculate.beta(Data=aml[,1:200])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.