View source: R/MCL_clustering.R
MCL_clustering | R Documentation |
This function applies MCL clustering to further refine the predicted subnetworks produced by ClusterONE.
MCL_clustering(hc_ppi, predcpx, inflation = 9, csize = 2)
hc_ppi |
High-confidence interactions data containing id1-id2-weight triplets. |
predcpx |
A data.frame containing predicted complexes resulted from
|
inflation |
MCL inflation parameter. Defaults to 9. |
csize |
An integer, the minimum size of the predicted complexes. Defaults to 2. |
MCL_clustering
List of refined complexes.
Matineh Rahmatbakhsh
# open high-confidence network hc_ppi <- read.delim( system.file("extdata/ppi_input_ClusterONE.txt", package = "MACP"), header = FALSE) # predict complexes by ClusterONE predcpx <- get_clusters(csize = 3, d = 0.3, p = 2, max_overlap = 0.8, tpath = file.path(system.file("extdata", package = "MACP"))) # Break down big complexes by MCL MCL_clusters <- MCL_clustering(hc_ppi, predcpx, inflation = 4, csize = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.