-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolute-temp_vo.py
More file actions
723 lines (571 loc) · 29.6 KB
/
Copy pathSolute-temp_vo.py
File metadata and controls
723 lines (571 loc) · 29.6 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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
#! $env python
d= \
"""
===============================================================================
Modification of Amber system topology to set up simulations for
STREMD (Solute Tempering Replica Exchange Simulations) method.
Modifies LJ pair potentials between F, Cf and Of atoms (TFE), OW (water) and heavy atomtypes
as well as heavy atomtypes inside the protein
------------------------
Example:
./St-REMD_ParmEd.py -f <prmtop_file> -nreps 6 -smax 1.5 -hmr -v
takes as input amber topology file <prmtop_file> to produce 6 replicas with
STREMD scaling factor up to 1.5; and default HMassRepartition by parmed.tools.
The script relies on ParmEd and Numpy tools.
Marie Bluntzer
s1772078@ed.ac.uk
version beta.1 24/10/2019
================================================================================
"""
import os
import copy
import sys
import argparse
import numpy as np
import parmed
from parmed.constants import NTYPES
import time
import subprocess
import math
def setupsimulation(seq, stapled=False, FractTFE=False , FFdir=False ) :
#shutil.copyfile(args.pdbfile,'inputs/peptide.pdb' )
aa={'A':'ALA','C':'CYS','D':'ASP','E':'GLU','F':'PHE','G':'GLY','H':'HIS','I':'ILE','K':'LYS','L':'LEU','M':'MET','N':'ASN', \
'P':'PRO','Q':'GLN','R':'ARG','S':'SER','T':'THR','V':'VAL','W':'TRP','Y':'TYR','s':'GLS', 'r' : 'GLR' }
sequence = 'ACE'
indices_stapled_residues = [i for i, x in enumerate(seq) if x == "s" or x == "r" ]
bond=''
if stapled :
lib= 'loadoff %sRES_lib/GLSStapled.lib \n loadoff %sRES_lib/GLRStapled.lib \n' %(templdir ,templdir)
while indices_stapled_residues : bond= 'bond m.%s.CE m.%s.CE' %( indices_stapled_residues.pop()+2 ,indices_stapled_residues.pop() +2)
#else : lib= 'loadoff %sRES_lib/GLS.lib \n loadoff %sRES_lib/GLR.lib \n' %(templdir ,templdir)
if FractTFE : solvent = 'loadoff %sTFE%sBOX.lib \nloadamberparams %sTFE.frcmod \nsolvatebox m TFE%sBOX 10.0 iso \n' %(FFdir , FractTFE , FFdir, FractTFE)
else : solvent = 'solvatebox m TIP4PBOX 10.0 iso \n'
for a in seq:
sequence=' '.join([sequence , aa[a] ])
Cterminal = 'C' + aa[args.seq[-1].upper()]
sequence=' '.join([sequence ,Cterminal ])
#impose an helical start( up to 20 residues )
helical=''
if args.helical : helical = 'impose m { 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 } { { "N" "CA" "C" "N" -40.0 } { "C" "N" "CA" "C" -60.0 } }'
tleap=open('tleap.in' , 'w')
tleap.writelines(['source leaprc.protein.ff14SB \n' , \
'loadamberparams frcmod.ionsjc_tip4pew \n' ,\
# 'loadamberparams %sRES_lib/parameters-atoms-bonds-angles.frcmod \n' %(templdir), \
# 'loadamberparams %sRES_lib/parameters-dihedrals-gaff2.frcmod \n' %(templdir), \
# '%s\n' %(lib) ,\
'set default PBradii mbondi2 \n' ,\
'source leaprc.water.tip4pew \n' ,\
'm = sequence { %s } \n'%(sequence) ,\
'%s \n' %(helical) ,\
'%s \n' %(bond) ,\
'relax m \n' , \
'savepdb m peptide.pdb \n',\
'charge m \n' ,\
'%s '%(solvent) , \
'addIons m Na+ 1 \n' ,\
'addIons m Cl- 0 \n' ,\
'saveamberparm m system.wat.leap.prmtop system.wat.leap.rst7 \n' , \
'quit' ] )
tleap.close()
subprocess.call('tleap -f tleap.in' , shell=True)!=0
#----------------------------------------------
def get_protein_atomtypes(input_parm):
"""
Read all residues and atoms and return a list of sidechain (+ C_alpha)
C and S atomtypes to be used in STREMD scaling.
"""
# protein atomtypes
proteic_atomtypes = []
for resid in input_parm.residues:
for atom in resid.atoms:
if atom.atomic_number in [6, 14, 16, 18]: # C, N , O and S
if atom.name != 'C' and atom.type.isupper() and atom.type not in proteic_atomtypes:
proteic_atomtypes.append(atom.type)
return proteic_atomtypes
#----------------------------------------------
def do_HMR(input_parm, HM_Da):
"""
Perform H-Mass Repartition.
HM_Da - hydrogen mass in Daltons (float).
"""
act_HMR = parmed.tools.actions.HMassRepartition(input_parm, arg_list=HM_Da)
log.write(str(act_HMR)+"\n")
if verbose: print(str(act_HMR))
act_HMR.execute()
input_parm.parm_comments['USER_COMMENTS'] += [str(act_HMR)]
return input_parm
#----------------------------------------------
def get_residue_atom_dictionary(input_parm):
"""
Read all residues and atoms and return a residue dictionary of
sidechain (+ C_alpha) C and S atomnames with associated atomtypes.
"""
# select atomtnames for scaling atomtypes
residues = {}
for resid in input_parm.residues:
if resid.name not in residues.keys() and resid.name not in ['WAT','TFE'] :
atoms_to_scale = {} # select heavy atoms to scale!
for atom in resid.atoms:
if atom.atomic_number in [6,14, 16,18]: # C,N,O and S
atoms_to_scale[atom.name] = atom.type
residues[resid.name] = atoms_to_scale
return residues_to_scale
#----------------------------------------------
def create_LJtypes(input_parm):
"""
Rename selected C/S atomtypes from preferred residues by changing
the AMBER_ATOM_TYPE to x+str(old_atom_name).
New atomtype is then added to the LJ type lists (depth and radius
values are inherited) and new nb_idx is assigned.
Returns an updated parmed parameter object.
"""
# get sidechain C/S atom_names and atom_types for each residue (includes C_alpha)
residues_apolar = get_residue_apolar_atom_dictionary(input_parm)
# RENAME ATOMTYPES
log.write("WARNING: Renaming the selected residue atom atomtypes!\n")
atomtypes_changed = []
for resname in residues_to_scale.keys():
for (aname, atype) in residues_to_scale[resname].iteritems():
# change selected atomtype - rename atomtypes!
new_atype = "x%s" % (atype)
# on selection masks - http://parmed.github.io/ParmEd/html/parmed.html#atom-selection-masks
act_changetype = parmed.tools.change(input_parm, ":%s@%s" % (resname, aname), "AMBER_ATOM_TYPE %s" % new_atype)
# write action to log
log.write(str(act_changetype)+"\n")
if list(act_changetype.mask.Selected()) == []:
print("WARNING: empty selection %s !\n" % act_changetype.mask.mask)
exit(3)
act_changetype.execute()
# keep track of renamed atomtypes
if new_atype not in atomtypes_changed:
atomtypes_changed.append(new_atype)
if verbose: print("Atomtypes renamed:\n%s\n" % ', '.join(atomtypes_changed))
# ADD NEW ATOMTYPES
log.write("WARNING: Adding the changed atomtypes (by name)!\n")
for new_atype in atomtypes_changed:
# add LJtype, based on updated atomtype name;
# here is some overlap between atomtypes in different residues
if new_atype not in input_parm.LJ_types.keys():
# add LJtype - without specification - uses epsilon and Rmin/2 of previous atomtype (default)
# updates atom.nb_idx and adds new entry to LJ_depth (espilon), LJ_radius (Rmin/2)
old_nb_idx = input_parm.LJ_types[new_atype[1:]]
old_rh, old_eps = input_parm.LJ_radius[old_nb_idx-1], input_parm.LJ_depth[old_nb_idx-1]
# use atype.replace("*", "\*") in selection to avoid wild-card results!
# strangely "\*" works instead of "'*'" here, unlike in the ParmEd manual
# on selection masks - http://parmed.github.io/ParmEd/html/parmed.html#atom-selection-masks
act_addLJtype = parmed.tools.addLJType(input_parm, "@%" + new_atype.replace("*", "\\\*") +\
" radius %s epsilon %s" % (old_rh, old_eps))
# check due to past inconsistencies!
if list(act_addLJtype.mask.Selected()) == []:
print("WARNING: empty selection %s !\n" % act_addLJtype.mask.mask)
exit(3)
act_addLJtype.execute()
# write action to log
log.write(str(act_addLJtype)+"\n")
# adds nb_idx - last index of LJ_depth / LJ_radius to LJ_types dictionary!
new_nb_idx = len(input_parm.LJ_depth)
input_parm.LJ_types[new_atype] = new_nb_idx
else:
print("WARNING: atomtype %s already exists!\n" % (new_atype))
print(input_parm.LJ_types.keys())
exit(4)
input_parm.parm_comments['USER_COMMENTS'] += ['New atomtypes created for preferred binding site residues:',\
', '.join(preferred)]
return input_parm, atomtypes_changed
#----------------------------------------------
def combineLJPair(rh_i, eps_i, rh_j, eps_j):
"""
LJ pair interaction Lorentz/Berthelot mixing rules for sigma and epsilon
----------
r_h_i, r_h_j: 'float'
half radii of i, j LJ Rmin
eps_sr_i, eps_sr_j: 'float'
square root of depth of i, j LJ potential well
"""
Rmin_ij = (rh_i + rh_j)
eps_ij = (eps_i * eps_j)**(0.5)
return Rmin_ij, eps_ij
#----------------------------------------------
def scale_solvent_protein_LJPairs(input_parm, atomtypes_changed, sfactor, verbose=False):
"""
Multiplies water (atomtype = "OW") LJPair depth (epsilon) with
selected atomtypes by sfactor according to STREMD scheme.
Returns an updated parmed parameter object.
"""
rh_OW = input_parm.LJ_radius[input_parm.LJ_types["OW"]-1] # Rmin/2
eps_OW = input_parm.LJ_depth[input_parm.LJ_types["OW"]-1]
# add COMMENTS
input_parm.parm_comments['USER_COMMENTS'] += ['STREMD METHOD (scaling factor = %.3f)' % sfactor,\
'scaled OW LJ pair interactions with atomtypes',\
', '.join(atomtypes_changed)]
# FOR GROMACS
gromacs_nonbond = "; STREMD scaling - %.2f\n" % sfactor
# select atomtnames for scaling atomtypes
for atype in atomtypes_changed:
rh_i = input_parm.LJ_radius[input_parm.LJ_types[atype]-1] # Rmin/2
eps_i = input_parm.LJ_depth[input_parm.LJ_types[atype]-1] # epsilon
Rmin_iOW, eps_iOW = combineLJPair(rh_i, eps_i, rh_OW, eps_OW)
eps_iOW *= sfactor # apply the scaling
# use atype.replace("*", "\*") in selection to avoid wild-card results!
# strangely "\*" works instead of "'*'" here, unlike in the ParmEd manual
# on selection masks - http://parmed.github.io/ParmEd/html/parmed.html#atom-selection-masks
act_changeLJPair = parmed.tools.actions.changeLJPair(input_parm, "@%" + atype.replace("*", "\\\*"), "@%OW", Rmin_iOW, eps_iOW)
# write action to log
if list(act_changeLJPair.mask1.Selected()) == []:
print("WARNING: empty selection %s !\n" % act_changeLJPair.mask1.mask)
exit(3)
act_changeLJPair.execute()
# add equivalent line in GROMACS topology
# sigma = Rmin_iOW * 2**(1.0/6) / 10 # convert to A
# epsilon = eps_iOW * 4.184 #convert to kJ/mol
# gromacs_nonbond += "%-10s %-10s 1 %8.6e %8.6e\n" % ("OW", atype, sigma, epsilon)
return input_parm, gromacs_nonbond
def scale_solvent_LJ(input_parm, sfactor, verbose=False):
"""
Multiplies water and TFE (atomtype = "OW", C O ) LJPair depth (epsilon) with solvent by sfactor according to STREMD scheme.
Returns an updated parmed parameter object.
"""
# add COMMENTS
input_parm.parm_comments['USER_COMMENTS'] += ['STREMD METHOD (scaling factor = %.3f)' % sfactor,\
'scaled OW , CS, F, OF LJ epsilon' ]
# FOR GROMACS
gromacs_nonbond = "; STREMD scaling - %.2f\n" % sfactor
# select atomtnames for scaling solvent = water and TFE
input_parm.parm_comments['USER_COMMENTS'] += ['STREMD METHOD (scaling factor = %.3f)' % sfactor,\
'scaled OW LJ pair interactions with atomtypes']
solventype=['OW']
if FractTFE not in [ 0 , False] :
solventype= ['OW', 'CS', 'F', 'OF']
if FractTFE in [ 100] :
solventype= ['CS', 'F', 'OF']
for atype in solventype:
rh_s = input_parm.LJ_radius[input_parm.LJ_types[atype]-1] # Rmin/2
eps_s = input_parm.LJ_depth[input_parm.LJ_types[atype]-1]
eps_s *= sfactor #apply the factor
act_changeLJ = parmed.tools.actions.changeLJSingleType(input_parm, "@%" + atype.replace("*", "\\\*"), rh_s, eps_s)
act_changeLJ.execute()
return input_parm
'''
# add equivalent line in GROMACS topology
sigma = Rmin_iS * 2**(1.0/6) / 10 # convert to A
epsilon = eps_iS* 4.184 #convert to kJ/mol
gromacs_nonbond += "%-10s %-10s 1 %8.6e %8.6e\n" % (atype, atype, sigma, epsilon)
'''
def scale_solvent_charges(input_parm, sfactor, verbose=False):
"""
Multiplies water and TFE (atomtype = "OW", C O ) LJPair depth (epsilon) with solvent by sfactor according to STREMD scheme.
Returns an updated parmed parameter object.
"""
# add COMMENTS
input_parm.parm_comments['USER_COMMENTS'] += ['STREMD METHOD (scaling factor = %.3f)' % math.sqrt(sfactor),\
'scaled OW , CS, F, OF partial charges ' ]
# FOR GROMACS
gromacs_nonbond = "; STREMD scaling - %.2f\n" % sfactor
solventype=[]
solventype= [ 'EP','HW' ]
if FractTFE not in [ 0 , False] :
solventype= ['EP','HW', 'CS', 'F', 'OF' ,'HF']
if FractTFE in [ 100] :
solventype= [ 'CS', 'F', 'OF' ,'HF']
solventcharge=np.zeros(len(solventype))
SOL_RES=[]
for resid in input_parm.residues:
if 0 not in solventcharge : break
for atom in resid.atoms:
if atom.type.isupper() and atom.type in solventype:
solventcharge [solventype.index(atom.type)] =atom.charge
print (solventcharge)
solventcharge *= math.sqrt(sfactor) #apply the factor
for i in solventype :
act_changecharge=parmed.tools.actions.change(input_parm, input_parm.charge_flag , "@%" + i,solventcharge[solventype.index(i)] )
act_changecharge.execute()
solventcharge=np.zeros(len(solventype))
while 0 in solventcharge:
for resid in input_parm.residues:
for atom in resid.atoms:
if atom.type.isupper() and atom.type in solventype:
solventcharge [solventype.index(atom.type)] =atom.charge
'''
for resid in input_parm.residues:
for atom in resid.atoms:
if atom.type.isupper() and atom.type in solventype:
chrg_s = atom.charge
chrg_s *= math.sqrt(sfactor)
parmed.tools.actions.change(input_parm, "CHARGE" , "@%OW", chrg_s)
print (atom.charge )
'''
return input_parm
''' chrg_s *= math.sqrt(sfactor)
for atype in solventype:
print( input_parm.type[atype]-1 , atype )
print (input_parm.__dict__.keys())
chrg_s = input_parm.charge_flag[input_parm.charge_flag[atype]-1] # Rmin/2
chrg_s *= math.sqrt(sfactor) #apply the factor
act_changechrg = parmed.tools.actions.change(input_parm, "@%" + atype.replace("*", "\\\*"), "CHARGE %s" %chrg_s)
act_changechrg.execute()
'''
'''
# add equivalent line in GROMACS topology
sigma = Rmin_iS * 2**(1.0/6) / 10 # convert to A
epsilon = eps_iS* 4.184 #convert to kJ/mol
gromacs_nonbond += "%-10s %-10s 1 %8.6e %8.6e\n" % (atype, atype, sigma, epsilon)
'''
def scale_solvent_solvent_LJPairs(input_parm, atomtypes_changed, sfactor, verbose=False):
"""
Multiplies water and TFE (atomtype = "OW", CS O ) LJPair depth (epsilon) with solvent by sfactor according to STREMD scheme.
Returns an updated parmed parameter object.
"""
# add COMMENTS
input_parm.parm_comments['USER_COMMENTS'] += ['STREMD METHOD (scaling factor = %.3f)' % sfactor,\
'scaled solvent LJ pair interactions with atomtypes',\
', '.join(atomtypes_changed)]
# FOR GROMACS
gromacs_nonbond = "; STREMD scaling - %.2f\n" % sfactor
# select atomtnames for scaling solvent = water and TFE
for atype in [OW, C, F, O]:
for btype in [OW, C, F, O]:
rh_S1 = input_parm.LJ_radius[input_parm.LJ_types[atype]-1] # Rmin/2
eps_S1 = input_parm.LJ_depth[input_parm.LJ_types[atype]-1]
rh_S2 = input_parm.LJ_radius[input_parm.LJ_types[btype]-1] # Rmin/2
eps_S2 = input_parm.LJ_depth[input_parm.LJ_types[btype]-1] # epsilon
Rmin_S, eps_S = combineLJPair(rh_S1, eps_S1, rh_S2, eps_S2)
eps_iS *= sfactor # apply the scaling
# use atype.replace("*", "\*") in selection to avoid wild-card results!
# strangely "\*" works instead of "'*'" here, unlike in the ParmEd manual
# on selection masks - http://parmed.github.io/ParmEd/html/parmed.html#atom-selection-masks
act_changeLJPair = parmed.tools.actions.changeLJPair(input_parm, "@%" + atype.replace("*", "\\\*"), "@%" + atype.replace("*", "\\\*"), Rmin_S, eps_iS)
# write action to log
if list(act_changeLJPair.mask1.Selected()) == []:
print("WARNING: empty selection %s !\n" % act_changeLJPair.mask1.mask)
exit(3)
act_changeLJPair.execute()
# add equivalent line in GROMACS topology
sigma = Rmin_iS * 2**(1.0/6) / 10 # convert to A
epsilon = eps_iS* 4.184 #convert to kJ/mol
gromacs_nonbond += "%-10s %-10s 1 %8.6e %8.6e\n" % (atype, btype, sigma, epsilon)
return input_parm, gromacs_nonbond
#----------------------------------------------
def scale_protein_protein_LJPairs(input_parm, atomtypes_changed, sfactor, verbose=False): #REST1
# add COMMENTS
input_parm.parm_comments['USER_COMMENTS'] += ['STREMD METHOD (scaling factor = %.3f)' % sfactor,\
'scaled P-P LJ pair interactions with atomtypes',\
', '.join(atomtypes_changed)]
# FOR GROMACS
gromacs_nonbond = "; STREMD scaling - %.2f\n" % sfactor
# select atomtnames for scaling atomtypes
for k in range(len(atomtypes_changed)):
atype=atomtypes_changed[k]
for j in range(k,len(atomtypes_changed)):
btype=atomtypes_changed[j]
rh_k = input_parm.LJ_radius[input_parm.LJ_types[atype]-1] # Rmin/2
eps_k = input_parm.LJ_depth[input_parm.LJ_types[atype]-1] # epsilon
rh_j = input_parm.LJ_radius[input_parm.LJ_types[atype]-1] # Rmin/2
eps_j = input_parm.LJ_depth[input_parm.LJ_types[atype]-1] # epsilon
Rmin_s, eps_s = combineLJPair(rh_k, eps_k, rh_j, eps_j)
eps_j *= sfactor # apply the scaling
act_changeLJPair = parmed.tools.actions.changeLJPair(input_parm, "@%" + atype.replace("*", "\\\*"), "@%" + atype.replace("*", "\\\*"), Rmin_s, eps_s)
# write action to log
if list(act_changeLJPair.mask1.Selected()) == []:
print("WARNING: empty selection %s !\n" % act_changeLJPair.mask1.mask)
exit(3)
act_changeLJPair.execute()
# add equivalent line in GROMACS topology
sigma = Rmin_s* 2**(1.0/6) / 10 # convert to A
epsilon = eps_j * 4.184 #convert to kJ/mol
gromacs_nonbond += "%-10s %-10s 1 %8.6e %8.6e\n" % ("OW", atype, sigma, epsilon)
return input_parm, gromacs_nonbond
#----------------------------------------------
def get_NONBONDED_PARM_INDEX(input_parm, atype_i, atype_j):
"""
Get NONBONDED_PARM_INDEX for atomtype_i and atomtype_j LJ interaction.
Returns and index using Amber prmtop file convention (start index = 1).
If parm_data is modified as Python list - the index needs to be reduced by 1.
"""
# get ATOM_TYPE_INDEX for both i and j
i, j = input_parm.LJ_types[atype_i], input_parm.LJ_types[atype_j]
# max is equal to total value of types (indexed starting with 1)
#NTYPES = np.max(parm.LJ_types.values())
ntypes = ntypes = parm.pointers['NTYPES']
# NONBONDED_PARM_INDEX = NTYPES * [ ATOM_TYPE_INDEX(i) - 1 ] + ATOM_TYPE_INDEX(j)
#ij = parm.pointers['NTYPES'] * (i - 1) + j
ij = parm.parm_data['NONBONDED_PARM_INDEX'][ntypes*(i-1)+j-1] - 1
return ij
#----------------------------------------------
def remove_BCOEF(input_parm, atomtypes):
"""
Remove BCOEF (C6) for the attractive part of LJ.
Usage eg. to prevent ligand aggregation.
----
input:
input_parm - default system parameters
atomtypes - list of atomtypes
"""
for i in np.arange(len(atomtypes)):
atype_i = atomtypes[i]
for j in np.arange(i, len(atomtypes)):
atype_j = atomtypes[j]
# get cross interaction coefficient index
ij = get_NONBONDED_PARM_INDEX(input_parm, atype_i, atype_j)
# set BCOEF to zero!
# adjust to pythonic start indexing at 0
input_parm.parm_data["LENNARD_JONES_BCOEF"][ij - 1] = 0.0
str_action = "Removing LJ attractive @%"+atype_i+"-@%"+atype_j+" pairwise interaction. (C6, BCOEF = 0.0)"
log.write(str_action)
if verbose: print(str_action)
return
#----------------------------------------------
def add_nonbond_params(gmxtopin, gmx_nonbond, gmxtopout):
""" adds lines in place of nonbond_params described in gmx_nonbond"""
outfile=open(gmxtopout, "w")
outfile.write(";\n;\tFile has been modified from default version of\n" +\
";\t'%s'\n" % gmxtopin +\
";\tusing Python script written by Marie\n" +\
";\tTime: %s\n" % time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) +\
";\tChanges comprise of added [ nonbond_parms ] section\n")
with open(gmxtopin, "r") as topol:
atomtypes=0
for line in topol.readlines():
# only does something after 1st atomtypes
if atomtypes==1:
if line.startswith(";"):
continue
elif line.startswith("\n") or line.startswith("["): # break
outfile.write("\n[ nonbond_params ]\n"+\
"; type_i type_j f.type sigma epsilon\n"+\
"; f.type=1 means LJ (not Buckingham)\n"+\
"; sigma&eps since mixing-rule = 2\n")
outfile.write(gmx_nonbond)
atomtypes+=1
elif line.startswith("[ atomtypes ]"):
atomtypes+=1
outfile.write(line)
outfile.close()
print("written "+ gmxtopout)
return
#####################################################
###################### MAIN #########################
#####################################################
# keep the time!
start_time = time.clock()
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter, description=d, epilog=" ")
parser.add_argument("-f", type=str, default='system.wat.leap.prmtop', help='input AMBER topology file name (default: %(default)s)')
parser.add_argument("-o", type=str, default=None, help='output AMBER topology file name (default: system[HMR]_STREMD.XXX.prmtop)')
parser.add_argument("-nreps", type=int, default=11, help='number of replicas (default: %(default)s)')
parser.add_argument("-smax", type=float, default=0.5, help="maximum scaling factor (default: %(default)s)")
parser.add_argument("-smin", type=float, default=1.0, help="minimum scaling factor (default: %(default)s)")
parser.add_argument("-scale", type=float, nargs='+', default=[], help="list of scaling factor(s); overrides -nreps, -smax, -smin (default: %(default)s)")
parser.add_argument("-ignore", default=False, action='store_true', help="ignore warnings (default: %(default)s)")
parser.add_argument("-hmr", default=False, action='store_true', help="HMassRepartition (default: %(default)s)")
parser.add_argument("-hm_Da", type=float, default=None, help="H mass in Daltons used in HMR (default: use parmed default, 3.024)")
parser.add_argument("-v", "--verbose", action='store_true', help="be verbose")
parser.add_argument("-xyz", type=str, default='system.wat.leap.rst7', help='input AMBER coordinate file name (default: %(default)s)')
parser.add_argument("-gmx", default=False, action='store_true', help="save GROMACS topology, too (default: %(default)s)")
parser.add_argument('-seq' , type=str , help='input sequence')
parser.add_argument('-helical' , action='store_true' , help='whether the peptide start in an helical conformation ' )
parser.add_argument('-stapled' , action='store_true', help='whether the peptide is stapled' )
#parser.add_argument('-ForcefieldParameters' , action='store_true', default='/home/marie/SP_git/ForceFieldFiles/', help="Forcefield librairy for residue and solvent (default: %(default)s)" )
#parser.add_argument('-FractTFE' , default=0, action='store_true', type=int, help='fraction of TFE' )
parser.add_argument('-FracTFE' , default=0, type=int, help='input sequence')
parser.add_argument('-FFdir' ,default='/home/marie/SP_git/ForceFieldFiles/' , action='store_true', help='Additional forcefield files for custom residus and solvent %(default)s' )
########################################################
# PARSING INPUTS
########################################################
args = parser.parse_args()
inputfile = args.f
outputname = args.o
nreps = args.nreps
smax = args.smax
smin = args.smin
scale = [ sf for sf in args.scale ]
HMR = args.hmr
HM_Da = args.hm_Da
verbose = args.verbose
ignore = args.ignore
inputcoords = args.xyz
gmx = args.gmx
sequence=args.seq
FractTFE=args.FracTFE
FFdir=args.FFdir
print(FFdir )
if sequence :
setupsimulation(sequence,FractTFE=FractTFE, FFdir=FFdir)
else :
if FractTFE or stapled or helical : exit('Errror : input FractTFE or stapled or helical only valid if paramater files are generated from the file please provide a sequence')
#######################
##### check the input
if not os.path.isfile(inputfile):
print("ERROR: file %s not found or no sequence provided, check your inputs" % inputfile)
exit(1)
else:
input_parm = parmed.amber.readparm.AmberParm(inputfile, xyz=inputcoords)
print("%s\n SOLUTE TEMPERING SETUP\n%s\n\n" % ("#"*42, "#"*42) +\
"Input files read!\nStarting the script. This should take about a minute or two...\n")
if scale == []:
sfactors = np.linspace(smin, smax, nreps)
else:
sfactors = scale
nreps = len(scale)
if 1.0 not in sfactors:
print("WARNING: scaling factors does not include 1.0 - are you sure, it's OK?")
print(sfactors)
if not ignore:
print("If above list looks OK, and you know what you are doing: restart with a flag '-ignore' to proceed.")
exit(2)
######################
### begin the script
# define output file root!
if outputname == None:
# use the same root as the input file with modifications to be added to the name!
outputname = ".".join(inputfile.split(".")[:-1])
dirpath="./"
logfile = "STREMD_%s.log" % time.strftime("%Y-%m-%d", time.gmtime())
print("Writing all the modifications to the log file: %s\n" % logfile)
log = open(logfile, 'w')
log.write("# This log was created on %s \n# by executing this command line:\n# %s\n###\n" %\
(time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()), ' '.join(sys.argv)))
# add USER_COMMENTS flag to .prmtop file!
input_parm.add_flag("USER_COMMENTS", "(20a4)", data=None, num_items=0)
###########
#### HMR
if HMR:
# perform HMR
input_parm = do_HMR(input_parm, HM_Da)
outputname += "+HMR"
if gmx:
# save GRO base
gmx_output = dirpath+outputname
input_parm.save(gmx_output+".gro", overwrite=True)
input_parm.save(gmx_output+".top", overwrite=True)
####Solute Tempering !!
# use all heavy atomtypes for scaling
atomtypes_STREMD = get_protein_atomtypes(input_parm)
for rep in np.arange(nreps):
sfactor = sfactors[rep]
print_replica = '### Replica %03d - scaling factor %.3f\n' % (rep, sfactor)
log.write(print_replica)
if verbose: print(print_replica)
# apply STREMD-type scaling!
input_parm_copy = copy.copy(input_parm)
#new_parm, STREMD_gmx_nonbond = scale_solvent_protein_LJPairs(input_parm_copy, atomtypes_STREMD, np.sqrt(sfactor), verbose=True)
#new_parm, STREMD_gmx_nonbond = scale_protein_protein_LJPairs(input_parm_copy, atomtypes_STREMD, sfactor, verbose=True)
new_parm_LJ = scale_solvent_LJ(input_parm_copy, sfactor, verbose=True)
new_parm = scale_solvent_charges(new_parm_LJ, sfactor, verbose=True)
# check if off-diagonal terms have been changed
if verbose: print("Off-diagonal terms changed: %s\n" % str(new_parm.has_NBFIX()))
# SAVE AMBER .PRMTOP
new_parm.save(dirpath+'%s+STREMD.%03d.prmtop' % (outputname, rep), format="amber", overwrite=True)
print_saved = '### New topology saved as %s+STREMD.%03d.prmtop\n' % (outputname, rep)
log.write(print_saved)
if verbose: print(print_saved)
# SAVE GMX .TOP
if gmx:
# GROMACS - modify nonbond
gmx_nonbond = lig_gmx_nonbond + STREMD_gmx_nonbond
# save
add_nonbond_params(gmx_output+".top", gmx_nonbond, dirpath+outputname+"+STREMD%i.top" % rep)
print_saved_gmx = '### New GMX topology saved as '+ dirpath+outputname+'+STREMD%i.top\n' % rep
log.write(print_saved_gmx)
if verbose: print(print_saved_gmx)
# finish writing the log
log.close()
print("DONE!\nSee logfile for details: %s\n\nRunning time: %.2f s" % (logfile, time.clock() - start_time))