DEUresultTable {DEXSeq}R Documentation

Get a result table from the analysis workflow.

Description

This function returns a data frame with the summary of the results from the analysis workflow. It accesses the fData slots with information of the dispersion estimates obtained from the function fitDispersionFunction, the p values, and adjusted p values obtained from the function testForDEU, and log2 fold changes obtained from the function estimatelog2FoldChanges.

Usage

DEUresultTable(ecs)

Arguments

ecs

An ExonCountSet object.

Value

A data frame with a summary of the analysis workflow.

Examples

   ## Not run: 
      data("pasillaExons", package="pasilla")
      pasillaExons <- estimateSizeFactors( pasillaExons )
      pasillaExons <- estimateDispersions( pasillaExons )
      pasillaExons <- fitDispersionFunction( pasillaExons )
      pasillaExons <- testForDEU( pasillaExons )
      res <- DEUresultTable( pasillaExons )
    
## End(Not run)

[Package DEXSeq version 1.0.2 Index]