Skip to content

isblab/stop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

\brief Stochastic optimization of sampling parameters for MCMC sampling in IMP

PubMed

DOI

StOP: Stochastic Optimization of Parameters for IMP

main workflow cov

5z

StOP is a gradient-free, parallel, global, stochastic, multi-objective optimization algorithm primarily written to optimize the MCMC (Markov Chain Monte Carlo) sampling parameters for the Integrative Modeling Platform, IMP. The code can be adapted to any suitable optimization problem.

Publication and Data

  • Satwik Pasani, Shruthi Viswanath, A Framework for Stochastic Optimization of Parameters for Integrative Modeling of Macromolecular Assemblies, Life, 11 (11): 1183, 2021, at DOI.
  • Data (scripts and the explanation for the reproduction of figures) is deposited in Zenodo

Dependencies

Apart from python3 and a linux system, the code requires the following python modules: scipy, numpy, matplotlib, tqdm. You can install all of them using pip install -r requirements.txt. While the code is windows-compatible for most part, multiple subprocess spawning unreliably ends up with a memory error when max_np > 1. This is currently an open issue.

Running StOP

  1. Make sure all the necessary modules are installed
  2. Clone the repository or copy the files main,py, utils.py, optimizer.py and, optionally, depending on your usage, analyzer.py to a directory of your choosing
  3. Create an input file with runtime options and the parameter/metric inputs (described below)
  4. python main.py YOUR_INPUT_FILE

Overall workflow and Tutorials

For an IMP-specific tutorial, see here for a basic tutorial and here for a tutorial on optimizing the replica-exchange acceptance ratio.

StOP requires all the input information to be presented as an input file (see below for the format). It requires two other scripts. One script, the IMP modeling script (which represents the metric function) needs to be specified in form of a command to be run at the different parameter values specified in the input file. Another is the optional custom analysis script for which the default analysis script is present in the repository. The algorithm proceeds by parallelizing several invocations of the modeling script and then calling the analysis script on the outputs.

Input file format

Each line in the input file represents a KEY : VALUE1 : VALUE2 ... binding where KEY specifies the name of the option and one or more VALUEs specify the value(s) of the option or its attributes.

Compulsory Options

One or more of the following options must be present in a valid input file. You should replace all values in <> with appropriate values for your use case.

  1. METRIC : <name> : <low>,<high> : <regex_search_string> (The target range of the metric is set as [<low>, <high>]. The search string is matched to all the keys of the stat_file and the replica_stat_file and all matching keys are averaged to get the value of the metric. See analysis details below.)
  2. PARAM : <name> : <metric1>,<metric2> : <low>,<high> (The third field contains all the metrics affected by this parameter as a comma-separated list. The initial search range (input domain) of the parameter is set as [<low>, <high>])
  3. COMMAND : <command_to_run> (The command takes the parameters as input from the command line. The CLI arguments are the parameter values presented in the order they are specified in the input file followed by a path to the output folder where the command should save the output files to be analyzed by the analysis script. The output folder is typically set by changing the output of the replica-exchange macro in pmi)

Optional options

Option format Allowed values and default Description
max_np : <value> any integer (default = os.cpu_count()) maximum_number of subprocesses spawned in parallel (note this is in addition to the 3 background processes). When using mpirun, each subprocess can itself contain multiple processes
max_depth : <value> any integer (default = 5) maximum allowable depth of the DFS tree
repeat : <value> any integer (default = 3) number of times to rerun the script at the same parameter values to average the stochastic variation
m_<n>d : <value> any integer specify the m(n) as specified in the manuscript. One can individually set the value of m for different n by using multiple m_<n>d keys with different n
path : <value> a valid file path (default = ./) a path to store all the optimization runtime data in. The IMP output will be stored under folders named output_<number> within this path
verbosity : <value> 0, 1, 2 0 -> 2 increasing verbosity of the progress
plotting : <value> 0, 1, 2 0 -> 2 increasing level of plotting
cleanup : <value> 0, 1, 2 Whether to cleanup the stat files, stdout and stderr records of the different optimization runs or not. 0 implies no cleanup. It is strongly recommended to keep it to 0 unless there are space constraints
csv_report : <value> 0, 1 (default = 0) 0 -> Do not generate a csv-report, 1 -> generate a csv report. CSV report is generated per successful parameter-group, and is useful if you want to automatically take the optimized values of the parameters for downstream pipeline. No new information is present in these reports over the standard report.txt
n_per_command : <value> any integer Number of processes spawned per command invocation. Relevant for mpirun based replica exchange. Allows for a better progress bar.
n_frames_per_run : <value> any integer Number of frames per IMP run. Allows for a better progress bar.
max_wait : <value> any integer (default = 60) Number of seconds to wait before polling each running subprocess for the current status. Also controls the rate of logging
stopping_eq : <value> 0, 1 (default = 0) Whether to consider failing to equilibriate as an error during analysis. Only change this if you have a custom StOP setup
stopping_err : <value> 0, 1 (default = 1) Whether to stop if any of the runs throws an error during analysis. Only change this if you have a custom StOP setup
analysis_wrapper : <file> : <function> see below for details

Analysis Details

By default, StOP uses the Default analysis file analyzer.py. The user submitted regex strings are matched across all the keys in stat-file, and on failing to match any keys, the stat-replica-files. There are two special keys that you can use with the default analysis function, MinTempReplicaExchangeRatio and AllTempReplicaExchangeRatio. Explore the replica exchange tutorial for more details. (Note that StOP currently assumes the minimum temperature for replica exchange to be 1.0 and will throw an error otherwise. In further updates, this assumption will be removed.) Next, the values for these matched headers are extracted. The total score of the run is then checked for equilibriation by comparing the mean of the final quarter of frames to the penultimate quarter. If either of the means are outside 2SD of either of the quarters, the run is classified as unequilibriated (the downstream behavior in this case depends on the options). Next, the matched headers are extracted for the final half of the runs. These are assumed to be cumulative statistics and a correction is applied to them to fix this (to override this, you can create a custom analysis script as described below). Next, they are averaged across the matched headers, across the frames and across replicas (if applicable).

Custom Analysis Script

In order to create a custom analysis script, create a python file in the same directory as the working directory of the python session where StOP is running (or the file should be on the sys.path). Create a function inside this file with the following signature:

def foo(names_of_files, metric_names, param_search_names, plot):
	do stuff
	return error, equilibriation, results

Here, names_of_files will be a list of the locations where the stat/replica_stat files are stored for each run (each member of the list corresponds to a separate run). metric_names are the names of the metrics that need to be analyzed and the param_search_names are the regex strings inputted in the options file. plot can be ignored. error evaluates to True if the analysis did not encounter any errors, and False otherwise (it is preferable to catch errors this way rather than raise the error). equilibriation is a dictionary with the keys being the elements of the list names_of_files and the values are booleans representing if the corresponding runs equilibriated (True) or not. results is a dictionary, the keys of which are the elements of the list metric_names and the value is a tuple (mean, sd) of the corresponding metric for the set of runs names_of_files.

The custom script can be added to the input options file as analysis_wrapper : <name_of_file> : foo

Information

Author(s): Satwik Pasani, Shruthi Viswanath

Date: June 7th, 2024

License: CC BY-SA 4.0 This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.

Last known good IMP version: not tested

Testable: Yes

Parallelizeable: Yes

Publications: Satwik Pasani, Shruthi Viswanath, A Framework for Stochastic Optimization of Parameters for Integrative Modeling of Macromolecular Assemblies, Life, 11 (11): 1183, 2021. DOI.

About

Stochastic Optimization of Parameters for IMP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages