View source: R/stringdb_functions.R
search_string_db | R Documentation |
Search the STRING database for protein interactions.
search_string_db(
genes_list,
species = 9606,
network_type = "full",
score_threshold = 400
)
genes_list |
A list of gene IDs. |
species |
The NCBI taxon ID of the species. Defaults to 9606 (Homo sapiens). |
network_type |
The type of network to use, either "full" or "physical". Defaults to "full". |
score_threshold |
The minimum score threshold for string interactions. Defaults to 400. |
A list containing the following elements:
A data frame with STRING interaction metrics.
The STRINGdb object used.
The STRING IDs for the input genes.
## Not run:
library(STRINGdb)
genes <- c("TP53", "BRCA1")
results <- search_string_db(genes)
print(results)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.