Description Usage Arguments Value Author(s) See Also Examples
Unzip and merge fastq files that are in format of bzip, gzip or fastq
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
fastqInput1 |
|
fastqInput2 |
|
fastqOutput1 |
|
fastqOutput2 |
|
interleave |
|
... |
Additional arguments, currently unused. |
An invisible ATACProc-class
object scalar for downstream analysis.
Zheng Wei
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ignoreCheck() # warnning: run this for fast test only
td<-tempdir()
setTmpDir(td)
# Identify adapters
prefix<-system.file(package="esATAC", "extdata", "uzmg")
(reads_1 <-file.path(prefix,"m1",dir(file.path(prefix,"m1"))))
(reads_2 <-file.path(prefix,"m2",dir(file.path(prefix,"m2"))))
reads_merged_1 <- file.path(td,"reads_1.fq")
reads_merged_2 <- file.path(td,"reads_2.fq")
atacproc <- atacUnzipAndMerge(fastqInput1 = reads_1,fastqInput2 = reads_2)
dir(td)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.