propmapped: Calculate the Proportion of Mapped Reads or Fragments in...

Description Usage Arguments Details Value Author(s) Examples

View source: R/propmapped.R

Description

Number of mapped reads/fragments will be counted and fraction of such reads/fragments will be calculated.

Usage

1
2
3
4
5
6
propmapped(

    files,
    countFragments = TRUE,
    properlyPaired = FALSE,
    verbose = FALSE)

Arguments

files

a character vector giving the names of SAM/BAM format files. Format of input files is automatically determined by the function.

countFragments

logical indicating whether reads or fragments (read pairs) should be counted. If TRUE, fragments will be counted when paired-end read data are provided. This function automatically detects if the data are single end or paired end. For single end data, each read is treated as a fragment and therefore the value of this parameter should be set to TRUE.

properlyPaired

logical indicating if only properly paired reads will be counted. This is only applicable for paired end data. FALSE by default.

verbose

logical indicating if verbose information should be displayed.

Details

This function uses the FLAG field in the SAM/BAM to look for mapped reads and count them. Reads/fragments, which have more than one reported location, will be reported only once.

When counting single end reads, counting reads has the same meaning as counting fragments (the results are identical).

Note that align and subjunc return the same mapping statistics as propmapped as a by-product of the alignment process, so saving the output from align or subjunc will be faster and more informative than running propmapped separately.

Value

A data frame containing the total number of reads, number of mapped reads and proportion of mapped reads for each library.

Author(s)

Wei Shi and Yang Liao

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
# build an index using the sample reference sequence provided in the package
# and save it to the current directory
ref <- system.file("extdata","reference.fa",package="Rsubread")
buildindex(basename="./reference_index",reference=ref)

# align the sample read data provided in this package to the sample reference
# and save the mapping results to the current directory
reads <- system.file("extdata","reads.txt.gz",package="Rsubread")
stat <- align(index="./reference_index",readfile1=reads,output_file="./Rsubread_alignment.BAM")
stat

# get the percentage of successfully mapped reads
propmapped("./Rsubread_alignment.BAM")

Rsubread documentation built on March 17, 2021, 6:01 p.m.