Description Usage Arguments Value Examples
Extract the network as edge list from the gnet result. For a module, each regulator and downstream gene will form a directed edge.
1 | extract_edges(gnet_result)
|
gnet_result |
Returned results from gnet(). |
A matrix of scores of for the regulator-target interaction.
1 2 3 4 5 6 7 8 9 10 | set.seed(1)
init_group_num = 8
init_method = 'kmeans'
exp_data <- matrix(rnorm(50*10),50,10)
reg_names <- paste0('TF',1:5)
rownames(exp_data) <- c(reg_names,paste0('gene',1:(nrow(exp_data)-length(reg_names))))
colnames(exp_data) <- paste0('condition_',1:ncol(exp_data))
se <- SummarizedExperiment::SummarizedExperiment(assays=list(counts=exp_data))
gnet_result <- gnet(se,reg_names,init_method,init_group_num)
edge_list <- extract_edges(gnet_result)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.