Description Usage Arguments Value Examples
View source: R/generate_sequences.R
function validates if given motifs can be injected to a sequence of given length
1 | validate_motifs(motifs, sequence_length)
|
motifs |
list of motifs we are checking |
sequence_length |
length of sequence we want to inject |
logical value if such injection is possible
1 2 3 4 | set.seed(42)
motifs <- generate_motifs(1:4, 3, d = 3)
validate_motifs(motifs, 7)
validate_motifs(motifs, 9)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.