get_clusters | R Documentation |
This function partitions high-confidence network to putative complexes via ClusterONE clustering algorithm to identify protein complex membership.
get_clusters( csize = 2, d = 0.3, p = 2, max_overlap = 0.8, tpath = file.path(system.file("extdata", package = "MACP")) )
csize |
An integer, the minimum size of the predicted complexes. Defaults to 2. |
d |
A number, density of predicted complexes. Defaults to 0.3. |
p |
An integer, penalty value for the inclusion of each node. Defaults to 2. |
max_overlap |
A number, specifies the maximum allowed overlap between two clusters. Defaults to 0.8. |
tpath |
A character string indicating the path to the project directory that contains the interaction data. Interactions data must be stored as .txt file and containing id1-id2-weight triplets. |
get_clusters
A data.frame containing predicted complexes
Matineh Rahmatbakhsh, matinerb.94@gmail.com
Nepusz, T., Yu, H., and Paccanaro, A. (2012a). Detecting overlapping protein complexes in protein-protein interaction networks. Nat. Methods 9, 471.
predcpx <- get_clusters(csize = 3, d = 0.3, p = 2, max_overlap = 0.8, tpath = file.path(system.file("extdata", package = "MACP")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.