Description Usage Arguments Details Value Author(s) References Examples
View source: R/edgeR.GLM.Robust.createRmd.R
A function to generate code that can be run to perform differential expression analysis of RNAseq data (comparing two conditions) using the edgeR package.
1 2 | edgeR.GLM.Robust.createRmd(data.path, result.path, codefile,
norm.method = "TMM", disp.estimation = "CoxReid")
|
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. Possible values are |
disp.estimation |
method for estimating the dispersion. Possible values are "CoxReid", "Pearson" or "deviance". |
For more information about the methods and the interpretation of the parameters, see the edgeR
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.
BuKyung Baik
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
Zhou X, Lindsay H, Robinson MD (2014). Robustly detecting differential expression in RNA sequencing data using observation weights. Nucleic Acids Research, 42(11), e91.
1 2 3 4 5 6 7 | 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 = "edgeR.GLM.Robust",
Rmdfunction = "edgeR.GLM.Robust.createRmd",
output.directory = tmpdir)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.