View source: R/amplicon-utils.R
ampliconParams | R Documentation |
Lists germline filters and parameters for filtering amplicons
ampliconParams(
AMP_THR = log2(2.75),
LOW_THR = log2(1.75),
border_size = 10000,
overhang = 25000,
MIN_WIDTH = 2000,
MIN_SEGMEAN_DIFF = 0.05,
min.gapwidth = 3000,
maxgap = 5e+05,
frequency = 5,
minimum_maxdist = 50,
minimum_count = 5,
bad_bins = GRanges()
)
AMP_THR |
numeric threshold for high copy amplicon |
LOW_THR |
numeric a lower threshold used when considering amplicons that are bridged by improper read pairs to a high copy amplicon |
border_size |
used to construct a query (GRanges object) for additional amplicons neighboring a focal amplicon. TODO: more detail needed. |
overhang |
An integer indicating how much to expand the
germline filter on each size. Using |
MIN_WIDTH |
length-one integer vector indicating the minimum size of amplicon (see also |
MIN_SEGMEAN_DIFF |
length-one numeric vector. Adjacent segments whose means differ by less than this value are candidates for merging by |
min.gapwidth |
length-one numeric vector passed to the |
maxgap |
length-one numeric vector. Passed to |
frequency |
minimum number of read pairs |
minimum_maxdist |
TODO |
minimum_count |
a length-one integer vector: minimum number of improperly paired reads required to link two amplicons |
bad_bins |
a |
Returns a list of germline filters and some of the hard thresholds used in the amplicon analysis.
params <- ampliconParams("hg19")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.