Description Usage Arguments Value Author(s) See Also Examples
The preset pipeline to process multi-replicates case study sequencing data. HTML report files, result files(e.g. BED, BAM files) and conclusion list will generated. See detail for usage.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
genome |
|
fastqInput1 |
|
fastqInput2 |
|
refdir |
|
tmpdir |
|
threads |
|
adapter1 |
|
adapter2 |
|
interleave |
|
createReport |
|
motifs |
either |
prefix |
|
chr |
Which chromatin the program will processing. It must be identical with the filename of cut site information files or subset of . Default:c(1:22, "X", "Y"). |
p.cutoff |
p-value cutoff for returning motifs, default: 1e-6. |
... |
Additional arguments, currently unused. |
List
scalar. It is a list that save the result of the pipeline.
Slot "filelist": the input file paths.
Slot "wholesummary": a dataframe that for quality control summary
Slot "atacProcs": ATACProc-class
objects generated by each process in the pipeline.
Slot "filtstat": a dataframe that summary the reads filted in each process.
Zheng Wei and Wei Zhang
printMap
,
atacPipe2
,
atacRenamer
,
atacRemoveAdapter
,
atacBowtie2Mapping
,
atacPeakCalling
,
atacMotifScan
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 | ## Not run:
## These codes are time consuming so they will not be run and
## checked by bioconductor checker.
# call pipeline
# for a quick example(only CTCF and BATF3 will be processing)
conclusion <-
atacRepsPipe(
# MODIFY: Change these paths to your own case files!
# e.g. fastqInput1 = "your/own/data/path.fastq"
fastqInput1 = list(system.file(package="esATAC", "extdata", "chr20_1.1.fq.gz"),
system.file(package="esATAC", "extdata", "chr20_1.2.fq.bz2")),
fastqInput2 = list(system.file(package="esATAC", "extdata", "chr20_2.1.fq.gz"),
system.file(package="esATAC", "extdata", "chr20_2.2.fq.bz2")),
# MODIFY: Set the genome for your data
genome = "hg19",
motifs = getMotifInfo(motif.file = system.file("extdata", "CustomizedMotif.txt", package="esATAC")))
# call pipeline
# for overall example(all vertebrates motif in JASPAR will be processed)
conclusion <-
atacRepsPipe(
# MODIFY: Change these paths to your own case files!
# e.g. fastqInput1 = "your/own/data/path.fastq"
fastqInput1 = list(system.file(package="esATAC", "extdata", "chr20_1.1.fq.gz"),
system.file(package="esATAC", "extdata", "chr20_1.2.fq.bz2")),
fastqInput2 = list(system.file(package="esATAC", "extdata", "chr20_2.1.fq.gz"),
system.file(package="esATAC", "extdata", "chr20_2.2.fq.bz2")),
# MODIFY: Set the genome for your data
genome = "hg19")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.