netclu_oslom {bioregion} | R Documentation |
This function finds communities in a (un)weighted (un)directed network based on the OSLOM algorithm (http://oslom.org/, version 2.4).
netclu_oslom(
net,
weight = TRUE,
index = names(net)[3],
reassign = "no",
r = 10,
hr = 50,
seed = 0,
t = 0.1,
cp = 0.5,
directed = FALSE,
bipartite = FALSE,
site_col = 1,
species_col = 2,
return_node_type = "both",
binpath = "tempdir",
path_temp = "oslom_temp",
delete_temp = TRUE
)
net |
the output object from |
weight |
a |
index |
name or number of the column to use as weight. By default,
the third column name of |
reassign |
a string indicating if the nodes belonging to several community should be reassign and what method should be used (see Note). |
r |
the number of runs for the first hierarchical level (10 by default). |
hr |
the number of runs for the higher hierarchical level (50 by default, 0 if you are not interested in hierarchies). |
seed |
for the random number generator (0 for random by default). |
t |
the p-value, the default value is 0.10, increase this value you to get more modules. |
cp |
kind of resolution parameter used to decide between taking some modules or their union (default value is 0.5, bigger value leads to bigger clusters). |
directed |
a |
bipartite |
a |
site_col |
name or number for the column of site nodes (i.e. primary nodes). |
species_col |
name or number for the column of species nodes (i.e. feature nodes). |
return_node_type |
a |
binpath |
a |
path_temp |
a |
delete_temp |
a |
OSLOM is a network community detection algorithm proposed in (Lancichinetti et al. 2011) that finds statistically significant (overlapping) communities in (un)weighted and (un)directed networks.
This function is based on the 2.4 C++ version of OSLOM (http://www.oslom.org/software.htm). This function needs files to run. They can be installed with install_binaries.
If you changed the default path to the bin
folder
while running install_binaries PLEASE MAKE SURE to set binpath
accordingly.
The C++ version of OSLOM generates temporary folders and/or files that are
stored in the path_temp
folder (folder "oslom_temp" with an unique timestamp
located in the bin folder in binpath
by default). This temporary folder is
removed by default (delete_temp = TRUE
).
A list
of class bioregion.clusters
with five slots:
name: character string
containing the name of the algorithm
args: list
of input arguments as provided by the user
inputs: list
of characteristics of the clustering process
algorithm: list
of all objects associated with the
clustering procedure, such as original cluster objects
clusters: data.frame
containing the clustering results
In the algorithm
slot, users can find the following elements:
cmd
: the command line use to run OSLOM
version
: the OSLOM version
web
: the OSLOM's web site
Although this algorithm was not primarily designed to deal with bipartite
network, it is possible to consider the bipartite network as unipartite
network (bipartite = TRUE
). Do not forget to indicate which of the
first two columns is dedicated to the site nodes (i.e. primary nodes) and
species nodes (i.e.feature nodes) using the arguments site_col
and
species_col
. The type of nodes returned in the output can be chosen
with the argument return_node_type
equal to "both"
to keep both
types of nodes, "sites"
to preserve only the sites nodes and
"species"
to preserve only the species nodes.
Since OSLOM potentially returns overlapping communities we propose two
methods to reassign the 'overlapping' nodes randomly reassign = 'random'
or based on the closest candidate community reassign = 'simil'
(only for
weighted networks, in this case the closest candidate community is
determined with the average similarity). By default reassign = 'no'
and
all the information will be provided. The number of partitions will depend
on the number of overlapping modules (up to three). The suffix '_semel',
'_bis' and '_ter' are added to the column names. The first partition
('_semel') assigns a module for each node. A value of 0 in the second
('_bis') and third ('_ter') columns indicates that no overlapping module
were found for this node (i.e. non-overlapping nodes).
Maxime Lenormand (maxime.lenormand@inrae.fr), Pierre Denelle (pierre.denelle@gmail.com) and Boris Leroy (leroy.boris@gmail.com)
Lancichinetti A, Radicchi F, Ramasco JJ, Fortunato S (2011). “Finding statistically significant communities in networks.” PloS one, 6(4).
install_binaries()
, netclu_infomap()
, netclu_louvain()
comat <- matrix(sample(1000, 50), 5, 10)
rownames(comat) <- paste0("Site", 1:5)
colnames(comat) <- paste0("Species", 1:10)
net <- similarity(comat, metric = "Simpson")
com <- netclu_oslom(net)