Description Usage Arguments Value Examples
This function is able to use a list of Transcription Factors(TF) of interest to source the Protein-Protein interactions (PPI)in STRING database
1 | sourcePPI(TF, species.index, score_threshold = 0)
|
TF |
Data frame with one column indicating the TF of interest |
species.index |
Numeric vector indicating NCBI taxonomy identifiers |
score_threshold |
Numeric vector indicating the threshold for the combined scores of the interactions.Default to 0. |
A PPI data frame
1 2 3 4 5 6 7 8 | # the example motif file
motif_file_path <- system.file("extdata", "chip.txt", package = "netZoo", mustWork = TRUE)
motif <- read.table(motif_file_path, sep="\t")
# create a TF data frame with one column
TF <- motif[,1]
# create PPI data frame
PPI <- sourcePPI(TF,species.index=83332, score_streshold=0)
# write locally then use in \code{\link{runPanda}}.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.