FastQC | R Documentation |
Generate quality control plots from fastq of ATAC-seq data.
atacQCReport(atacProc, input_file = NULL, output_file = NULL, ...) ## S4 method for signature 'ATACProc' atacQCReport(atacProc, input_file = NULL, output_file = NULL, ...) qcreport(input_file, output_file = NULL, ...)
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
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.