mergeBamByFactor | R Documentation |
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. When a named
character vector
is provided as input, a data.frame
with a target
containing the paths to the merged BAM files as output.
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.
mergeBamByFactor(args, targetsDF = NULL, mergefactor = "Factor",
out_dir = file.path("results", "merge_bam"),
overwrite = FALSE, silent = FALSE, ...)
args |
An instance of |
targetsDF |
This argument is required when |
mergefactor |
|
out_dir |
The directory path to store merged bam files. Default uses |
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.
When a named character vector
is provided as input, a data.frame
with a target containing the paths to the merged BAM files as output.
The rows of the merged parent samples are removed and the rows of the unmerged
samples remain unchanged.
Thomas Girke
writeTargetsout
, writeTargetsRef
## 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.