Description Usage Arguments Details Value Author(s) See Also Examples
Use F-seq to call peak
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 | 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
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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.