Description Usage Arguments Details Value Author(s) See Also Examples
Generate quality control plots from fastq of ATAC-seq data.
1 2 3 4 5 6 |
atacProc |
|
input_file |
|
output_file |
|
... |
Additional arguments, currently unused. |
Every highthroughput sequencing need quality control analysis, this function provide QC for ATAC-seq, such as GC content.
An invisible ATACProc-class
object scalar for downstream
analysis.
Wei Zhang
atacUnzipAndMerge
,
atacRenamer
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(R.utils)
fra_path <- system.file("extdata", "chr20_1.2.fq.bz2", package="esATAC")
fq1 <- as.vector(bunzip2(filename = fra_path,
destname = file.path(getwd(), "chr20_1.fq"),
ext="bz2", FUN=bzfile, overwrite=TRUE, remove = FALSE))
fra_path <- system.file("extdata", "chr20_2.2.fq.bz2", package="esATAC")
fq2 <- as.vector(bunzip2(filename = fra_path,
destname = file.path(getwd(), "chr20_2.fq"),
ext="bz2", FUN=bzfile, overwrite=TRUE, remove = FALSE))
## Not run:
qcreport(input_file = c(fq1, fq2))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.