- seed_proteins
user defined seed proteins
- g
igraph network object.
- use_ppi
bool, should g be a protein-protein interaction network? If
false, user must provide an igraph object in g
- ppi
character string describing the ppi to use: currently only "stringdb" and "biogrid" are supported.
- species
character string describing the species of interest.
For a list of supported species, see supported_species
.
Non human species are only compatible with "stringdb"
- n
number of random walks with repeats to create null distribution
- union
bool, should we take the union of string db and biogrid to compute the PPI? Only applicable for the human PPI
- intersection
bool, should we take the intersection of string db and biogrid to compute the PPI? Only applicable for the human PPI
- gamma
restart probability
- eps
maximum allowed difference between the computed probabilities at the steady state
- tmax
the maximum number of iterations for the RWR
- norm
if True, w is normalized by dividing each value by the column sum.
- set_seed
integer to set random number seed - for reproducibility
- cache
A filepath to a folder downloaded files should be stored
- min_score
minimum connectivity score for each edge in the network.
- seed_name
Name to give the cached ngull distribution - must be a character string
- ncores
Number of cores to use - defaults to 1. Significant speedup can be achieved by using multiple cores for computation.
- significance_level
user-defined signficance level for hypothesis testing
- p_adjust
adjustment method to correct for multiple hypothesis testing:
defaults to "holm". see p.adjust.methods
for other potential
adjustment methods.
- agg_int
number of runs before we need to aggregate the results - necessary to save memory. set at lower numbers to save even more memory.
- return_g
bool, should we return the graph used? mostly for internal use