Description Usage Arguments Details Value Examples
Normalize tag counts produced by tagCount by total tag count.
1 | normalizeTagCount(counts, n = 500)
|
counts |
The output of |
n |
Limit the output to the top |
This function normalizes the tag counts produced by tagCount.
The tag counts per bin are scaled, such that each sample has as many
normalized tags as the sample with the most tags.
A data.frame with normalized counts on bins. Each column contains the counts of one sample.
1 2 3 4 5 6 7 8 | counts <- tagCount(
samples=c("ctl1.bam", "ctl2.bam", "chip1.bam", "chip2.bam"),
org="Mmusculus", assembly="UCSC", version="mm9"
)
nCounts <- normalizeTagCount(counts)
topHeatmap(nCounts)
samplesHeatmap(nCounts)
pcaPlot(nCounts, as.factor(c("ctl", "ctl", "chip", "chip")))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.