list_db_ids | R Documentation |
Return a vector of all IDs in a database.
list_db_ids(db = "nucleotide", n = 100)
db |
character, database name |
n |
Maximum number of IDs to return, if NULL returns all |
Warning: can return very large vectors for large databases.
vector of characters
Other database:
count_db_ids()
,
db_create()
,
db_delete()
,
db_download()
,
demo_db_create()
,
is_in_db()
library(restez)
restez_path_set(filepath = tempdir())
demo_db_create(n = 5)
# Warning: not recommended for real databases
# with potentially millions of IDs
all_ids <- list_db_ids()
# What shall we do with these IDs?
# ... how about make a mock fasta file
seqs <- gb_sequence_get(id = all_ids)
defs <- gb_definition_get(id = all_ids)
# paste together
fasta_seqs <- paste0('>', defs, '\n', seqs)
fasta_file <- paste0(fasta_seqs, collapse = '\n')
cat(fasta_file)
# delete after example
db_delete(everything = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.