Description Usage Arguments Details Value Author(s) References See Also Examples
Based on the observed signal as well as the background noise, estimate the true signal for each gene.
1 | estimateRealCount(object)
|
object |
A XBSeqDataSet object |
The observed signal can be achieved by using HTSeq to count the reads map to exonic regions. The background noise can be extracted by using HTSeq the second time to count the reads map to non-exonic regions, the regions we defined by excluding potential functional elements. The the underneath true signal is estimated by the simple subtraction of observed signal and background noise. The true signal of genes with background noise larger than observed signal will be assigned as 0.
A matrix contains the estimated true signal for each gene with the same length as observed signal.
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.
1 2 3 4 5 | conditions <- factor(c(rep('C1', 3), rep('C2', 3)))
data(ExampleData)
XB <- XBSeqDataSet(Observed, Background, conditions)
XB <- estimateRealCount(XB)
str(counts(XB, 3))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.