Description Usage Arguments Value See Also Examples
Works as a wrapper for tni.gsea2
, performing a
2-tailed GSEA analysis on a TNI class object and integrating
the results into the TNS class object.
1 2 |
tns |
A TNS class, which has been preprocessed |
... |
Additional parameters passed to |
A TNS class, with added regulon activity scores.
tni.gsea2
for information on all
parameters.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # load survival data
data(survival.data)
# load TNI-object
data(stni, package = "RTN")
stns <- tni2tnsPreprocess(stni, survivalData = survival.data,
keycovar = c('Grade','Age'), time = 1, event = 2)
stns <- tnsGSEA2(stns)
## Not run:
# parallel version with SNOW package!
library(snow)
options(cluster=snow::makeCluster(3, "SOCK"))
stns <- tnsGSEA2(stns)
stopCluster(getOption("cluster"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.