.Rmd
file containing code to perform differential expression analysis with the edgeR GLM approachR/generateRmdCodeDiffExp.R
edgeR.GLM.createRmd.Rd
A function to generate code that can be run to perform differential expression analysis of RNAseq data (comparing two conditions) using the GLM functionality from the edgeR 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.
edgeR.GLM.createRmd(
data.path,
result.path,
codefile,
norm.method,
disp.type,
disp.method,
trended
)
The path to a .rds file containing the compData
object that will be used for the differential expression analysis.
The path to the file where the result object will be saved.
The path to the file where the code will be written.
The between-sample normalization method used to compensate for varying library sizes and composition in the differential expression analysis. Possible values are "TMM"
, "RLE"
, "upperquartile"
and "none"
.
The type of dispersion estimate used. Possible values are "common"
, "trended"
and "tagwise"
.
The method used to estimate the dispersion. Possible values are "CoxReid"
, "Pearson"
and "deviance"
.
Logical parameter indicating whether or not a trended dispersion estimate should be used.
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.
For more information about the methods and the interpretation of the parameters, see the edgeR
package and the corresponding publications.
Robinson MD, McCarthy DJ and Smyth GK (2010): edgeR: a Bioconductor package for differential expression analysis of digital gene expression data. Bioinformatics 26, 139-140
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 = "edgeR.GLM",
Rmdfunction = "edgeR.GLM.createRmd",
output.directory = tmpdir, norm.method = "TMM",
disp.type = "tagwise", disp.method = "CoxReid",
trended = TRUE)
#>
#>
#> processing file: /private/var/folders/xz/lz5thm6s3vb1vdkk77vmkgbr0000gn/T/RtmpDwlx4a/tempcode21d020d78b06.Rmd
#> 1/2
#> 2/2 [unnamed-chunk-1]
#> output file: /private/var/folders/xz/lz5thm6s3vb1vdkk77vmkgbr0000gn/T/RtmpDwlx4a/tempcode21d020d78b06.md
#> [1] TRUE