forked from npschafer/openawsem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforces_setup.py
53 lines (49 loc) · 2.15 KB
/
forces_setup.py
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
import os
import sys
from simtk.unit import angstrom
from simtk.unit import kilocalorie_per_mole
try:
OPENAWSEM_LOCATION = os.environ["OPENAWSEM_LOCATION"]
sys.path.append(OPENAWSEM_LOCATION)
# print(OPENAWSEM_LOCATION)
except KeyError:
print("Please set the environment variable name OPENAWSEM_LOCATION.\n Example: export OPENAWSEM_LOCATION='YOUR_OPENAWSEM_LOCATION'")
exit()
from openmmawsem import *
from helperFunctions.myFunctions import *
def set_up_forces(oa, computeQ=False, submode=-1, contactParameterLocation=".", membrane_center=-0*angstrom):
# apply forces
forces = [
con_term(oa),
chain_term(oa),
chi_term(oa),
excl_term(oa, periodic=False),
rama_term(oa),
rama_proline_term(oa),
rama_ssweight_term(oa, k_rama_ssweight=2*8.368),
contact_term(oa),
# for membrane protein simulation use contact_term below.
# contact_term(oa, z_dependent=True, inMembrane=True, membrane_center=membrane_center, k_relative_mem=3),
beta_term_1(oa),
beta_term_2(oa),
beta_term_3(oa),
pap_term_1(oa),
pap_term_2(oa),
# er_term(oa),
# membrane_term(oa, k=1*kilocalorie_per_mole, membrane_center=membrane_center),
# membrane_preassigned_term(oa, k=1*kilocalorie_per_mole, membrane_center=membrane_center, zimFile="PredictedZim"),
# fragment_memory_term(oa, frag_file_list_file="./frags.mem", npy_frag_table="./frags.npy", UseSavedFragTable=True),
fragment_memory_term(oa, frag_file_list_file="./single_frags.mem", npy_frag_table="./single_frags.npy", UseSavedFragTable=False),
# debye_huckel_term(oa, chargeFile="charge.txt"),
]
if computeQ:
forces.append(rg_term(oa))
forces.append(q_value(oa, "crystal_structure-cleaned.pdb", forceGroup=1))
# forces.append(qc_value(oa, "crystal_structure-cleaned.pdb"))
# forces.append(partial_q_value(oa, "crystal_structure-cleaned.pdb", residueIndexGroup=list(range(0, 15)), forceGroup=1))
if submode == 0:
additional_forces = [
# contact_term(oa),
]
forces += additional_forces
return forces