PeakCallingFseq | R Documentation |
Use F-seq to call peak
atacPeakCalling( atacProc, bedInput = NULL, background = NULL, genomicReadsCount = NULL, fragmentSize = 0, featureLength = NULL, bedOutput = NULL, ploidyDir = NULL, fileformat = c("bed", "wig", "npf"), wiggleTrackStep = NULL, threshold = NULL, verbose = TRUE, wgThresholdSet = NULL, ... ) ## S4 method for signature 'ATACProc' atacPeakCalling( atacProc, bedInput = NULL, background = NULL, genomicReadsCount = NULL, fragmentSize = 0, featureLength = NULL, bedOutput = NULL, ploidyDir = NULL, fileformat = c("bed", "wig", "npf"), wiggleTrackStep = NULL, threshold = NULL, verbose = TRUE, wgThresholdSet = NULL, ... ) peakCalling( bedInput, background = NULL, genomicReadsCount = NULL, fragmentSize = 0, featureLength = NULL, bedOutput = NULL, ploidyDir = NULL, fileformat = c("bed", "wig", "npf"), wiggleTrackStep = NULL, threshold = NULL, verbose = TRUE, wgThresholdSet = NULL, ... )
atacProc |
|
bedInput |
|
background |
|
genomicReadsCount |
|
fragmentSize |
|
featureLength |
|
bedOutput |
|
ploidyDir |
|
fileformat |
|
wiggleTrackStep |
|
threshold |
|
verbose |
|
wgThresholdSet |
|
... |
Additional arguments, currently unused. |
The parameter related to input and output file path
will be automatically
obtained from ATACProc-class
object(atacProc
) or
generated based on known parameters
if their values are default(e.g. NULL
).
Otherwise, the generated values will be overwrited.
If you want to use this function independently,
you can use peakCalling
instead.
An invisible ATACProc-class
object scalar for downstream analysis.
Zheng Wei
atacSamToBed
samToBed
atacBedUtils
bedUtils
library(R.utils) library(magrittr) td <- tempdir() setTmpDir(td) bedbzfile <- system.file(package="esATAC", "extdata", "chr20.50000.bed.bz2") bedfile <- file.path(td,"chr20.50000.bed") bunzip2(bedbzfile,destname=bedfile,overwrite=TRUE,remove=FALSE) bedUtils(bedInput = bedfile,maxFragLen = 100, chrFilterList = NULL) %>% atacPeakCalling dir(td)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.