Description Usage Arguments Value Author(s) See Also Examples
Calculates the cumulative sum of raw CAGE counts along each tag cluster or consensus cluster in every sample within a CAGEr object.
1 2 3 4 5 6 7 | cumulativeCTSSdistribution(object, clusters = c("tagClusters",
"consensusClusters"), useMulticore = FALSE, nrCores = NULL)
## S4 method for signature 'CAGEr'
cumulativeCTSSdistribution(object,
clusters = c("tagClusters", "consensusClusters"),
useMulticore = FALSE, nrCores = NULL)
|
object |
A |
clusters |
|
useMulticore |
Logical, should multicore be used.
|
nrCores |
Number of cores to use when |
For CAGEset
objects, the slot CTSScumulativesTagClusters
(when clusters = "tagClusters"
) or CTSScumulativesConsensusClusters
(when clusters = "consensusClusters"
) of the will be occupied by the
list containing cumulative sum of the CAGE signal along genomic regions per
CAGE experiment. In CAGEexp
objects, cumulative sums are stored
in the metadata slot using the RleList
class.
Vanja Haberle
Other CAGEr object modifiers: CTSStoGenes
,
CustomConsensusClusters
,
aggregateTagClusters
,
annotateCTSS
, clusterCTSS
,
getCTSS
, normalizeTagCount
,
quantilePositions
,
summariseChrExpr
Other CAGEr clusters functions: CTSSclusteringMethod
,
CTSScumulativesTagClusters
,
CustomConsensusClusters
,
aggregateTagClusters
,
clusterCTSS
,
consensusClustersDESeq2
,
consensusClustersGR
,
plotInterquantileWidth
,
quantilePositions
,
tagClusters
1 2 3 4 5 6 7 8 9 10 11 12 13 | CTSScumulativesTagClusters(exampleCAGEset)[[1]][1:6]
cumulativeCTSSdistribution(object = exampleCAGEset, clusters = "tagClusters")
CTSScumulativesTagClusters(exampleCAGEset)[[1]][1:6]
cumulativeCTSSdistribution(exampleCAGEset, clusters = "consensusClusters")
clusterCTSS( exampleCAGEexp, threshold = 50, thresholdIsTpm = TRUE
, nrPassThreshold = 1, method = "distclu", maxDist = 20
, removeSingletons = TRUE, keepSingletonsAbove = 100)
cumulativeCTSSdistribution(exampleCAGEexp, clusters = "tagClusters")
aggregateTagClusters( exampleCAGEexp, tpmThreshold = 50
, excludeSignalBelowThreshold = FALSE, maxDist = 100)
cumulativeCTSSdistribution(exampleCAGEexp, clusters = "consensusClusters")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.