Usage
CPsites(coverage, groupList=NULL, genome, utr3, window_size=100, search_point_START=50, search_point_END=NA, cutStart=window_size, cutEnd=0, adjust_distal_polyA_end=TRUE, coverage_threshold=5, long_coverage_threshold=2, background=c("same_as_long_coverage_threshold", "1K", "5K", "10K", "50K"), txdb=NA, gcCompensation=NA, mappabilityCompensation=NA, FFT=FALSE, fft.sm.power=20, PolyA_PWM=NA, classifier=NA, classifier_cutoff=.8, shift_range=window_size, BPPARAM=NULL, tmpfolder=NULL, silence=TRUE)
Arguments
groupList
group list of tag names
window_size
window size for noval distal position searching and
adjusted polyA searching, default: 100
search_point_START
start point for searching
search_point_END
end point for searching
cutStart
how many nucleotides should be removed from the start
before search, 0.1 means 10 percent, 25 means cut first 25.
cutEnd
how many nucleotides should be removed from the end before
search, 0.1 means 10 percent.
coverage_threshold
cutoff coverage threshold for first 100
nucleotides. If the coverage of first 100 nucleotides is lower than
coverage_threshold, that transcript will be dropped.
long_coverage_threshold
cutoff threshold for coverage in the region
of long form. If the coverage in the region of long form is less than
long_coverage_threshold, that transcript will be dropped.
background
the range for calculating cutoff threshold of local background
gcCompensation
GC content compensation vector
mappabilityCompensation
mappability compensation vector
FFT
use Fast Fourier Transform Algorithm to smooth the data or not.
default: FALSE
fft.sm.power
if FFT is TRUE, the frequency should be removed
PolyA_PWM
Position Weight Matrix of polyA
classifier_cutoff
This is the cutoff used to assign whether a
putative pA is true or false.
This can be any floating point number between 0 and 1. For example,
classifier_cutoff = 0.5 will assign an
putative pA site with prob.1 > 0.5 to the True class (1),
and any putative pA site with prob.1
shift_range
the shift range for polyA site searching
BPPARAM
An optional BiocParallelParam
instance determining the parallel back-end to be used during
evaluation, or a list of BiocParallelParam instances, to be applied
in sequence for nested calls to bplapply. tmpfolder
temp folder could save and reload the analysis data for
resume analysis.
silence
report progress or not. default not report.