View source: R/db-setup-tools.R
demo_db_create | R Documentation |
Creates a local mock SQL database from package test data for demonstration purposes. No internet connection required.
demo_db_create(db_type = "nucleotide", n = 100)
db_type |
character, database type |
n |
integer, number of mock sequences |
Other database:
count_db_ids()
,
db_create()
,
db_delete()
,
db_download()
,
is_in_db()
,
list_db_ids()
library(restez)
# set the restez path to a temporary dir
restez_path_set(filepath = tempdir())
# create demo database
demo_db_create(n = 5)
# in the demo, IDs are 'demo_1', 'demo_2' ...
(gb_sequence_get(id = 'demo_1'))
# Delete a demo database after an example
db_delete(everything = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.