Description Usage Arguments Value
View source: R/centrality_pipeline.R
Given a dataframe of differential gene expression results and a set
of parameters, 'centrality_pipeline()
' will generate network of the most
important genes, ranked by the specified centrality measure.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
deg |
Object of class ' |
edge_conf_score_min |
Numeric. A The minimum confidence score between edges in the STRING protein-protein interaction network. |
logFC_min |
Numeric. The minimum log2 fold-change value for a gene to be included in the final network. |
pvalue_max |
Numeric. The maximum p-value value for a gene to be included in the final network. |
method |
A string. One of the following centrality methods:
|
causal_gene_symbol |
A string. The gene symbol associated with the causal gene. |
export_network |
Logical. If TRUE, the network object will be returned. |
export_dir |
String. If export_network = TRUE, the network object will be saved using the file path provided in export_dir. |
sim_method |
A string. The method for calculating the similarity between each gene in the final network and the causal gene. One of the following: #'
|
n_sim |
Numeric. The number of simulations passed to |
A list of length 4:
Object of class 'igraph
'. The network of important genes.
An annotated dataframe of genes ranked by centrality method.
The mean score of the network, which is equal to the average similarity score between each node in the network and the causal gene.
The p-value associated with the mean_score
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.