Description Usage Arguments Value Examples
A function to estitamete the power curve for differential expression analysis of RNA-seq data.
1 2 3 4 5 6 7 8 9 10 | est_power_curve(
n,
w = 1,
rho = 2,
lambda0 = 5,
phi0 = 1,
alpha = 0.05,
f = 0.05,
...
)
|
n |
Numer of samples. |
w |
Ratio of normalization factors between two groups. |
rho |
minimum fold changes for prognostic genes between two groups. |
lambda0 |
Average read counts for prognostic genes. |
phi0 |
Dispersion for prognostic genes. |
alpha |
alpha level. |
f |
FDR level |
... |
other parameters for est_power function. |
A list including parameters, sample size and power.
1 2 3 | result1<-est_power_curve(n=63, f=0.01, rho=2, lambda0=5, phi0=0.5)
result2<-est_power_curve(n=63, f=0.05, rho=2, lambda0=5, phi0=0.5)
plot_power_curve(list(result1,result2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.