BergmannLab / MONET

MONET : MOdularising NEtwork Toolbox - https://doi.org/10.1093/bioinformatics/btaa236
GNU General Public License v3.0
41 stars 15 forks source link

MONET

This repository holds the source code for MONET, a Linux/MacOS command-line toolbox to mine molecular and genetic networks, leveraging the top performing methods of the Disease Module Identification (DMI) DREAM Challenge (see DREAM Challenge paper under section PUBLICATIONS and https://www.synapse.org/modulechallenge)

PREREQUISITES

Operating System: MONET can be run on either

Software: MONET requires either:

Hardware: MONET was tested both on server and on commodity hardware (i.e., regular desktop). For details, please refer to section COMPUTATIONAL RESOURCES below.

INSTALLATION

Just like you can ls a folder, after installation will be able to monet a network from any location on your system.

Simply run:

$ git clone https://github.com/BergmannLab/MONET.git && cd MONET && ./install.sh

A folder MONET will have been created with the source code: you are free to remove it, if you are not interested. This will not affect MONET, which has now been installed in your system: the command monet can be invoked from any location on the system.

IF YOU NEED SOME MORE GUIDANCE

You can follow this survey-tutorial:

IF YOU ARE ON WINDOWS

Users using Windows are encouraged to install a hypervisor (i.e., a software that allows to creates and run virtual machines): for example, install VirtualBox https://www.virtualbox.org/wiki/Downloads and configure it up to run a virtual Ubuntu Linux inside which to install MONET (using the instructions above).

IF YOU ARE A SINGULARITY USER WITHOUT SUDO RIGHTS

Sudo rights will be required at installation time for Singularity users: Singularity users will not need sudo rights while running MONET (i.e., Singularity does not require sudo right to run containers), but they will need it at installation time (i.e., at the time the Singularity images are first created).

Users that don't have sudo rights should follow the regular installation procedure explained above, then refer to MONET/docs/installation_no_sudo.txt where they will find a workaround to complete the installation manually without needing sudo.

TESTING THE INSTALLATION

At the end of the install process, you will be asked whether you want to test MONET. This test is completely automatic.

MONET HELP COMMAND

After installing MONET, the help command monet --help will be available from any location on your system.

RUNNING

Once installed, from any location on your system, you can run the following example command: it will run a method called M1 (see section METHODS for details), on a network contained in your /tmp folder (see section INPUT for details), using docker virtualization (see section PREREQUISITES for details). In the remainder of this document, you will find details about what parameters you can use, what to expect as an output and resource usage (in the PARAMETERS, OUTPUT and COMPUTATIONAL RESOURCES sections respectively).

$ monet --help

$ monet --input=/tmp/input_network.txt —-method=M1 --container=docker

INPUT

The input file is provided to MONET using the --input parameter (see section RUNNING and section PARAMETERS).

The format for the input network is the following: a tab-separated file containing one line for each edge.

If an edge is connecting two nodes, gene_a and gene_b, with a certain weight, the file will contain the line:

gene_a \t gene_b \t weight \n

Details:

For an example, see MONET/.test/system_test/input/zachary_karate_club.txt. The same folder containing the actual inputs to the Disease Module Identification (DMI) DREAM Challenge. Beware that some of the inputs will require high amounts of computational resources and are not suited to be run on a simple laptop or desktop computer; please refer to section COMPUTATIONAL RESOURCES for details.

OUTPUT

The output location is provided to MONET using the --output parameter (see section OPTIONAL PARAMETERS).

Two output files will be generated in the directory where you run the command. They are marked with a timestamp, the name of the selected method and the name of your input network. For example, let's assume if you run M1 on 1st January 2020 at midday on a file called input_network.txt:

METHODS

Three methods are available as part of MONET, which emerged as the top-performing methods of the DREAM Challenge.

In order to run one of the three methods, adapt the example command provided in section RUNNING providing the --method option with the name of the chosen method (--method=[K1|M1|R1], for details, see section PARAMETERS).

PARAMETERS

Please, provide values for the following MANDATORY parameters:

OPTIONAL PARAMETERS

if you select K1 as a method, you may additionally provide the following:

if you select M1 as a method, you may additionally provide the following:

if you select R1 as a method, you may additionally provide the following:

COMPUTATIONAL RESOURCES

Some of the methods require large amount of resources, depending on your input (please, refer to the MONET paper in the PUBLICATIONS section for details about how resource needs will scale with the size of the input, for the different methods).

To reproduce the results of the DREAM Challenge, you can run MONET/.test/system_test/reproduce_challenge/reproduce_challenge.sh. This might fail on commodity hardware (i.e., a regular laptop or desktop) as about 8GB or RAM need to be available. In that case, you can allocate a larger SWAP partition (on Linux) or run the experiment on more powerful hardware, such as a server. Please browser the rest of the contents of MONET/.test/system_test/reproduce_challenge to view the exact RAM usage (ram_usage.txt) and the challenge outputs produced by MONET (disease_modules_output directory).

To monitor resource usage when running on your own input (and thus determine the amount or RAM / swap needed by your particular input network for a particular method), two simple scripts have been added to MONET/.test/helper_scripts (for Unix and one for MacOS systems): launch them before execution of MONET and redirect their output to file for simple inspection (no other task should be running).

BENCHMARKING

For details about the modularization performance of the MONET methods on a set of artificial benchmarks (Louvain algorithm is shown as a baseline), please refer to the MONET paper in the PUBLICATIONS section; in particular, Fig. 1. MONET/.test/benchmarking for a detailed output of the experiments that have been carried out.

SOURCE CODE

The source code is hosted at: https://github.com/BergmannLab/MONET.git

CONTRIBUTING

If you are interested in contributing to MONET, we encourage you to get in touch! We will be happy to add you to the list of our developers https://github.com/BergmannLab/MONET/graphs/contributors. THANK YOU!

CONTRIBUTING - CREATING A BRANCH

First, we will create an issue for the specific feature you are willing to contribute; let's say yours will happen to be issue 999. You will be then asked to create a new git branch where to implement your changes; run the following from the cloned MONET directory:

$ git checkout -b issues_999

$ git push origin issues_999

At this point, you are free to make changes to your local code in your laptop. Don't worry if you mess things up, it's no problem to add mistakes to a branch.

CONTRIBUTING - TESTING YOUR CHANGES

Once you are done with your changes, you can test them locally by reinstalling from the modified MONET directory.

CONTRIBUTING - PUBLISHING YOUR CHANGES

Once you have tested your changes, run the following from the cloned MONET directory:

$ git add .

$ git commit -m "adding code for feature # issues_999"

$ git push --set-upstream origin issues_999

$ git checkout master

One of the MONET developers will test the changes in your branch then merge to Master.

IMPLEMENTING LOCAL CHANGES TO MONET

If you wish to implement local changes to MONET, independently from our github repository, you can simply modify the code in your local cloned repository and reinstall after having made those changes (i.e. run or re-run the install.sh script and confirm if you are asked to reinstall). This procedure can be repeated as many times as you like.

TROUBLESHOOTING COMMON PROBLEMS

If a MONET run is suddenly interrupted or if the expected outputs has not been generated, here are few common problems that can occur:

BUG-REPORTS

Please, address your questions and bug reports to Mattia Tomasoni, . An issue will be opened here to address your problem: https://github.com/BergmannLab/MONET/issues

PUBLICATIONS