An R client for STRING API
Provide a set of functions to interact with the STRING API in R. The functions are organized a round the API database and request/method types. The query parameters are checked and the output is returned in a tibble
.
The package can be installed using devtools
devtools::install_github('abifromr/stringapi')
A simple example to show how the package works is to contrast with an example query using curl
curl https://string-db.org/api/tsv/get_string_ids?identifiers=p53%0dcdk2&species=9606
This would look like the following using stringapi
get_string_ids(identifiers = c('p53', 'dcdk2'),
species = 9606)