Description Usage Arguments Details Value Author(s) See Also Examples
Calculate the fraction of reads falling within peak regions
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | atacFripQC(
atacProc,
atacProcPeak = NULL,
bsgenome = NULL,
reportOutput = NULL,
readsBedInput = NULL,
peakBedInput = NULL,
...
)
## S4 method for signature 'ATACProc'
atacFripQC(
atacProc,
atacProcPeak = NULL,
bsgenome = NULL,
reportOutput = NULL,
readsBedInput = NULL,
peakBedInput = NULL,
...
)
fripQC(readsBedInput, peakBedInput, bsgenome = NULL, reportOutput = NULL, ...)
|
atacProc |
|
atacProcPeak |
|
bsgenome |
|
reportOutput |
|
readsBedInput |
|
peakBedInput |
|
... |
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,
or you can use fripQC
instead.
An invisible fripQC
object scalar for downstream analysis.
Zheng Wei
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library(R.utils)
library(BSgenome.Hsapiens.UCSC.hg19)
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 %>% atacFripQC(bsgenome=BSgenome.Hsapiens.UCSC.hg19)
dir(td)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.