check_compData_results | R Documentation |
compData
result objectCheck the validity of a compData
object containing differential expression results. An object that passes the check can be used as the input for the method comparison functions in compcodeR
.
check_compData_results(object)
object |
A |
Charlotte Soneson
tmpdir <- normalizePath(tempdir(), winslash = "/")
mydata <- generateSyntheticData(dataset = "mydata", n.vars = 1000,
samples.per.cond = 5, n.diffexp = 100,
output.file = file.path(tmpdir, "mydata.rds"))
## Check an object without differential expression results
check_compData_results(mydata)
runDiffExp(data.file = file.path(tmpdir, "mydata.rds"),
result.extent = "voom.limma",
Rmdfunction = "voom.limma.createRmd",
output.directory = tmpdir, norm.method = "TMM")
resdata <- readRDS(file.path(tmpdir, "mydata_voom.limma.rds"))
## Check an object containing differential expression results
check_compData_results(resdata)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.