View source: R/fct_network_analysis.R
describe_node | R Documentation |
Targets and regulators of a gene in a network
describe_node(graph, node)
graph |
igraph object |
node |
gene to describe |
list with targets and regulators attributes
data("abiotic_stresses")
data("regulators_per_organism")
mat <- abiotic_stresses$heat_DEGs_regulatory_links
network <- DIANE::network_thresholding(mat, n_edges = 600)
data <- network_data(network, regulators_per_organism[["Arabidopsis thaliana"]])
nodes <- data$nodes[order(-data$nodes$degree),]
gene_of_interest <- nodes$id[1]
DIANE::describe_node(network, node =gene_of_interest)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.