Description Usage Arguments Value Examples
Merge the DEG Pvalues for each tool used by tools.DEG.RNAseq in one dataframe
1 |
data |
Dataframe with genes in row, and methods used in columns. In contains the differentially expressed p-values for each gene. |
tools |
list character string. By default all the methods present in tools.DEG.RNAseq() are used. Any tools given in this list could be passed as argument : "edgeR_RLE","edgeR_upperquartile","edgeR_TMMwsp","deseq2.Wald","deseq2.LRT", "deseq" |
Dataframe of DEG pvalues with genes in columns and tools in rows.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Import the dataset
Data = matrix(runif(5000, 10, 100), ncol=20)
group = paste0(rep(c("control", "case"), each = 10),rep(c(1:10),each = 1))
genes <- paste0(rep(LETTERS[1:25], each=10), rep(c(1:10),each = 1))
colnames(Data) = group
row.names(Data) = genes
# Compute all the possible pvalues
# res.DEG = tools.DEG.RNAseq.merge(Data)
# Compute the pvalues, only with edgeR methods
tools = c("edgeR_RLE","edgeR_upperquartile","edgeR_TMM")
res.DEG = tools.DEG.RNAseq.merge(data = Data, tools = tools)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.