Description Usage Arguments Value Author(s) See Also Examples
Merges BAM files based on sample groupings provided by a factor using internally
the mergeBam
function from the Rsamtools
package. The function also returns
an updated SYSargs
or SYSargs2
object containing the paths to the merged BAM files as well as
to the unmerged BAM files if there are any. All rows of merged parent samples are removed.
The functionality provided by mergeBamByFactor
is useful for experiments where
pooling of replicates is advantageous to maximize the depth of read coverage, such as prior to
peak calling in ChIP-Seq or miRNA gene prediction experiments.
1 | mergeBamByFactor(args, mergefactor = "Factor", overwrite = FALSE, silent = FALSE, ...)
|
args |
An instance of |
mergefactor |
|
overwrite |
If |
silent |
If |
... |
To pass on additional arguments to the internally used |
The merged BAM files will be written to output files with the following naming
convention: <first_BAM_file_name>_<grouping_label_of_factor>.<bam>. In
addition, the function returns an updated SYSargs
or SYSargs2
object where all
output file paths contain the paths to the merged BAM files. The rows of the
merged parent samples are removed and the rows of the unmerged samples remain unchanged.
Thomas Girke
writeTargetsout
, writeTargetsRef
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Construct initial SYSargs object
targetspath <- system.file("extdata", "targets_chip.txt", package="systemPipeR")
parampath <- system.file("extdata", "bowtieSE.param", package="systemPipeR")
args <- systemArgs(sysma=parampath, mytargets=targetspath)
## Not run:
## After running alignmets (e.g. with Bowtie2) generate targets file
## for the corresponding BAM files. The alignment step is skipped here.
writeTargetsout(x=args, file="targets_bam.txt", overwrite=TRUE)
args <- systemArgs(sysma=NULL, mytargets="targets_bam.txt")
## Merge BAM files and return updated SYSargs object
args_merge <- mergeBamByFactor(args, overwrite=TRUE, silent=FALSE)
## Export modified targets file
writeTargetsout(x=args_merge, file="targets_mergeBamByFactor.txt", overwrite=TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.