Description Usage Arguments Details Value Author(s) References Examples
View source: R/DESeq.nbinom.createRmd.R
A function to generate code that can be run to perform differential expression analysis of RNAseq data (comparing two conditions) using the nbinom test from the DESeq package. The code is written to a .Rmd
file. This function is generally not called by the user, the main interface for performing differential expression analysis is the runDiffExp
function.
1 2 | DESeq.nbinom.createRmd(data.path, result.path, codefile, sharing.mode,
disp.method, fit.type)
|
data.path |
The path to a .rds file containing the |
result.path |
The path to the file where the result object will be saved. |
codefile |
The path to the file where the code will be written. |
sharing.mode |
The method used to select between the individually estimated dispersion and the dispersion estimate obtained by fitting a dispersion-mean relationship to the estimated values for all genes. Possible values are |
disp.method |
The method used to estimate the dispersion. Possible values are |
fit.type |
The fitting method used to get the dispersion-mean relationship. Possible values are |
For more information about the methods and the interpretation of the parameters, see the DESeq
package and the corresponding publications.
The function generates a .Rmd
file containing the code for performing the differential expression analysis. This file can be executed using e.g. the knitr
package.
Charlotte Soneson
Anders S and Huber W (2010): Differential expression analysis for sequence count data. Genome Biology 11:R106
1 2 3 4 5 6 7 8 9 10 11 | try(
if (require(DESeq)) {
tmpdir <- normalizePath(tempdir(), winslash = "/")
SyntheticDataSimulation(simul.data= 'KIRC', dataset = file.path(tmpdir, "mydata.rds"), n.var = 500,
samples.per.cond = 3, n.diffexp = 100, dispType='same', mode='D',
fraction.upregulated=0.5, dataset.parameters=generateDatasetParameter())
compcodeR::runDiffExp(data.file = file.path(tmpdir, "mydata.rds"), result.extent = "DESeq.nbinom",
Rmdfunction = "DESeq.nbinom.createRmd",
output.directory = tmpdir, sharing.mode = "maximum",
disp.method = "pooled", fit.type = "parametric")
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.