forked from khinsen/nMOLDYN3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
152 lines (112 loc) · 4.29 KB
/
README
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
This is nMoldyn-3.0.0, an interactive program for the
analysis of Molecular Dynamics trajectories. This program is
copyrighted but free to use for anyone under the CeCILL license,
see the file LICENSE for details.
nMoldyn should work with all major variants of Unix, including Linux
and MacOSX and Windows. There is little system-specific code in nMoldyn
itself, so porting nMoldyn to other systems should be straightforward.
However, we cannot provide any support for this.
If you have any questions about nMoldyn that are not answered on the
Web page mentioned above, please contact the authors.
Eric Pellegrini
Calcul Scientific
Institut Laue Langevin
6 Rue Jules Horowitz
38042 Grenoble
France
E-Mail: [email protected]
Konrad Hinsen
Centre de Biophysique Moleculaire (CNRS)
Rue Charles Sadron
45071 Orleans Cedex 2
France
E-Mail: [email protected]
Gerald Kneller
Centre de Biophysique Moleculaire (CNRS)
Rue Charles Sadron
45071 Orleans Cedex 2
France
E-Mail: [email protected]
Step 1: Prerequesites
=====================
Before installing nMOLDYN make sure that the following components are installed
and configured properly:
-Tcl and Tk libraries version >= 8.4
-Python 2.4 or higher
-numpy version >= 1.2
-matplotlib version >= 0.98
-pyro version >= 3.9
-Scientific version >= 2.8
-MMTK version >= 2.6.1
-NetCDF library version >= 3.6.1
To check for that, in a terminal, type
python -c 'import Scientific.IO.NetCDF'
If you get no error message NetCDF is likely to be properly installed and
configured on your system.
Step 2: installation
====================
In a terminal, type the following instructions in the directory where you untared
the nMOLDYN archive:
cd nMOLDYN-3.X.Y
python setup.py build
python setup.py install
The last command may require administrator privileges.
Step 3: running nMOLDYN
=======================
Once the installation is completed run nMOLDYN by typing
./nMOLDYNStart.py
in your Python binaries directory.
In the future, you should create an alias/shortcut for that script in order to not
disrupt any component of that sensitive directory.
WARNING:
========
If the version of Scientific used to run nMOLDYN is the 2.9.0, small changes has
to be performed in order to use nMOLDYN in parallel mode via a Pyro server.
The changes are the following:
FILE : MasterSlave.py
LOCATION: Scientific installation directory
REPLACE
def getMachineInfo():
import os
sysname, nodename, release, version, machine = os.uname()
pid = os.getpid()
return "PID %d on %s (%s)" % (pid, nodename, machine)
BY
def getMachineInfo():
import os
import platform
sysname, nodename, release, version, machine, processor = platform.uname()
pid = os.getpid()
return "PID %d on %s (%s)" % (pid, nodename, machine)
If you are not familiar with the Python installed modules file structure, you
can find the path for Scientific directory by running the following command
within the Python interpreter:
import Scientific
print Scientific.__path__[0]
KNOWN BUGS:
===========
- Bug with tk >= 8.5 on Linux (Fedora, Suse, Ubuntu): when using a tkMessageBox, if you click 'Yes'
the answer will be the same as 'No'! In nMOLDYN, you will experience this bug at the end of an
analysis when you can decide to plot the results just after the analysis. Whatever is your decision
('Yes' or 'No'), no plot will be displayed.
Here is the proposed patch (http://bugs.python.org/issue4961):
Index: Lib/lib-tk/tkMessageBox.py
===================================================================
--- Lib/lib-tk/tkMessageBox.py (revision 73494)
+++ Lib/lib-tk/tkMessageBox.py (working copy)
@@ -70,11 +70,13 @@
if title: options["title"] = title
if message: options["message"] = message
res = Message(**options).show()
- # In some Tcl installations, Tcl converts yes/no into a boolean
+ # In some Tcl installations, yes/no is converted into a boolean.
if isinstance(res, bool):
- if res: return YES
+ if res:
+ return YES
return NO
- return res
+ # In others we get a Tcl_Obj.
+ return str(res)
def showinfo(title=None, message=None, **options):
"Show an info message"