sizeFactors {DEXSeq}R Documentation

Accessor functions for the sizeFactors information in a ExonCountSet

Description

The sizeFactors vector assigns to each column of the count data a value, the size factor, such that count values in the columns can be brought to a common scale by dividing by the corresponding size factor.

Usage

## S4 method for signature 'ExonCountSet'
sizeFactors(object)
## S4 replacement method for signature 'ExonCountSet,numeric'
sizeFactors(object) <- value

Arguments

object

An ExonCountSet

value

a vector of number, one size factor for each column in the count data

Author(s)

Simon Anders, sanders@fs.tum.de

See Also

estimateSizeFactors

Examples

   data("pasillaExons", package="pasilla")
   pasillaExons <- estimateSizeFactors( pasillaExons )
   sizeFactors(pasillaExons)

[Package DEXSeq version 1.0.2 Index]