
Last chance! 50% off unlimited learning
Sale ends in
estimateDE
function. It retrieves the summaries of
differential expression (DE) results from TCC-class object.
The retrieved information includes $p$-values, $q$-values,
coordinates of M-A plot (i.e., M and A values), and so on.
getResult(tcc, sort = FALSE, ...)
TRUE
, the retrieved results are
sorted in order of the stat$rank
field in the
TCC-class object. If FALSE
, the results
are retrieved by the original order.plot
for details.p.adjust
function with default parameter settings.estimateDE
.# Obtaining DE results by an exact test in edgeR coupled with
# the DEGES/edgeR normalization factors.
data(hypoData)
group <- c(1, 1, 1, 2, 2, 2)
tcc <- new("TCC", hypoData, group)
tcc <- calcNormFactors(tcc, norm.method = "tmm", test.method = "edger",
iteration = 1, FDR = 0.1, floorPDEG = 0.05)
tcc <- estimateDE(tcc, test.method = "edger", FDR = 0.1)
result <- getResult(tcc, sort = TRUE)
head(result)
# Obtaining DE results by an negative binomial test in DESeq
# coupled with the iterative DEGES/DESeq normalization method.
tcc <- new("TCC", hypoData, group)
tcc <- calcNormFactors(tcc, norm.method = "deseq", test.method = "deseq",
iteration = 1, FDR = 0.1, floorPDEG = 0.05)
tcc <- estimateDE(tcc, test.method = "deseq", FDR = 0.1)
result <- getResult(tcc, sort = TRUE)
head(result)
Run the code above in your browser using DataLab