Skip to contents

Format and pretty-print SSW forced alignment results without truncation

Usage

formatter(x, print = FALSE)

Arguments

x

An object of class ssw containing the forced alignment results.

print

Pretty-print the results? Default is FALSE.

Value

The formatted forced alignment results.

Examples

if (FALSE) { # is_installed_ssw_py()
a <- force_align("ACTG", "TTTTCTGCCCCCACG")
b <- a |> formatter()
b
a |> formatter(print = TRUE)
}