-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign_protease.py
More file actions
644 lines (533 loc) · 24.7 KB
/
Copy pathdesign_protease.py
File metadata and controls
644 lines (533 loc) · 24.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
#!/usr/bin/python
"""
PyRosetta4, Python 3.5
Joseph Lubin, 2019
Pipeline for rapidly modeling protease-substrate combinations, and using
FastRelax and FastDesign to explore potentially better interacting variants
It is assumed in the program that the input PDB structure will have a set of
enzdes constraint comments at the beginning of the document, and that the
protease is chain A and the substrate is chain B.
Sample command:
python design_protease.py -s HCV.pdb -od test -name despep -seq DVDAR -site 198
-ps "198-202" -cons ly104.cst -cr 72 96 154 -dprot 0 -dpep 1 -n 100 -mm 138 I
-mm 170 Q -mm 171 S -mm 173 I -mm 175 K -mm 183 R
"""
from __future__ import print_function # For compatability with Python 2.7
import argparse
from os import path
from os import makedirs
from os.path import basename, isdir, isfile, join
from pyrosetta import *
from pyrosetta.rosetta.core.pack.task import TaskFactory
from pyrosetta.rosetta.core.pack.task.operation import \
IncludeCurrent, ExtraRotamers, OperateOnResidueSubset, \
PreventRepackingRLT, RestrictAbsentCanonicalAASRLT, RestrictToRepackingRLT
from pyrosetta.rosetta.core.scoring import ScoreType
from pyrosetta.rosetta.core.select.residue_selector import \
AndResidueSelector, ChainSelector, InterGroupInterfaceByVectorSelector,\
NeighborhoodResidueSelector, NotResidueSelector, OrResidueSelector, \
ResidueIndexSelector
from pyrosetta.rosetta.core.simple_metrics.metrics import \
SelectedResiduesMetric
from pyrosetta.rosetta.protocols.enzdes import ADD_NEW, AddOrRemoveMatchCsts
from pyrosetta.rosetta.protocols.minimization_packing import PackRotamersMover
from pyrosetta.rosetta.protocols.relax import FastRelax
from random import randint
from sys import exit
import itertools
import time
from pyrosetta.rosetta.protocols.constraint_generator import \
AddConstraints, CoordinateConstraintGenerator
def parse_args():
info = "Design a protease around a peptide sequence"
parser = argparse.ArgumentParser(description=info)
parser.add_argument("-s", "--start_struct", required=True,
default='start_proteases/HCV.pdb', help="Pick starting PDB")
parser.add_argument("-od", "--out_dir", required=True,
help="Name an output directory for decoys")
parser.add_argument("-name", "--name", type=str,
help="How would you like to name your outputs? \
(Default will use the name of the input PDB file.)")
parser.add_argument("-site", "--subst_site", required=True, type=int,
help="Where in the pose should the substrate sequence begin \
threading? (A 5-letter substitution ending with 201 should start at \
197).")
parser.add_argument("-cr", "--cat_res", type=int, nargs='+',
default=None, help="The catalytic residues of the protease, \
excluded from design. (By default, no residues are so designated.)")
parser.add_argument("-ps", "--pep_subset", type=str, default=None,
help='Select the subset of the peptide around which to design, as a \
string of "first_res-last_res". (Ex: "198-202") Otherwise, design \
will be performed around the full peptide. These numbers should be in \
pose numbers, not PDB numbers, if the two differ.')
parser.add_argument("-cons", "--constraints", type=str,
default='ly104.cst', help="Pick constraints file")
parser.add_argument("-dprot", "--design_protease", type=str2bool, default=1,
help="Allow design on the protease near the peptide? 0 \
for False, 1 for True. (Default: True)")
parser.add_argument("-dpep", "--design_peptide", type=str2bool, default=0,
help="Allow design on the peptide? 0 for False, 1 for \
True. (Default: False)")
parser.add_argument("-hbn", "--use_hb_net", action="store_true",
help="Option to include HBnet score term in design.")
parser.add_argument("-n", "--number_decoys", type=int, default=10,
help="How many decoys should be made? (Default is 10.)")
parser.add_argument("-mm", "--mutations", nargs=2, action='append',
help="Manually input mutations in the format [site] [one-letter res]. \
Accepts multiple uses. (Ex: -mm 138 I -mm 183 R) Note, if you intend \
to change the catalytic residues, you must edit the PDB's enzdes \
comments as well, or applying constraints won't work properly.")
parser.add_argument("-init", "--extra_init_options", type=str,
action='append', help='Extra init options for Rosetta (ex: \
"-extra_res_fa LG1.params")')
parser.add_argument("-nrc", "--no_relax_comparison", action="store_true",
help="Prevent generation of a relaxed decoy along with the designed \
model. By default, one will be produced, but this option will prevent \
that from happening. Doing so may save time if many trajectories are \
being run, and a smaller set of relaxed models is generated for \
comparison. This can be done by executing the same command, but with \
-dprot 0 and -dpep 0")
parser.add_argument("-cp", "--constrain_peptide", action="store_true",
help="Option to add coordinate constraints to the substrate peptide \
backbone atoms. False by default.")
parser.add_argument("-test", "--test_mode", action="store_true",
help="For debugging: test protocol, exiting before generating decoys.")
parser.add_argument("-sf", "--silent_file", required = True, help="Used to generate a silent file.")
parser.add_argument("-p1", "--position1", required = True, type = int, help="The pose number for the p1 substrate")
parser.add_argument("-st", "--substrate_txt", type = str, help = "")
args = parser.parse_args()
return args
def str2bool(v):
""" Converts a number of potential string inputs to boolean """
if isinstance(v, bool):
return v
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')
def init_opts(extra_opts, cst_file='ly104.cst'):
""" Produces a list of init options for PyRosetta, including cst file """
ros_opts = '-ex1 -ex2 -use_input_sc -flip_HNQ'
ros_opts += ' -mute all -enzdes::cstfile {}'.format(cst_file)
ros_opts += ' -cst_fa_weight 1.0 -run:preserve_header -out:pdb_gz'
if extra_opts:
for i in extra_opts:
ros_opts += ' {}'.format(i)
print(ros_opts)
return ros_opts
def coord_constrain_peptide(pose, selection=ChainSelector('B')):
""" Applies backbone coordinate constraints to a selection of a pose """
cg = CoordinateConstraintGenerator()
if selection:
cg.set_residue_selector(selection)
ac = AddConstraints()
ac.add_generator(cg)
ac.apply(pose)
return pose
def readfile(file_name):
""" Opens a file in read-mode and returns a list of the text lines """
with open(file_name, 'r') as r:
lines = r.readlines()
return lines
######### Threading ##########################################################
def make_residue_changes(pose, sf, subst_seq, subst_start, cat_res, manual_muts):
"""
Applies substrate sequence changes and manual mutations to a given pose.
This is done through repacking, so unlike SimpleThreadingMover, the side
chains don't begin clashing. This means that the residue selectors will be
more accurate, and that design can begin without an initial relax step.
pose is a Rosetta pose
sf is a Rosetta scorefunction
subst_seq is a string (doesn't need to be uppercase)
subst_start is an integer corresponding to the first of a contiguous block
of residues to re-sequence
manual_muts is a list of two-member lists, of the following form:
[site, single-letter residue name]
"""
# Create dict of {res: AA} for changes to make
res_changes = {}
# Add manual mutations list
if manual_muts:
print("\nApplying point substitutions:")
for m in manual_muts:
res_changes[int(m[0])] = m[1].upper()
print(m[0], m[1].upper())
# Add substrate threading to list of res changes
print("\nInserting substrate sequence:\n{}".format(subst_seq))
subst_range = range(subst_start, subst_start + len(subst_seq))
for n, i in enumerate(subst_range):
res_changes[i] = subst_seq[n].upper()
# Make TaskFactory to input changes
mobile_residues = OrResidueSelector() # Keep list of mobile residues
tf = TaskFactory()
# Force packing to target residue for each desired change
for r, aa in res_changes.items():
res_selection = ResidueIndexSelector(str(r))
restriction = RestrictAbsentCanonicalAASRLT()
restriction.aas_to_keep(aa.upper())
tf.push_back(OperateOnResidueSubset(restriction,res_selection))
mobile_residues.add_residue_selector(res_selection)
# Repack nearby residues to accommodate substitutions
shell = NeighborhoodResidueSelector()
shell.set_focus_selector(mobile_residues)
shell.set_include_focus_in_subset(False)
shell.set_distance(8)
# Exclude catalytic residues
if cat_res:
catalytic = ResidueIndexSelector(','.join([str(i) for i in cat_res]))
not_catalytic = NotResidueSelector(catalytic)
shell = selector_intersection(shell, not_catalytic)
restrict = RestrictToRepackingRLT()
tf.push_back(OperateOnResidueSubset(restrict, shell))
# Prevent repacking of all other residues
unchanging = NotResidueSelector(OrResidueSelector(mobile_residues, shell))
prevent = PreventRepackingRLT()
tf.push_back(OperateOnResidueSubset(prevent, unchanging))
# Apply changes with PackRotamersMover
pt = tf.create_task_and_apply_taskoperations(pose)
prm = PackRotamersMover(sf, pt)
mutated_pose = Pose(pose)
prm.apply(mutated_pose)
return mutated_pose
def random_aa(length):
"""
Returns a string of random 1-letter amino acid names from the cannonical
20, to a specified length.
"""
aa_list = ['A', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'K', 'L',
'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'V', 'W', 'Y']
aa_string = ""
for aa in range(length):
rand_index = randint(0,19)
aa_string += aa_list[rand_index]
return aa_string
######### Residue selection ##################################################
def selector_intersection(*selectors):
""" Returns the intersection of any set of selectors """
intersect_selection = AndResidueSelector()
for s in selectors:
intersect_selection.add_residue_selector(s)
return intersect_selection
def selector_union(*selectors):
""" Returns the intersection of any set of selectors """
union_selection = OrResidueSelector()
for s in selectors:
union_selection.add_residue_selector(s)
return union_selection
def mutable_residues_selector(protease_selection, peptide_selection,
catalytic_selection, design_peptide=False):
"""
Selects the residues in a shell around the peptide using the
InterGroupInterfaceByVectorSelector residue selector
"""
# Making protease shell selector (includes peptide)
first_shell_select = InterGroupInterfaceByVectorSelector()
first_shell_select.group1_selector(protease_selection)
first_shell_select.group2_selector(peptide_selection)
first_shell_select.nearby_atom_cut(8)
first_shell_select.vector_dist_cut(10)
# Excluding the catalytic residues, peptide (if not designed)
not_cats_sel = NotResidueSelector(catalytic_selection)
if design_peptide:
mutable_selection = selector_intersection(
not_cats_sel, first_shell_select)
else:
mutable_selection = selector_intersection(
not_cats_sel, first_shell_select, protease_selection)
return mutable_selection
def packable_residues_selector(
peptide_selection, mutable_selection, catalytic_selection):
"""
Selects the shell of neighbor residues to repack. Packable set should not
include the mutable set, since the action is RestrictToRepacking.
"""
# Making negative selections for mutable and catalytic
not_mutable = NotResidueSelector(mutable_selection)
not_catalytic = NotResidueSelector(catalytic_selection)
# Selecting residues near mutable shell
near_mutable = InterGroupInterfaceByVectorSelector()
near_mutable.group1_selector(not_mutable)
near_mutable.group2_selector(mutable_selection)
near_mutable.nearby_atom_cut(8)
near_mutable.vector_dist_cut(10)
# Selecting residues near the peptide, with wider range for BB mobility
near_pep = InterGroupInterfaceByVectorSelector()
near_pep.group1_selector(not_mutable)
near_pep.group2_selector(peptide_selection)
near_pep.nearby_atom_cut(10)
near_pep.vector_dist_cut(12)
# Combining selections for peptide and near peptide and near mutable
inclusive_packable = selector_union(
near_mutable, near_pep, peptide_selection, ChainSelector('B')) ##################Chain B hacky
# Setting up exclusion of catalytic and mutable residues
exclusive_packable = selector_intersection(
inclusive_packable, not_mutable, not_catalytic)
return exclusive_packable
def select_residues(
cat_res, peptide_subset, design_protease=True, design_peptide=False):
"""
Makes residue selectors for protease sections. Requires manual input for
which residues are catalytic and whether only part of the peptide should be
selected. Options for whether the peptide is designable (false by default)
and whether the protease is designable (true by default). Assumes that the
protease is chain A and the peptide is chain B.
"""
residue_selectors = {}
# Protease residues. Protease assumed to be chain A
protease = ChainSelector("A")
residue_selectors['protease'] = protease
# Peptide residues. Peptide assumed to be chain B, unless range specified
if peptide_subset:
peptide = ResidueIndexSelector(peptide_subset)
else:
peptide = ChainSelector("B")
residue_selectors['peptide'] = peptide
# Catalytic residues. ResidueIndexSelector needs a string, not a list.
if cat_res:
cats_as_str = ','.join([str(i) for i in cat_res])
catalytic = ResidueIndexSelector(cats_as_str)
else:
# If no catalytic residues are given, return a null selector
catalytic = selector_intersection(protease, peptide) # Empty set
residue_selectors['catalytic'] = catalytic
# Designable residues. May include protease and peptide, just one, or none
if design_protease:
mutable = mutable_residues_selector(protease, peptide,
catalytic, design_peptide)
elif design_peptide:
mutable = peptide
else: # Neither protease not peptide designable
mutable = selector_intersection(protease, peptide) # Empty set
residue_selectors['mutable'] = mutable
# Packable residues. Centered around the peptide and designable set
packable = packable_residues_selector(peptide, mutable, catalytic)
residue_selectors['packable'] = packable
# Immobile residues. Catalytic residues and everything that isn't mutable
# or packable
immobile = NotResidueSelector(selector_union(mutable, packable))
residue_selectors['immobile'] = immobile
return residue_selectors
def selector_to_list(pose, selector):
""" Converts a selector output vector to a list of selected residues """
# Set up SelectedResiduesMetric
srm = SelectedResiduesMetric()
srm.set_residue_selector(selector)
srm.set_output_in_rosetta_num(True)
# Collect selection, and convert to a list
sel_res_str = srm.calculate(pose)
sel_res_str_list = sel_res_str.split(',')
if sel_res_str_list == ['']: # Avoid errors when list is empty
sel_res_str_list = []
selection_list = [int(i) for i in sel_res_str_list]
return selection_list
######### Setup ##############################################################
def apply_constraints(pose):
""" Applies the constraints form the input CST file to a pose """
cstm = AddOrRemoveMatchCsts()
cstm.set_cst_action(ADD_NEW)
cstm.apply(pose)
return pose
def make_move_map(pose, selectors):
"""
Makes a movemap for a protease-peptide system, with all non-peptide
residue backbones fixed, and side chains mobile for all packable and
designable residues.
Takes a dict of selectors generated by select_residues.
"""
mm = MoveMap()
# Mobile backbone for peptide
for i in selector_to_list(pose, selectors['peptide']):
mm.set_bb(i, True)
# Mobile side chains for mutable and packable residues
for i in selector_to_list(pose, selectors['mutable']):
mm.set_chi(i, True)
for i in selector_to_list(pose, selectors['packable']):
mm.set_chi(i, True)
return mm
def make_task_factory(residue_selectors):
"""
Makes a TaskFactory with operations that leave the mutable residues
designable, restricts the nearby residues to repacking, and prevents
repacking of other residues.
"""
mutable_set = residue_selectors['mutable']
repack_set = residue_selectors['packable']
immobile_set = residue_selectors['immobile']
prevent = PreventRepackingRLT() # No repack, no design
repack = RestrictToRepackingRLT() # No design
tf = TaskFactory()
tf.push_back(IncludeCurrent())
tf.push_back(ExtraRotamers(0, 1, 1))
tf.push_back(ExtraRotamers(0, 2, 1))
tf.push_back(OperateOnResidueSubset(prevent, immobile_set))
tf.push_back(OperateOnResidueSubset(repack, repack_set))
# Everything else left designable by default
return tf
def get_score_function(ref15=True, constraints=True, hbnet=False):
""" Returns either default or weighted REF2015 with or without hbnet """
# If including default REF2015, start from there, otherwise start from null
if ref15:
sf = get_fa_scorefxn()
else:
sf = ScoreFunction()
# Picking between constraints and not
if constraints:
sf.set_weight(ScoreType.atom_pair_constraint, 1)
sf.set_weight(ScoreType.coordinate_constraint, 1)
sf.set_weight(ScoreType.angle_constraint, 1)
sf.set_weight(ScoreType.dihedral_constraint, 1)
# Optionally adding in hbnet
if hbnet:
sf.set_weight(ScoreType.hbnet, 1)
return sf
######### Design Protocols ###################################################
def fastrelax(pose, score_function, movemap, taskfactory=None):
"""
Runs the FastRelax protocol on a pose, using given score function and
movemap, and optionally a task factory. By default, FastRelax will not do
design. However, given a task factory that enables design, it functions
like FastDesign.
"""
relax = FastRelax()
relax.set_scorefxn(score_function)
relax.set_movemap(movemap)
if taskfactory:
relax.set_task_factory(taskfactory)
pp = Pose(pose)
relax.apply(pp)
return pp
######### Main ###############################################################
def test_and_exit(args, residue_selectors, pose, name):
""" Prints info then exits """
print('\n\nArgs:')
print(args)
print('\nSelectors:')
for k, v in residue_selectors.items():
print('\t',k)
print('\t',selector_to_list(pose,v))
print('\nSequence')
print(pose.sequence())
print('\nName:')
print(name)
print('\n')
pose.dump_pdb(name.replace('designed', 'test.pdb'))
exit()
def main(args):
# get start time
initial_time = time.time()
# Initializing PyRosetta
ros_opts = init_opts(args.extra_init_options, cst_file=args.constraints)
init(options=ros_opts)
# Destination folder for PDB files
dir_name = args.out_dir
if not isdir(dir_name):
print('\nMaking directory: {}'.format(dir_name))
makedirs(dir_name)
# Getting name for outputs
if args.name:
out_name = args.name
else:
out_name = basename(args.start_struct)
# strip out .pdb or .pdb.gz extension
out_name = out_name.replace('.pdb', '').replace('.gz', '')
# Getting score function
sf = get_score_function(constraints=True, hbnet=args.use_hb_net)
# Preparing pose, with constraints, manual mutations, substrate threading, and coordinate constraint
orig_pose = pose_from_pdb(args.start_struct)
orig_pose = apply_constraints(orig_pose)
if args.constrain_peptide:
orig_pose = coord_constrain_peptide(orig_pose)
# Making residue selectors
residue_selectors = select_residues(args.cat_res, args.pep_subset,
design_protease=args.design_protease,
design_peptide=args.design_peptide)
# Creating movemap, and taskfactory for design
mm = make_move_map(orig_pose, residue_selectors)
tf = make_task_factory(residue_selectors)
# iterate through all poses in the silent file
silent_file = args.silent_file.upper()
# get full path
dec_name = join(dir_name, silent_file)
if not os.path.exists(dec_name):
print('\nMaking directory: {}'.format(dec_name))
makedirs(dec_name)
dec_name = join(dec_name, silent_file)
if os.path.exists(dec_name):
raise ValueError("Silentfile for {} substrates already exists at {}".format(silent_file, dec_name))
if "." not in silent_file:
raise ValueError("Cleavage site not indicated")
start_variable = -1
end_variable = -1
cleavage = -1
for counter,char in enumerate(silent_file):
if start_variable == -1 and char == "_":
start_variable = counter
if start_variable != -1 and end_variable == -1 and char != "_" and char != ".":
end_variable = counter
if char == ".":
cleavage = counter
if end_variable != -1 and start_variable != -1:
break
if end_variable == -1 or start_variable == -1:
raise ValueError("The variable region was not found for substrate {}, start {}, end {}".format(silent_file, start_variable, end_variable))
if cleavage < end_variable and cleavage > start_variable:
print("Cleavage in variable domain {}..{}..{}".format(start_variable, cleavage, end_variable))
var_mag = end_variable - start_variable - 1
else:
var_mag = end_variable - start_variable
# generate set of all possible substrates if a text file was provided
if args.substrate_txt != None:
fh = open(args.substrate_txt)
ll = fh.readlines()
fh.close()
sub_set = set([x.strip().upper() for x in ll])
else:
sub_set = set()
aa = "ACDEFGHIKLMNPQRSTVWY"
# find all posssible substrates to design
pose_list = []
i = 0
substrate = list(silent_file)
for variable_region in itertools.product(*[aa for i in range(var_mag)]):
vc = 0
#change variable region in directory name to the currently considered possible substrate
for counter,char in enumerate(silent_file):
if char == "_":
substrate[counter] = variable_region[vc]
vc += 1
# only model the substrate if it is in the set or a set wasn't provided
if args.substrate_txt == None or "".join(substrate) in sub_set:
#get just the substrate that will be selected
(begin, end) = args.pep_subset.split("-")
begin = int(begin) - args.position1 + silent_file.index(".") - 1
end = int(end) - args.position1 + silent_file.index(".")
substrate_designed = substrate.copy()
substrate_designed.remove(".")
substrate_designed = substrate[begin:end]
substrate_designed = "".join(substrate_designed)
pose = orig_pose.clone()
pose = make_residue_changes(pose, sf, substrate_designed,
args.subst_site, args.cat_res, args.mutations)
# Running relax and design protocol
save_wt = False
if args.design_protease or args.design_peptide:
if not args.no_relax_comparison:
save_wt = True
# Doing design and outputting decoy
print('{}/{} complete: {}%\nDesigning...'.format(i, 20**var_mag, 100 * (i/(20**var_mag))))
# add all pose outputs to a list
pose = fastrelax(pose, sf, mm, taskfactory=tf)
pose.pdb_info().name("substrate."+"".join(substrate))
pose_list.append(pose)
i += 1
# write to file in desired directory
if os.path.exists(dec_name):
raise ValueError("Silentfile for {} substrates already exists at {}".format(silent_file, dec_name))
io.poses_to_silent(pose_list, dec_name)
# print out time it took to do this silent file call
print("Time to make silent file in minutes: {}".format((time.time() - initial_time)/60))
if __name__ == '__main__':
args = parse_args()
main(args)