Learn R Programming

ssviz (version 1.6.2)

readBam: readBam

Description

Reads a bam file through RSamtools, and converts it into a data frame of class DataFrame

Usage

readBam(file_name, tags = character(0))

Arguments

file_name
Character string of bam file location
tags
Bam tags to import into the data frame. By default it only takes the standard values if none are given.

Value

  • Returns the bam file contents in a readable dataframe format.

Details

This function formalizes what had been described in the RSamtools documentation and makes it easier to compute the downstream functions in this package.

References

RSamtools package

Examples

Run this code
bam.files <- dir(system.file("extdata", package = "ssviz"), full = TRUE, patt = "bam$")
ctrlbam <- readBam(bam.files[1])

Run the code above in your browser using DataLab