Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/DEXSeqInterest.R
Genewise differential exon usage or intron retention test adapted from the
DEXSeq
package.
1 2 |
x |
Object of type |
design |
Formula specifying the design of the experiment. It must specify an interaction
term between a variable from columns of |
reducedModel |
The null model formula. By default it is '~ sample + intex'. |
fitExpToVar |
A variable name contained in the column data (i.e. column names of
|
intExCol |
Column name (or number) that represents whether each row is "intron" or "exon"
in |
geneIdCol |
Column name (or number of column) in |
bpparam |
An optional |
silent |
Whether run the DEXSeq function silently (if TRUE) or allow it to print messages at each step (if FALSE). |
... |
Other parameter settings for the |
The design
and reduceModel
accept formula that specify the design
of the experiment. The formula must describe an interaction between variables
from columns of sampleData(x)
with one of the 'exon', 'intron' or
'intex' (i.e. intron and exon) variables; Based on which of these variables are
used (exon, intron , or 'intex') the input object (x
) will be filtered
reletively to include exons, introns , or introns and exons. Hence the number
of the rows of the returned value is equal to the number of the rows of the
filtered object, i.e. the number of the exons, introns or both based on the
design
formula.
A DEXSeqResults
object.
Ali Oghabian
1 2 3 4 5 | dexseqExRes<-DEXSeqIntEREst (x=mdsChr22ExObj,
design= ~ sample + exon + test_ctrl:exon,
reducedModel = ~ sample + exon, fitExpToVar="test_ctrl",
intExCol="int_ex", geneIdCol="transcripts_id", silent=TRUE)
head(dexseqExRes)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.