Description Usage Arguments Value Examples
Accessor functions of the DEXSeqDataSet object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | featureCounts(object, normalized=FALSE)
featureIDs( object )
featureIDs( object ) <- value
exonIDs( object )
exonIDs( object ) <- value
groupIDs( object )
groupIDs( object ) <- value
geneIDs( object )
geneIDs( object ) <- value
sampleAnnotation( object )
|
object |
An DEXSeqDataSet object. |
value |
A character vector to replace previous values. |
normalized |
Logical indicating whether or not to divide the counts by the size factors or normalization factors before returning (normalization factors always preempt size factors) |
'featureCounts' access the counts per exonic region or feature region names. 'featureIDs' and 'exonIDs' are accessor functions for the exon bin or features identifiers. 'groupIDs' and 'geneIDs' are accessor functions for the character vector grouping the features, for example exonIDs from the same gene are grouped together by having the same value in the geneIDs. 'sampleAnnotation' is an accessor for the information from the samples.
1 2 3 4 | data(pasillaDEXSeqDataSet, package="pasilla")
head( featureCounts( dxd ) )
head( featureIDs(dxd))
head( exonIDs(dxd))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.