Description Usage Arguments Value
View source: R/clustering-functions.R
an internal function that partitions, then clusters TSS data by sequence to create a data frame containing the coordinates of identified TSRs and other associated metrics, including the site and tag counts (nTSSs, nTAGs), TSR width and (modified) Shape Index (SI, mSI). tsrCluster is an internal function that is invoked via detTSR(), which in turn is called by the user-level function determineTSR().
1 | tsrCluster(x, minNbrTAGs = 3, minDist = 20)
|
x |
a data frame containing a single slot from either tssCountData or tssCountDataMerged, depending on its invocation by parent function determineTSR() |
minNbrTAGs |
the minimum number of tags at a given TSS position for a TSS to be included in clustering. (numeric) |
minDist |
the maximum distance of TSSs between two TSRs in base pairs. (numeric) |
A data frame of TSRs with variables
seq = sequence identifier (seq)
start = start of TSR (num)
end = end of TSR (num)
strand = + or - (factor)
nTSSs = count of TSSs (num)
nTAGs = count of tags (num)
tsrPeak = maximum tag count fraction for all TSS positions in the TSR (num)
tsrWdth = width of TSR (num)
tsrTrq = TSR torque; measure of TSR balance (num)
tsrSI = shape index value of TSR (num)
tsrMSI = modified shape index value of TSR (num)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.