Description Usage Arguments Details Value Author(s) References Examples
View source: R/generateRmdCodeDiffExp.R
A function to generate code that can be run to perform differential expression analysis of RNAseq data (comparing two conditions) by applying the voom transformation (from the limma package) followed by differential expression analysis with limma. 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 | voom.limma.createRmd(data.path, result.path, codefile, norm.method)
|
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. |
norm.method |
The between-sample normalization method used to compensate for varying library sizes and composition in the differential expression analysis. The normalization factors are calculated using the |
For more information about the methods and the interpretation of the parameters, see the limma
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
Smyth GK (2005): Limma: linear models for microarray data. In: 'Bioinformatics and Computational Biology Solutions using R and Bioconductor'. R. Gentleman, V. Carey, S. Dudoit, R. Irizarry, W. Huber (eds), Springer, New York, pages 397-420
Law CW, Chen Y, Shi W and Smyth GK (2014): voom: precision weights unlock linear model analysis tools for RNA-seq read counts. Genome Biology 15, R29
1 2 3 4 5 6 7 | tmpdir <- normalizePath(tempdir(), winslash = "/")
mydata.obj <- generateSyntheticData(dataset = "mydata", n.vars = 1000,
samples.per.cond = 5, n.diffexp = 100,
output.file = file.path(tmpdir, "mydata.rds"))
runDiffExp(data.file = file.path(tmpdir, "mydata.rds"), result.extent = "voom.limma",
Rmdfunction = "voom.limma.createRmd",
output.directory = tmpdir, norm.method = "TMM")
|
Loading required package: sm
Package 'sm', version 2.2-5.6: type help(sm) for summary information
Registered S3 method overwritten by 'gplots':
method from
reorder.factor gdata
Warning messages:
1: no DISPLAY variable so Tk is not available
2: replacing previous import ‘gdata::reorder.factor’ by ‘gplots::reorder.factor’ when loading ‘compcodeR’
processing file: tempcode.Rmd
|
| | 0%
|
|................................... | 50%
ordinary text without R code
|
|......................................................................| 100%
label: unnamed-chunk-1 (with options)
List of 6
$ echo : logi TRUE
$ eval : logi TRUE
$ include: logi TRUE
$ message: logi FALSE
$ error : logi TRUE
$ warning: logi TRUE
Loading required package: limma
Loading required package: edgeR
output file: tempcode.md
[1] TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.