Description Usage Arguments Details Value Author(s)
View source: R/removeDupReads.R
Remove reads which are mapped to identical locations, using mapping location of the first base of each read.
1 2 3 4 5 6 7 | removeDupReads(
# basic input/output options
inputFile,
threshold = 50,
outputFile,
outputFormat = "BAM")
|
inputFile |
a character string giving the name of a SAM or BAM format input file. |
threshold |
a numeric value giving the threshold for removing duplicated reads, 50 by default. Reads will be removed if they are found to be duplicated equal to or more than |
outputFile |
a character string giving the base name of output files. |
outputFormat |
a character string giving the format of the output file. |
This function uses the mapping location of first base of each read to find duplicated reads.
Reads are removed if they are duplicated more than threshold
number of times.
This function generates a BAM or SAM file including the remaining reads after duplicate removal.
Yang Liao and Wei Shi
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.