Description Usage Arguments Value Examples
Search for gene sequences available for a species from NCBI.
1 | bmc_search(query, limit = 10, offset = 1, key = NULL, ...)
|
query |
Search terms. |
limit |
Number of records to return. Default 10. |
offset |
Record number to start at. Default: 1 |
... |
curl options passed on to crul::HttpClient |
A list of length 2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
bmc_search(query='ecology')
bmc_search('fire', limit=3)
bmc_search('fire', limit=2, page=1)
bmc_search('fire', limit=2, page=2)
# Search, then get full text
out <- bmc_search('ecology')
(urls <- vapply(out$records$url, "[[", "", 'value'))
browseURL(urls[1])
# curl debugging help
bmc_search('ecology', verbose = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.