Description Usage Arguments Examples
The output is a S4 class.
1 2 3 4 5 6 | predictNextNucleotide(
sequence,
model,
vocabulary = c("l", "a", "c", "g", "t"),
verbose = F
)
|
sequence |
input sequence, length should be in sync with the model. If length exceeds input.shape of model then only the right side of the sequence will be used. |
model |
trained model from the function |
vocabulary |
vocabulary of input sequence |
verbose |
TRUE/FALSE |
1 2 3 4 5 | ## Not run:
example.model <- keras::load_model_hdf5("example_model.hdf5")
sequence <- strrep("A", 100)
predictNextNucleotide(sequence, example.model)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.