Description Usage Arguments Value References Examples
Accessor functions and replace methods for NBAMSeqDataSet object
For getDesign()
: accessor to the design formula
For getsf()
: accessor to the size factors
Replace methods for NBAMSeqDataSet object
For setsf()
: replace size factors
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
theObject |
a NBAMSeqDataSet object |
value |
the values to be included in the object |
For getDesign()
: design formula
For getsf()
: size factor
For setsf()
: NBAMSeq object
Love, M.I., Huber, W., Anders, S. (2014) Moderated estimation of fold change and dispersion for RNA-seq data with DESeq2. Genome Biology, 15:550. https://doi.org/10.1186/s13059-014-0550-8
1 2 3 4 5 6 7 8 9 10 11 12 | ## For getDesign() ##
gsd = makeExample()
design_gsd = getDesign(gsd)
## For getsf() ##
gsd = makeExample()
sf = getsf(gsd)
## For setsf() ##
n = 100
m = 50
gsd = makeExample(n = n, m = m)
sf = sample(1:5, m, replace = TRUE)
setsf(gsd) = sf
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.