Description Usage Arguments Details Value Author(s) See Also Examples
Import and process peak list and aligned read files.
1 2 |
peakfile |
File name of the peak list. |
readfile |
Name of the aligned read file. |
fileFormat |
Format of the aligned read file to be processed.
For single-end tag (SET) ChIP-seq data,
|
PET |
Is the aligned read file paired-end tag (PET)?
Possible values are either |
fragLen |
Average fragment length. Default is 200. Not relevant when |
parallel |
Utilize multiple CPUs for parallel computing
using |
nCore |
Number of CPUs when parallel computing is utilized. |
tempDir |
Directory to store temporary files. If |
perl |
Name of the perl executable to be called. Default is |
The first three columns of the peak list file (specifed as peakfile
)
are assumed to be chromosome, start and end positions of each peak region.
There should be no header in the peak list file.
When the data contains multiple chromosomes,
parallel computing can be utilized for faster preprocessing
if parallel=TRUE
and parallel
package is installed.
nCore
determines number of CPUs used for parallel computing.
Construct DpeakData
class object.
Dongjun Chung
1 2 3 4 5 6 7 8 9 10 11 | # PET data
# dataPET <- dpeakRead( peakfile="examplePeak.txt", readfile="examplePETRead.txt",
# fileFormat="eland_result", PET=TRUE )
# SET data
# dataSET <- dpeakRead( peakfile="examplePeak.txt", readfile="exampleSETRead.txt",
# fileFormat="eland_result", PET=FALSE, fragLen=150 )
data(exampleData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.