Description Usage Arguments Value Author(s) Examples
Given a tibble
object of the results returned from olink_limma
function, generate the files for upload to webgestalt website.
1 | webgestalt_prep(x, pvalue = 0.01, log2FC = 0, dir = ".")
|
x |
A |
pvalue |
The p-value to filter for significant proteins. The default is 0.01. |
log2FC |
The log2 fold change cut-off to filter for significant proteins. The default is 0, i.e. no filtering. |
dir |
The output folder. The default is current working directory. |
An invisible character object with exported file names.
Ge Tan
1 2 3 4 5 6 7 8 9 10 11 | npxFn <- system.file("extdata",
c("20200507_Inflammation_NPX_1.xlsx",
"20200625_Inflammation_NPX_2.xlsx"),
package = "OlinkR")
metaFn <- system.file("extdata", "Inflammation_Metadata.xlsx", package = "OlinkR")
se <- as_se(read_npx(npxFn, metaFn))
tb <- olink_limma(se, factorCol = "condition_Factor",
contrasts = "Glucose.10mM.Vehicle - Vehicle.Vehicle",
blocking = "Donor_Factor")
files <- webgestalt_prep(tb)
file.remove(files)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.