Learn R Programming

CNEr (version 1.8.3)

reverseCigar: reverseCigar function

Description

This function reverses the cigar string, i.e., 20M15I10D will be reversed to 10D15I20M.

Usage

reverseCigar(cigar, ops=CIGAR_OPS)

Arguments

cigar
A character vector of cigar strings.
ops
A character vector of the extended CIGAR operations. By default, CIGAR_OPS is used.

Value

A character vector contains the revered cigar strings.

See Also

cigar-utils

Examples

Run this code
  cigar = c("20M15I10D", "10D15I20M")
  reverseCigar(cigar)

Run the code above in your browser using DataLab