getOntoClust: Get clusters of link communities

Description Usage Arguments Value Examples

View source: R/getOntoClust.R

Description

Get clusters of link communities

Usage

1
getOntoClust(lc, minClusterSize = 3, verbose = TRUE)

Arguments

lc

Output of getLC

minClusterSize

Minimum number of members in a cluster. Default is 3.

verbose

Print detailed output. Default is TRUE.

Value

A list object with

mat

Binary matrix. Rows: ontologies, columns: link communities

ontoClust

data.frame with columns of ontology IDs and link communities

dist

Distance matrix of mat

hc

hclust object

Examples

1
2
3
4
5
6
7
## Not run: 
ontology.id <- sample_data$GOBP$ID[1:100]
network <- createOntologyNetwork(ontology.id, method = "jaccard", weighted = FALSE)
lc <- getLC(network)
oc <- getOntoClust(lc)

## End(Not run)

altintasali/ontoClust documentation built on Dec. 19, 2021, 1:36 a.m.