Returns a data frame with three columns: signature, a Boolean value indicating whether the motifs are directed, the number of levels which the motif spans across

supported_signatures()

Value

data frame with all supported signatures

See also

Examples

# \dontrun{ supported_signatures()
#> signature directed n_levels #> 1 1,1 TRUE 2 #> 2 1,2 TRUE 2 #> 3 1 TRUE 1 #> 4 2,2 TRUE 2 #> 5 2 TRUE 1 #> 6 1,1,1 FALSE 3 #> 7 1,1 FALSE 2 #> 8 1,2,1 FALSE 3 #> 9 1 FALSE 1 #> 10 2,2,1 FALSE 3 #> 11 2,2,2 FALSE 3 #> 12 2 FALSE 1 #> 13 1,2 FALSE 2 #> 14 3 FALSE 1 #> 15 2,2 FALSE 2
# }