Skip to main content

python-oslom-runner

An OSLOM Runner for Python. OSLOM stands for Order Statistics Local Optimization Method and it's a clustering algorithm designed for networks.

You can obtain a copy of OSLOM from: http://www.oslom.org/

More information on OSLOM can be found in the following publication:

Lancichinetti, Andrea, et al. "Finding Statistically Significant Communities in Networks." PloS one 6.4 (2011): e18961.

Installation

You can use pip (or any PyPi-compatible package manager) for installation:

pip install oslom-runner

or, if you prefer a local user installation:

pip install --user oslom-runner

Usage

First, make sure you have a working copy of OSLOM installed. OSLOM version 2 is strongly recommended as it is faster with very similar clustering performance.

To use this runner you will need an input file with network edges in the same format OSLOM expects (source, target, weight).

The fields in this file must be TAB separated. For example:

100 \t 200 \t 1
200 \t 500 \t 1
100 \t 500 \t 8

NOTE: OSLOM only supports 32-bits signed integers for node identifiers, however this runner supports string-based identifiers that are automatically re-mapped to the supported integers before calling OSLOM. Therefore, the number of unique string identifiers is still limited to 2^31 - 1. An example edges file with string identifiers can be seen below:

NodeA \t NodeB \t 1
NodeB \t NodeC \t 1
NodeA \t NodeC \t 8

You can then run OSLOM over the network using the following command:

oslom-runner --edges myedges.tsv \
    --output-clusters clusters.json \
    --oslom-output oslom-files

After execution you will get a JSON formatted file with the clusters found by OSLOM from the provided network edges file.

This OSLOM Runner supports the following command line options:

  • --edges: the network edges file in TSV (Tab-separated values) format.
  • --output-clusters: the found clusters output file in JSON format.
  • --oslom-output: the output directory to put resulting OSLOM files.
  • --min-cluster-size: the minimum cluster size for filtering after running OSLOM. Default: 0.
  • --oslom-exec: the path (absolute or relative) to the OSLOM executable to invoke. Default: oslom_dir. You can use OSLOM in directed or undirected mode. See the OSLOM documentation for more information.

Finally, you can also pass custom OSLOM arguments (with the exception of the -f option!) after all options to the runner using the following command:

oslom-runner --edges myedges.tsv \
    --output-clusters clusters.json \
    --oslom-output oslom-files \
    --oslom-exec /opt/oslom/oslom2_dir \
    -- -hr 1 -r 1

Please note the usage of double dashes (--) to separate the runner's own arguments from the OSLOM native ones.

The default arguments used for OSLOM are -w -r 10 -hr 10, which sets the usage of a weighted network and 10 computation iterations for first and higher hierarchical levels respectively.

When you pass your own OSLOM arguments, none of the default options will be used. You should NEVER give the -f option because the runner automatically fills the value for it accordingly.

Using Programatically

This OSLOM Runner can be used programatically inside your own Python scripts as well.

There are two main functions to run OSLOM, both using nearly the same arguments:

  • run(): reads input edges and writes output clusters directly on disk. Also outputs OSLOM auxiliary files to a given directory. This is the function used by the command-line interface.
  • run_in_memory(): similar to run() but takes edges from a Python iterable and provides the clusters in a dictionary instead of files on disk. This function does not keep OSLOM auxiliary files. This function is useful for avoiding manual reading/writing of data on disk from your scripts.

The arguments for these functions must be a Namespace object from the argparse module. A working example for both functions is below:

from argparse import Namespace
import oslom

# run OSLOM with files already on disk
args = Namespace()
args.edges = "/path/to/input_edges.tsv"
args.output_clusters = "/path/to/output_clusters.json"
args.oslom_output = "/path/to/oslom_aux_files"
args.min_cluster_size = oslom.DEF_MIN_CLUSTER_SIZE
args.oslom_exec = oslom.DEF_OSLOM_EXEC
args.oslom_args = oslom.DEF_OSLOM_ARGS
oslom.run(args)

# run OSLOM with data in Python objects
args = Namespace()
args.min_cluster_size = 0
args.oslom_exec = oslom.DEF_OSLOM_EXEC
args.oslom_args = oslom.DEF_OSLOM_ARGS

# edges is an iterable of tuples (source, target, weight)
# in the same format as the command-line version
edges = [(0, 1, 1.0), (1, 2, 1), (2, 0, 1)]
clusters = oslom.run_in_memory(args, edges)
print(clusters)

License

This software is under the Apache License 2.0.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Release files for oslom-runner 1.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for oslom-runner 1.5
File Size Uploaded
oslom-runner-1.5.tar.gz 6.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for oslom-runner 1.5
File Interpreter ABI Platform
oslom_runner-1.5-py2.py3-none-any.whl Python 3, Python 2 none any Details

Total release size: 19.0 kB

Release files / oslom-runner-1.5.tar.gz

Download URL oslom-runner-1.5.tar.gz
Size 6.9 kB
Tags Source
SHA-256 checksum
How to use checksums
fe916b4f28adcd7d54acbcfeec133c514c933e15849521f7a8e2c17c9c333f95
BLAKE2b-256 checksum
How to use checksums
82181f1ec7b397c06f9bee5bfb6d147c92b4f40ab961ca96384ad5b19a6140c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

Release files / oslom_runner-1.5-py2.py3-none-any.whl

Download URL oslom_runner-1.5-py2.py3-none-any.whl
Size 12.1 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
a0d021be4c2f72aa4854e86325cd2a3e165dee9f95ec90d6fc6541eaf98f8231
BLAKE2b-256 checksum
How to use checksums
de57fab406c161ddef1d3ff4591598d36cebdbbcd0b3c4f5a465e1c017fd6d8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

Release history Release notifications | RSS feed

This release

1.5 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page