File: get.binding.characteristics.Rd

package info (click to toggle)
r-cran-spp 1.16.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 576 kB
  • sloc: cpp: 3,310; ansic: 365; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 3,039 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
\name{get.binding.characteristics}
\alias{get.binding.characteristics}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{ Calculate characteristics of observed DNA-binding signal from
  cross-correlation profiles }
\description{
  The methods calculates strand cross-correlation profile to determine binding
  peak separation distance and approximate window size that should be used
  for binding detection. If quality scores were given for the tags,
  which quality bins improve the cross-correlation pattern.
}
\usage{
get.binding.characteristics(data, srange = c(50, 500), bin = 5, 
  cluster = NULL, debug = F, min.tag.count = 1000, 
  acceptance.z.score = 3, remove.tag.anomalies = T, 
  anomalies.z = 5,accept.all.tags=F)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
  \item{data}{ Tag/quality data: output of \code{read.eland.tags} or similar function }
  \item{srange}{ A range within which the binding peak separation is
    expected to fall. Should be larger than probe size to avoid artifacts. }
  \item{bin}{ Resolution (in basepairs) at which cross-corrrelation
    should be calculated. bin=1 is ideal, but takes longer to calculate. }
  \item{cluster}{ optional snow cluster for parallel processing }
  \item{debug}{ whether to print debug messages }
  \item{min.tag.count}{ minimal number of tags on the chromosome to be
    considered in the cross-correlation calculations }
  \item{acceptance.z.score}{ A Z-score used to determine if a given tag
    quality bin provides significant improvement to the strand cross-correlation }
  \item{remove.tag.anomalies}{ Whether to remove singular tag count peaks prior to
  calculation. This is recommended, since such positions may distort the
  cross-correlation profile and increase the necessary computational time. }
  \item{anomalies.z}{ Z-score for determining if the number of tags at a
  given position is significantly higher about background, and should be
  considered an anomaly.}
  \item{accept.all.tags}{ Whether tag alignment quality calculations
    should be skipped and all available tags should be accepted in the
    downstream analysis.}
}
\value{
  \item{cross.correlation }{ Cross-correlation profile as an $x/$y data.frame}
  \item{peak}{ Position ($x) and height ($y) of automatically detected cross-correlation peak.}
  \item{whs}{ Optimized window half-size for binding detection (based on the width of the cross-correlation peak)}
  \item{quality.bin.acceptance}{ A list structure, describing the effect of inclusion of different tag quality bins on
    cross-correlation, and a resolution on which bins should be considered.}
    \itemize{
      \item{informative.bins:}{ A boolean vector indicating whether the inclusion of tags from the tag quality bin specified in the name
        attribute signiificantly increases cross-correlation profile near the peak.}
      \item{quality.cc:}{ A list giving the cross-correlation profile after the inclusion of the tags from different quality bins}
      }
  }