analyzeDuprates.Rd
analyzeDuprates
returns a data.frame with tag counts
analyzeDuprates(
bam,
gtf,
stranded = 0,
paired = FALSE,
threads = 1,
verbose = FALSE,
...
)
The bam file containing the duplicate-marked reads
The gtf file describing the features
Whether the reads are strand specific
Paired end experiment?
The number of threads to be used for counting
Whether to output Rsubread messages into the console
Other params sent to featureCounts
A data.frame with counts on features, with and without taking into account multimappers/duplicated reads
This function makes use of the Rsubread package to count tags on the GTF features in different scenarios. The scenarios are the 4 possible combinations of allowing multimappers (yes/no) and duplicate reads (yes/no).
bam <- system.file("extdata",
"wgEncodeCaltechRnaSeqGm12878R1x75dAlignsRep2V2_duprm.bam",
package="dupRadar")
gtf <- system.file("extdata","genes.gtf",package="dupRadar")
stranded <- 2 # '0' (unstranded), '1' (stranded) and '2' (reverse)
paired <- FALSE
threads <- 4
# call the duplicate marker and analyze the reads
dm <- analyzeDuprates(bam,gtf,stranded,paired,threads)