bfee2 2.5.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bfee2 might be problematic. Click here for more details.

Files changed (65) hide show
  1. BFEE2/__init__.py +0 -0
  2. BFEE2/commonTools/__init__.py +0 -0
  3. BFEE2/commonTools/commonSlots.py +48 -0
  4. BFEE2/commonTools/fileParser.py +327 -0
  5. BFEE2/commonTools/ploter.py +218 -0
  6. BFEE2/doc/Doc.pdf +0 -0
  7. BFEE2/doc/__init__.py +1 -0
  8. BFEE2/gui.py +2136 -0
  9. BFEE2/inputGenerator.py +2857 -0
  10. BFEE2/postTreatment.py +502 -0
  11. BFEE2/templates_gromacs/000.colvars.template +37 -0
  12. BFEE2/templates_gromacs/000.generate_tpr_sh.template +31 -0
  13. BFEE2/templates_gromacs/000.mdp.template +70 -0
  14. BFEE2/templates_gromacs/001.colvars.template +76 -0
  15. BFEE2/templates_gromacs/001.generate_tpr_sh.template +31 -0
  16. BFEE2/templates_gromacs/001.mdp.template +70 -0
  17. BFEE2/templates_gromacs/001.readme.template +1 -0
  18. BFEE2/templates_gromacs/002.colvars.template +101 -0
  19. BFEE2/templates_gromacs/002.generate_tpr_sh.template +31 -0
  20. BFEE2/templates_gromacs/002.mdp.template +70 -0
  21. BFEE2/templates_gromacs/003.colvars.template +125 -0
  22. BFEE2/templates_gromacs/003.generate_tpr_sh.template +36 -0
  23. BFEE2/templates_gromacs/003.mdp.template +70 -0
  24. BFEE2/templates_gromacs/004.colvars.template +148 -0
  25. BFEE2/templates_gromacs/004.generate_tpr_sh.template +37 -0
  26. BFEE2/templates_gromacs/004.mdp.template +70 -0
  27. BFEE2/templates_gromacs/005.colvars.template +170 -0
  28. BFEE2/templates_gromacs/005.generate_tpr_sh.template +38 -0
  29. BFEE2/templates_gromacs/005.mdp.template +70 -0
  30. BFEE2/templates_gromacs/006.colvars.template +192 -0
  31. BFEE2/templates_gromacs/006.generate_tpr_sh.template +39 -0
  32. BFEE2/templates_gromacs/006.mdp.template +70 -0
  33. BFEE2/templates_gromacs/007.colvars.template +210 -0
  34. BFEE2/templates_gromacs/007.generate_tpr_sh.template +40 -0
  35. BFEE2/templates_gromacs/007.mdp.template +69 -0
  36. BFEE2/templates_gromacs/007_eq.colvars.template +169 -0
  37. BFEE2/templates_gromacs/007_eq.generate_tpr_sh.template +64 -0
  38. BFEE2/templates_gromacs/007_min.mdp.template +58 -0
  39. BFEE2/templates_gromacs/008.colvars.template +42 -0
  40. BFEE2/templates_gromacs/008.generate_tpr_sh.template +31 -0
  41. BFEE2/templates_gromacs/008.mdp.template +70 -0
  42. BFEE2/templates_gromacs/008_eq.generate_tpr_sh.template +31 -0
  43. BFEE2/templates_gromacs/BFEEGromacs.py +1244 -0
  44. BFEE2/templates_gromacs/__init__.py +0 -0
  45. BFEE2/templates_gromacs/find_min_max.awk +27 -0
  46. BFEE2/templates_namd/__init__.py +0 -0
  47. BFEE2/templates_namd/configTemplate.py +1094 -0
  48. BFEE2/templates_namd/fep.tcl +299 -0
  49. BFEE2/templates_namd/scriptTemplate.py +149 -0
  50. BFEE2/templates_namd/solvate.tcl +9 -0
  51. BFEE2/templates_namd/solvate_mem.tcl +9 -0
  52. BFEE2/templates_namd/updateCenters.py +311 -0
  53. BFEE2/templates_readme/Readme_Gromacs_Geometrical.txt +25 -0
  54. BFEE2/templates_readme/Readme_NAMD_Alchemical.txt +20 -0
  55. BFEE2/templates_readme/Readme_NAMD_Geometrical.txt +34 -0
  56. BFEE2/templates_readme/__init__.py +1 -0
  57. BFEE2/third_party/__init__.py +0 -0
  58. BFEE2/third_party/py_bar.py +335 -0
  59. BFEE2/version.py +2 -0
  60. bfee2-2.5.0.data/scripts/BFEE2Gui.py +18 -0
  61. bfee2-2.5.0.dist-info/LICENSE +677 -0
  62. bfee2-2.5.0.dist-info/METADATA +76 -0
  63. bfee2-2.5.0.dist-info/RECORD +65 -0
  64. bfee2-2.5.0.dist-info/WHEEL +5 -0
  65. bfee2-2.5.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,76 @@
1
+ colvarsTrajFrequency 500
2
+ colvarsRestartFrequency 50000
3
+ indexFile colvars.ndx
4
+
5
+ colvar {
6
+ name RMSD
7
+ width $rmsd_bin_width
8
+ lowerboundary $rmsd_lower_boundary
9
+ upperboundary $rmsd_upper_boundary
10
+ subtractAppliedForce on
11
+ extendedLagrangian on
12
+ extendedFluctuation $rmsd_bin_width
13
+ rmsd {
14
+ atoms {
15
+ indexGroup $ligand_selection
16
+ }
17
+ refPositionsfile reference.xyz
18
+ }
19
+ }
20
+
21
+ harmonicWalls {
22
+ colvars RMSD
23
+ lowerWalls $rmsd_lower_boundary
24
+ upperWalls $rmsd_upper_boundary
25
+ lowerWallConstant $rmsd_wall_constant
26
+ upperWallConstant $rmsd_wall_constant
27
+ }
28
+
29
+ abf {
30
+ colvars RMSD
31
+ FullSamples 10000
32
+ historyfreq 50000
33
+ writeCZARwindowFile on
34
+ }
35
+
36
+ metadynamics {
37
+ colvars RMSD
38
+ hillWidth $rmsd_bin_width
39
+ hillWeight 0.2092
40
+ wellTempered on
41
+ biasTemperature 4000
42
+ }
43
+
44
+ colvar {
45
+ name translation
46
+ distance {
47
+ group1 {
48
+ indexGroup $protein_selection
49
+ }
50
+ group2 {
51
+ dummyAtom $protein_center
52
+ }
53
+ }
54
+ }
55
+
56
+ harmonic {
57
+ colvars translation
58
+ centers 0.0
59
+ forceConstant 4184
60
+ }
61
+
62
+ colvar {
63
+ name orientation
64
+ orientation {
65
+ atoms {
66
+ indexGroup $protein_selection
67
+ }
68
+ refPositionsfile reference.xyz
69
+ }
70
+ }
71
+
72
+ harmonic {
73
+ colvars orientation
74
+ centers (1.0, 0.0, 0.0, 0.0)
75
+ forceConstant 836.8
76
+ }
@@ -0,0 +1,31 @@
1
+ #!/bin/sh
2
+
3
+ # define the binary of gromacs
4
+ if which gmx_mpi &> /dev/null; then
5
+ GMX_BIN=$(which gmx_mpi)
6
+ else which gmx &> /dev/null;
7
+ GMX_BIN=$(which gmx)
8
+ fi
9
+ echo "Will use the gromacs executable binary at $GMX_BIN"
10
+
11
+ # input (.gro, .top and .mdp) and output (.tpr)
12
+ # MDP_FILE: running parameters
13
+ # GRO_FILE: atom positions
14
+ # TOP_FILE: topology
15
+ MDP_FILE=$MDP_FILE_TEMPLATE
16
+ GRO_FILE=$GRO_FILE_TEMPLATE
17
+ TOP_FILE=$TOP_FILE_TEMPLATE
18
+
19
+ # generate the tpr file
20
+ OUTPUT_BASENAME=$(basename "$(pwd)")
21
+ TPR_FILE="$OUTPUT_BASENAME.tpr"
22
+ NEW_MDP_FILE="$OUTPUT_BASENAME.mdp"
23
+ echo "Making gromacs tpr file ($TPR_FILE)..."
24
+ $GMX_BIN grompp -f $MDP_FILE -c $GRO_FILE -p $TOP_FILE -o $TPR_FILE -po $NEW_MDP_FILE
25
+
26
+ # run the PMF calculation
27
+ mkdir -p output
28
+ DEFAULT_OUTPUT_FILENAME="output/$OUTPUT_BASENAME.out"
29
+ # $GMX_BIN mdrun -ntmpi 1 -ntomp 4 -nb gpu -pme gpu -gpu_id 0 -s $TPR_FILE -deffnm $DEFAULT_OUTPUT_FILENAME -colvars colvar.dat
30
+ echo "You can now run gromacs by the following example:"
31
+ echo "$GMX_BIN mdrun -ntmpi 1 -ntomp 4 -nb gpu -pme gpu -gpu_id 0 -s $TPR_FILE -deffnm $DEFAULT_OUTPUT_FILENAME -colvars $COLVARS_INPUT_TEMPLATE"
@@ -0,0 +1,70 @@
1
+ ;equilibration of p41-abl
2
+
3
+ ;Run control
4
+ integrator = md
5
+ dt = $dt
6
+ tinit = 0
7
+ nsteps = $nsteps
8
+ comm-mode = Linear
9
+ nstcomm = 1000
10
+
11
+ ;Langevin dynamics
12
+ bd-fric = 0
13
+ ld-seed = -1
14
+
15
+ ;Energy minimization
16
+ ;emtol = 10
17
+ ;emstep = 0.01
18
+
19
+ ;Output control
20
+ nstxout = 5000
21
+ nstvout = 5000
22
+ nstfout = 5000
23
+ nstlog = 5000
24
+ nstcalcenergy = 1000
25
+ nstenergy = 5000
26
+
27
+ ;Neighbor searching
28
+ cutoff-scheme = Verlet
29
+ ns-type = grid
30
+ pbc = xyz
31
+ periodic-molecules = no
32
+
33
+ ;Electrostatics
34
+ coulombtype = PME
35
+ coulomb-modifier = Potential-shift-Verlet
36
+ rcoulomb = 1.2
37
+
38
+ ;VdW
39
+ vdwtype = Cut-off
40
+ vdw-modifier = force-switch
41
+ rvdw = 1.2
42
+ rvdw-switch = 1.0
43
+ DispCorr = no
44
+
45
+ ;Bonds (for minimization)
46
+ constraint-algorithm = LINCS
47
+ constraints = h-bonds
48
+ continuation = yes
49
+ morse = no
50
+
51
+ ;Implicit solvent
52
+ implicit-solvent = no
53
+
54
+ ;Pressure coupling
55
+ ;Pressure coupling
56
+ pcoupl = C-rescale
57
+ pcoupltype = Isotropic
58
+ nstpcouple = -1
59
+ tau-p = 2
60
+ compressibility = 4.5e-5
61
+ ref-p = $pressure
62
+
63
+ ;Temperature coupling
64
+ tcoupl = v-rescale
65
+ tc-grps = System
66
+ tau_t = 0.1
67
+ ref_t = $temperature
68
+
69
+ ;Velocity generation
70
+ gen-vel = no
@@ -0,0 +1,101 @@
1
+ colvarsTrajFrequency 500
2
+ colvarsRestartFrequency 50000
3
+ indexFile colvars.ndx
4
+
5
+ colvar {
6
+ name RMSD
7
+ rmsd {
8
+ atoms {
9
+ indexGroup $ligand_selection
10
+ }
11
+ refPositionsfile reference.xyz
12
+ }
13
+ }
14
+
15
+ colvar {
16
+ name eulerTheta
17
+ width $eulerTheta_width
18
+ lowerboundary $eulerTheta_lower_boundary
19
+ upperboundary $eulerTheta_upper_boundary
20
+ subtractAppliedForce on
21
+ extendedLagrangian on
22
+ extendedFluctuation $eulerTheta_width
23
+ eulerTheta {
24
+ atoms {
25
+ indexGroup $ligand_selection
26
+ centerToReference on
27
+ rotateToReference on
28
+ centerToOrigin on
29
+ enableFitGradients on
30
+ fittingGroup {
31
+ indexGroup $protein_selection
32
+ }
33
+ refPositionsfile reference.xyz
34
+ }
35
+ refPositionsfile reference.xyz
36
+ }
37
+ }
38
+
39
+
40
+ harmonicWalls {
41
+ colvars eulerTheta
42
+ lowerWalls $eulerTheta_lower_boundary
43
+ upperWalls $eulerTheta_upper_boundary
44
+ lowerWallConstant $eulerTheta_wall_constant
45
+ upperWallConstant $eulerTheta_wall_constant
46
+ }
47
+
48
+
49
+ abf {
50
+ colvars eulerTheta
51
+ FullSamples 10000
52
+ historyfreq 50000
53
+ writeCZARwindowFile
54
+ }
55
+ metadynamics {
56
+ colvars eulerTheta
57
+ hillWidth 3.0
58
+ hillWeight 0.2092
59
+ wellTempered on
60
+ biasTemperature 4000
61
+ }
62
+
63
+ harmonic {
64
+ colvars RMSD
65
+ forceConstant 4184
66
+ centers 0
67
+ }
68
+
69
+ colvar {
70
+ name translation
71
+ distance {
72
+ group1 {
73
+ indexGroup $protein_selection
74
+ }
75
+ group2 {
76
+ dummyAtom $protein_center
77
+ }
78
+ }
79
+ }
80
+
81
+ harmonic {
82
+ colvars translation
83
+ centers 0.0
84
+ forceConstant 4184
85
+ }
86
+
87
+ colvar {
88
+ name orientation
89
+ orientation {
90
+ atoms {
91
+ indexGroup $protein_selection
92
+ }
93
+ refPositionsfile reference.xyz
94
+ }
95
+ }
96
+
97
+ harmonic {
98
+ colvars orientation
99
+ centers (1.0, 0.0, 0.0, 0.0)
100
+ forceConstant 836.8
101
+ }
@@ -0,0 +1,31 @@
1
+ #!/bin/sh
2
+
3
+ # define the binary of gromacs
4
+ if which gmx_mpi &> /dev/null; then
5
+ GMX_BIN=$(which gmx_mpi)
6
+ else which gmx &> /dev/null;
7
+ GMX_BIN=$(which gmx)
8
+ fi
9
+ echo "Will use the gromacs executable binary at $GMX_BIN"
10
+
11
+ # input (.gro, .top and .mdp) and output (.tpr)
12
+ # MDP_FILE: running parameters
13
+ # GRO_FILE: atom positions
14
+ # TOP_FILE: topology
15
+ MDP_FILE=$MDP_FILE_TEMPLATE
16
+ GRO_FILE=$GRO_FILE_TEMPLATE
17
+ TOP_FILE=$TOP_FILE_TEMPLATE
18
+
19
+ # generate the tpr file
20
+ OUTPUT_BASENAME=$(basename "$(pwd)")
21
+ TPR_FILE="$OUTPUT_BASENAME.tpr"
22
+ NEW_MDP_FILE="$OUTPUT_BASENAME.mdp"
23
+ echo "Making gromacs tpr file ($TPR_FILE)..."
24
+ $GMX_BIN grompp -f $MDP_FILE -c $GRO_FILE -p $TOP_FILE -o $TPR_FILE -po $NEW_MDP_FILE
25
+
26
+ # run the PMF calculation
27
+ mkdir -p output
28
+ DEFAULT_OUTPUT_FILENAME="output/$OUTPUT_BASENAME.out"
29
+ # $GMX_BIN mdrun -ntmpi 1 -ntomp 4 -nb gpu -pme gpu -gpu_id 0 -s $TPR_FILE -deffnm $DEFAULT_OUTPUT_FILENAME -colvars colvar.dat
30
+ echo "You can now run gromacs by the following example:"
31
+ echo "$GMX_BIN mdrun -ntmpi 1 -ntomp 4 -nb gpu -pme gpu -gpu_id 0 -s $TPR_FILE -deffnm $DEFAULT_OUTPUT_FILENAME -colvars $COLVARS_INPUT_TEMPLATE"
@@ -0,0 +1,70 @@
1
+ ;equilibration of p41-abl
2
+
3
+ ;Run control
4
+ integrator = md
5
+ dt = $dt
6
+ tinit = 0
7
+ nsteps = $nsteps
8
+ comm-mode = Linear
9
+ nstcomm = 1000
10
+
11
+ ;Langevin dynamics
12
+ bd-fric = 0
13
+ ld-seed = -1
14
+
15
+ ;Energy minimization
16
+ ;emtol = 10
17
+ ;emstep = 0.01
18
+
19
+ ;Output control
20
+ nstxout = 5000
21
+ nstvout = 5000
22
+ nstfout = 5000
23
+ nstlog = 5000
24
+ nstcalcenergy = 1000
25
+ nstenergy = 5000
26
+
27
+ ;Neighbor searching
28
+ cutoff-scheme = Verlet
29
+ ns-type = grid
30
+ pbc = xyz
31
+ periodic-molecules = no
32
+
33
+ ;Electrostatics
34
+ coulombtype = PME
35
+ coulomb-modifier = Potential-shift-Verlet
36
+ rcoulomb = 1.2
37
+
38
+ ;VdW
39
+ vdwtype = Cut-off
40
+ vdw-modifier = force-switch
41
+ rvdw = 1.2
42
+ rvdw-switch = 1.0
43
+ DispCorr = no
44
+
45
+ ;Bonds (for minimization)
46
+ constraint-algorithm = LINCS
47
+ constraints = h-bonds
48
+ continuation = yes
49
+ morse = no
50
+
51
+ ;Implicit solvent
52
+ implicit-solvent = no
53
+
54
+ ;Pressure coupling
55
+ ;Pressure coupling
56
+ pcoupl = C-rescale
57
+ pcoupltype = Isotropic
58
+ nstpcouple = -1
59
+ tau-p = 2
60
+ compressibility = 4.5e-5
61
+ ref-p = $pressure
62
+
63
+ ;Temperature coupling
64
+ tcoupl = v-rescale
65
+ tc-grps = System
66
+ tau_t = 0.1
67
+ ref_t = $temperature
68
+
69
+ ;Velocity generation
70
+ gen-vel = no
@@ -0,0 +1,125 @@
1
+ colvarsTrajFrequency 500
2
+ colvarsRestartFrequency 50000
3
+ indexFile colvars.ndx
4
+
5
+ colvar {
6
+ name RMSD
7
+ rmsd {
8
+ atoms {
9
+ indexGroup $ligand_selection
10
+ }
11
+ refPositionsfile reference.xyz
12
+ }
13
+ }
14
+
15
+ colvar {
16
+ name eulerTheta
17
+ eulerTheta {
18
+ atoms {
19
+ indexGroup $ligand_selection
20
+ centerToReference on
21
+ rotateToReference on
22
+ centerToOrigin on
23
+ enableFitGradients on
24
+ fittingGroup {
25
+ indexGroup $protein_selection
26
+ }
27
+ refPositionsfile reference.xyz
28
+ }
29
+ refPositionsfile reference.xyz
30
+ }
31
+ }
32
+
33
+ colvar {
34
+ name eulerPhi
35
+ width $eulerPhi_width
36
+ lowerboundary $eulerPhi_lower_boundary
37
+ upperboundary $eulerPhi_upper_boundary
38
+ subtractAppliedForce on
39
+ extendedLagrangian on
40
+ extendedFluctuation $eulerPhi_width
41
+ eulerPhi {
42
+ atoms {
43
+ indexGroup $ligand_selection
44
+ centerToReference on
45
+ rotateToReference on
46
+ centerToOrigin on
47
+ enableFitGradients on
48
+ fittingGroup {
49
+ indexGroup $protein_selection
50
+ }
51
+ refPositionsfile reference.xyz
52
+ }
53
+ refPositionsfile reference.xyz
54
+ }
55
+ }
56
+
57
+ harmonicWalls {
58
+ colvars eulerPhi
59
+ lowerWalls $eulerPhi_lower_boundary
60
+ upperWalls $eulerPhi_upper_boundary
61
+ lowerWallConstant $eulerPhi_wall_constant
62
+ upperWallConstant $eulerPhi_wall_constant
63
+ }
64
+
65
+ abf {
66
+ colvars eulerPhi
67
+ FullSamples 10000
68
+ historyfreq 50000
69
+ writeCZARwindowFile
70
+ }
71
+
72
+ metadynamics {
73
+ colvars eulerPhi
74
+ hillWidth 3.0
75
+ hillWeight 0.2092
76
+ wellTempered on
77
+ biasTemperature 4000
78
+ }
79
+
80
+ harmonic {
81
+ colvars eulerTheta
82
+ forceConstant 0.4184
83
+ centers 002_pmf_argmin
84
+ }
85
+
86
+
87
+ harmonic {
88
+ colvars RMSD
89
+ forceConstant 4184
90
+ centers 0
91
+ }
92
+
93
+ colvar {
94
+ name translation
95
+ distance {
96
+ group1 {
97
+ indexGroup $protein_selection
98
+ }
99
+ group2 {
100
+ dummyAtom $protein_center
101
+ }
102
+ }
103
+ }
104
+
105
+ harmonic {
106
+ colvars translation
107
+ centers 0.0
108
+ forceConstant 4184
109
+ }
110
+
111
+ colvar {
112
+ name orientation
113
+ orientation {
114
+ atoms {
115
+ indexGroup $protein_selection
116
+ }
117
+ refPositionsfile reference.xyz
118
+ }
119
+ }
120
+
121
+ harmonic {
122
+ colvars orientation
123
+ centers (1.0, 0.0, 0.0, 0.0)
124
+ forceConstant 836.8
125
+ }
@@ -0,0 +1,36 @@
1
+ #!/bin/sh
2
+
3
+ # define the binary of gromacs
4
+ if which gmx_mpi &> /dev/null; then
5
+ GMX_BIN=$(which gmx_mpi)
6
+ else which gmx &> /dev/null;
7
+ GMX_BIN=$(which gmx)
8
+ fi
9
+ echo "Will use the gromacs executable binary at $GMX_BIN"
10
+
11
+ # input (.gro, .top and .mdp) and output (.tpr)
12
+ # MDP_FILE: running parameters
13
+ # GRO_FILE: atom positions
14
+ # TOP_FILE: topology
15
+ MDP_FILE=$MDP_FILE_TEMPLATE
16
+ GRO_FILE=$GRO_FILE_TEMPLATE
17
+ TOP_FILE=$TOP_FILE_TEMPLATE
18
+
19
+ # generate the tpr file
20
+ OUTPUT_BASENAME=$(basename "$(pwd)")
21
+ TPR_FILE="$OUTPUT_BASENAME.tpr"
22
+ NEW_MDP_FILE="$OUTPUT_BASENAME.mdp"
23
+ echo "Making gromacs tpr file ($TPR_FILE)..."
24
+ $GMX_BIN grompp -f $MDP_FILE -c $GRO_FILE -p $TOP_FILE -o $TPR_FILE -po $NEW_MDP_FILE
25
+
26
+ # modify the colvars input file using the PMF minima in previous stages
27
+ ARGMIN_002=$(awk -f ./find_min_max.awk ../$BASENAME_002/output/$BASENAME_002.out.abf1.czar.pmf)
28
+ sed -i.orig "s/002_pmf_argmin/$ARGMIN_002/g" $COLVARS_INPUT_TEMPLATE
29
+ rm -f $COLVARS_INPUT_TEMPLATE.orig
30
+
31
+ # run the PMF calculation
32
+ mkdir -p output
33
+ DEFAULT_OUTPUT_FILENAME="output/$OUTPUT_BASENAME.out"
34
+ # $GMX_BIN mdrun -ntmpi 1 -ntomp 4 -nb gpu -pme gpu -gpu_id 0 -s $TPR_FILE -deffnm $DEFAULT_OUTPUT_FILENAME -colvars colvar.dat
35
+ echo "You can now run gromacs by the following example:"
36
+ echo "$GMX_BIN mdrun -ntmpi 1 -ntomp 4 -nb gpu -pme gpu -gpu_id 0 -s $TPR_FILE -deffnm $DEFAULT_OUTPUT_FILENAME -colvars $COLVARS_INPUT_TEMPLATE"
@@ -0,0 +1,70 @@
1
+ ;equilibration of p41-abl
2
+
3
+ ;Run control
4
+ integrator = md
5
+ dt = $dt
6
+ tinit = 0
7
+ nsteps = $nsteps
8
+ comm-mode = Linear
9
+ nstcomm = 1000
10
+
11
+ ;Langevin dynamics
12
+ bd-fric = 0
13
+ ld-seed = -1
14
+
15
+ ;Energy minimization
16
+ ;emtol = 10
17
+ ;emstep = 0.01
18
+
19
+ ;Output control
20
+ nstxout = 5000
21
+ nstvout = 5000
22
+ nstfout = 5000
23
+ nstlog = 5000
24
+ nstcalcenergy = 1000
25
+ nstenergy = 5000
26
+
27
+ ;Neighbor searching
28
+ cutoff-scheme = Verlet
29
+ ns-type = grid
30
+ pbc = xyz
31
+ periodic-molecules = no
32
+
33
+ ;Electrostatics
34
+ coulombtype = PME
35
+ coulomb-modifier = Potential-shift-Verlet
36
+ rcoulomb = 1.2
37
+
38
+ ;VdW
39
+ vdwtype = Cut-off
40
+ vdw-modifier = force-switch
41
+ rvdw = 1.2
42
+ rvdw-switch = 1.0
43
+ DispCorr = no
44
+
45
+ ;Bonds (for minimization)
46
+ constraint-algorithm = LINCS
47
+ constraints = h-bonds
48
+ continuation = yes
49
+ morse = no
50
+
51
+ ;Implicit solvent
52
+ implicit-solvent = no
53
+
54
+ ;Pressure coupling
55
+ ;Pressure coupling
56
+ pcoupl = C-rescale
57
+ pcoupltype = Isotropic
58
+ nstpcouple = -1
59
+ tau-p = 2
60
+ compressibility = 4.5e-5
61
+ ref-p = $pressure
62
+
63
+ ;Temperature coupling
64
+ tcoupl = v-rescale
65
+ tc-grps = System
66
+ tau_t = 0.1
67
+ ref_t = $temperature
68
+
69
+ ;Velocity generation
70
+ gen-vel = no