| doCompleteDEUAnalysis {DEXSeq} | R Documentation |
This function performs a complete differential exon usage analysis, calling
all the necessary functions and returning an ExonCountSet object
with p values, adjusted p values and fold change estimates.
doCompleteDEUAnalysis( ecs,
formula0 = ~ sample + exon,
formula1 = ~ sample + exon + condition:exon,
minCount = 10,
nCores = 1,
path = NULL,
FDR = 0.1,
fitExpToVar = "condition",
color = NULL,
color.samples = NULL )
ecs |
An ExonCountSet object. |
formula0 |
Formula for the reduced (null) model, to be passed to |
formula1 |
Formula for the full model, to be passed to |
minCount |
Exons with less than ‘minCount’ reads (summed over all samples) are
excluded from the test. See |
nCores |
Number of CPU cores to be used when running |
path |
A file system path to the directory into which the HTML report generated by
|
FDR |
Argument passed on to |
fitExpToVar |
Argument passed on to |
color |
Argument passed on to |
color.samples |
Argument passed on to |
An object of class ExonCountSet.
data("pasillaExons", package="pasilla")
pasillaExons <- doCompleteDEUAnalysis( pasillaExons,
formula0 = ~ sample + type * exon,
formula1 = ~ sample + type * exon + condition * exon )