IMP
2.4.0
The Integrative Modeling Platform
|
A macro to help setup and run replica exchange. More...
Inherits object.
A macro to help setup and run replica exchange.
Supports Monte Carlo and molecular dynamics. Produces trajectory RMF files, best PDB structures, and output stat files.
Public Member Functions | |
def | __init__ |
Constructor. More... | |
def IMP.pmi.macros.ReplicaExchange0.__init__ | ( | self, | |
model, | |||
representation = None , |
|||
root_hier = None , |
|||
sample_objects = None , |
|||
monte_carlo_sample_objects = None , |
|||
molecular_dynamics_sample_objects = None , |
|||
output_objects = None , |
|||
crosslink_restraints = None , |
|||
monte_carlo_temperature = 1.0 , |
|||
simulated_annealing = False , |
|||
simulated_annealing_minimum_temperature = 1.0 , |
|||
simulated_annealing_maximum_temperature = 2.5 , |
|||
simulated_annealing_minimum_temperature_nframes = 100 , |
|||
simulated_annealing_maximum_temperature_nframes = 100 , |
|||
replica_exchange_minimum_temperature = 1.0 , |
|||
replica_exchange_maximum_temperature = 2.5 , |
|||
num_sample_rounds = 1 , |
|||
number_of_best_scoring_models = 500 , |
|||
monte_carlo_steps = 10 , |
|||
molecular_dynamics_steps = 10 , |
|||
molecular_dynamics_max_time_step = 1.0 , |
|||
number_of_frames = 1000 , |
|||
nframes_write_coordinates = 1 , |
|||
write_initial_rmf = True , |
|||
initial_rmf_name_suffix = 'initial' , |
|||
stat_file_name_suffix = 'stat' , |
|||
best_pdb_name_suffix = 'model' , |
|||
do_clean_first = True , |
|||
do_create_directories = True , |
|||
global_output_directory = './' , |
|||
rmf_dir = 'rmfs/' , |
|||
best_pdb_dir = 'pdbs/' , |
|||
replica_stat_file_suffix = 'stat_replica' , |
|||
em_object_for_rmf = None , |
|||
atomistic = False , |
|||
replica_exchange_object = None |
|||
) |
Constructor.
model | The IMP model |
representation | PMI.representation.Representation object (or list of them, for multi-state modeling) |
root_hier | Instead of passing Representation, just pass a hierarchy |
monte_carlo_sample_objcts | Objects for MC sampling; a list of structural components (generally the representation) that will be moved and restraints with parameters that need to be sampled |
molecular_dynamics_sample_objects | Objects for MD sampling |
output_objects | A list of structural objects and restraints that will be included in output (statistics files). Any object that provides a get_output() method can be used here. |
crosslink_restraints | List of cross-link restraints that will be included in output RMF files (for visualization). |
monte_carlo_temperature | MC temp (may need to be optimized based on post-sampling analysis) |
simulated_annealing | If True, perform simulated annealing |
simulated_annealing_minimum_temperature | Should generally be the same as monte_carlo_temperature. |
simulated_annealing_minimum_temperature_frames | Number of frames to compute at minimum temperature. |
simulated_annealing_maximum_temperature_frames | Number of frames to compute at temps > simulated_annealing_maximum_temperature. |
replica_exchange_minimum_temperature | Low temp for REX; should generally be the same as monte_carlo_temperature. |
replica_exchange_maximum_temperature | High temp for REX |
num_sample_rounds | Number of rounds of MC/MD per cycle |
number_of_best_scoring_models | Number of top-scoring PDB models to keep around for analysis |
monte_carlo_steps | Number of MC steps per round |
molecular_dynamics_steps | Number of MD steps per round |
molecular_dynamics_max_time_step | Max time step for MD |
number_of_frames | Number of REX frames to run |
nframes_write_coordinates | How often to write the coordinates of a frame |
write_initial_rmf | Write the initial configuration |
global_output_directory | Folder that will be created to house output. |