Rosetta
|
Functions | |
def | sample_single_loop_modeling (pdb_filename, loop_begin, loop_end, loop_cutpoint, frag_filename, frag_length, outer_cycles_low=2, inner_cycles_low=5, init_temp_low=2.0, final_temp_low=0.8, outer_cycles_high=5, inner_cycles_high=10, init_temp_high=2.2, final_temp_high=0.6, jobs=1, job_output='loop_output') |
Methods. More... | |
Variables | |
extra_options | |
parser = optparse.OptionParser() | |
INTERPRETING RESULTS. More... | |
dest | |
default | |
help | |
options | |
args | |
pdb_filename = options.pdb_filename | |
loop_begin = int(options.loop_begin) | |
loop_end = int(options.loop_end) | |
loop_cutpoint = int(options.loop_cutpoint) | |
frag_filename = options.frag_filename | |
frag_length = int(options.frag_length) | |
outer_cycles_low = int(options.outer_cycles_low) | |
inner_cycles_low = int(options.inner_cycles_low) | |
init_temp_low = float(options.init_temp_low) | |
final_temp_low = float(options.final_temp_low) | |
outer_cycles_high = int(options.outer_cycles_high) | |
inner_cycles_high = int(options.inner_cycles_high) | |
init_temp_high = float(options.init_temp_high) | |
final_temp_high = float(options.final_temp_high) | |
jobs = int(options.jobs) | |
job_output = options.job_output | |
def demo.D080_Loop_modeling.sample_single_loop_modeling | ( | pdb_filename, | |
loop_begin, | |||
loop_end, | |||
loop_cutpoint, | |||
frag_filename, | |||
frag_length, | |||
outer_cycles_low = 2 , |
|||
inner_cycles_low = 5 , |
|||
init_temp_low = 2.0 , |
|||
final_temp_low = 0.8 , |
|||
outer_cycles_high = 5 , |
|||
inner_cycles_high = 10 , |
|||
init_temp_high = 2.2 , |
|||
final_temp_high = 0.6 , |
|||
jobs = 1 , |
|||
job_output = 'loop_output' |
|||
) |
Performs simple single loop construction on the input <pdb_filename> with loop from <loop_begin> to <loop_end> with a cutpoint at <loop_cutpoint> using fragments of length <frag_length> in the file <frag_filename>. <jobs> trajectories are performed, each using a low resolution (centroid) simulated annealing with <outer_cycles> rounds and <inner_cycles> steps per round decrementing "temperature" from <init_temp> to <final_temp> geometrically. Output structures are named <job_output>_(job#).pdb.
References pyrosetta.create_score_function, pyrosetta.distributed.io.pose_from_file, ObjexxFCL.pow(), basic::options::OptionKeys::run::PyMOLMover.PyMOLMover, range, demo.D060_Folding.scorefxn_high, and str().
demo.D080_Loop_modeling.args |
demo.D080_Loop_modeling.default |
demo.D080_Loop_modeling.dest |
demo.D080_Loop_modeling.extra_options |
demo.D080_Loop_modeling.final_temp_high = float(options.final_temp_high) |
demo.D080_Loop_modeling.final_temp_low = float(options.final_temp_low) |
demo.D080_Loop_modeling.frag_filename = options.frag_filename |
demo.D080_Loop_modeling.frag_length = int(options.frag_length) |
demo.D080_Loop_modeling.help |
demo.D080_Loop_modeling.init_temp_high = float(options.init_temp_high) |
demo.D080_Loop_modeling.init_temp_low = float(options.init_temp_low) |
demo.D080_Loop_modeling.inner_cycles_high = int(options.inner_cycles_high) |
demo.D080_Loop_modeling.inner_cycles_low = int(options.inner_cycles_low) |
demo.D080_Loop_modeling.job_output = options.job_output |
demo.D080_Loop_modeling.jobs = int(options.jobs) |
demo.D080_Loop_modeling.loop_begin = int(options.loop_begin) |
tuple demo.D080_Loop_modeling.loop_cutpoint = int(options.loop_cutpoint) |
demo.D080_Loop_modeling.loop_end = int(options.loop_end) |
demo.D080_Loop_modeling.options |
demo.D080_Loop_modeling.outer_cycles_high = int(options.outer_cycles_high) |
demo.D080_Loop_modeling.outer_cycles_low = int(options.outer_cycles_low) |
demo.D080_Loop_modeling.parser = optparse.OptionParser() |
INTERPRETING RESULTS.
COMMANDLINE COMPATIBILITY
demo.D080_Loop_modeling.pdb_filename = options.pdb_filename |