Description Usage Arguments Value Methods Author(s) References See Also Examples
XBSeqDataSet
is a subclass of "DESeqDataSet"
, used to store the input values, intermediate calculations and results of an
analysis of differential expression. Different from the original DESeqDataSet
class, XBSeqDataSet
has some extra slots including:
fitInfo: An object of environment
class which contains the scv fitting information for a XBSeqDataSet
object
dispTable: An object of character
class which indicates method used for scv fitting. Details can be found in estimateSCV
.
conditions: An object of factor
class which contains the experimental design information for a XBSeqDataSet
object
dispEst: An object of list
class which contains the final dispersion estimates for each gene. Details can be found in dispEst
1 | XBSeqDataSet(counts, bgcounts, conditions, sizeFactors=NULL, ...)
|
counts |
A data frame or matrix which contains the observed signal for each gene across all the samples. Rows represent genes and columns represent samples. |
bgcounts |
A data frame or matrix which contains the background noise for each gene across all the samples. Rows represent genes and columns represent samples. |
conditions |
Object of class |
sizeFactors |
Numeric vector which contains normalizing factors for the data matrix. In most cases, it is recommended that you calculate
sizeFactors by |
... |
Further arguments provided will be ignored |
A XBSeqDataSet object.
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
signature(object = "XBSeqDataSet")
: ...
Yuanhang Liu
H. I. Chen, Y. Liu, Y. Zou, Z. Lai, D. Sarkar, Y. Huang, et al., "Differential expression analysis of RNA sequencing data by incorporating non-exonic mapped reads," BMC Genomics, vol. 16 Suppl 7, p. S14, Jun 11 2015.
estimateSCV
, conditions
, dispEst
, dispTable
, fitInfo
, DESeqDataSet
, counts
, estimateRealCount
1 2 3 4 | data(ExampleData)
conditions <- factor(c(rep('C1', 3), rep('C2', 3)))
XB <- XBSeqDataSet(Observed, Background, conditions)
str(XB)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.