expandCigar: Expand cigar codes to GRanges

Description Usage Arguments Value Examples

View source: R/functions_fetch_bam.R

Description

see sam specs for cigar details

Usage

1
2
3
4
5
expandCigar(
  cigar_dt,
  op_2count = c("M", "D", "=", "X"),
  return_data.table = FALSE
)

Arguments

cigar_dt

data.table with 5 required named columns in any order. c("which_label", "seqnames", "strand", "start", "cigar")

op_2count

Cigar codes to count. Default is alignment (M), deletion (D), match (=), and mismatch (X). Other useful codes may be skipped regions for RNA splicing (N). The locations of any insterions (I) or clipping/padding (S, H, or P) will be a single bp immediately before the interval.

return_data.table

if TRUE, a data.table is returned, else a GRanges. Default is FALSE.

Value

data.table with cigar entries expanded

Examples

1
2
3
4
qgr = CTCF_in_10a_overlaps_gr[1:5]
bam_file = system.file("extdata/test.bam", package = "seqsetvis", mustWork = TRUE)
raw_dt = ssvFetchBam(bam_file, qgr, return_unprocessed = TRUE)
expandCigar(raw_dt)

seqsetvis documentation built on Nov. 8, 2020, 5:57 p.m.