Skip to content
This repository was archived by the owner on Jan 26, 2022. It is now read-only.

Commit c5cf6ec

Browse files
committed
merge
2 parents b447e97 + 08454c1 commit c5cf6ec

16 files changed

+129
-1240
lines changed

docs/sphinx/installation.rst

+41-54
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,74 @@
11
Installation
22
============
33

4-
MSMBuilder should run on most modern computers equiped with a scientific python installation. But, in the interest of being explicit, here the requirements
4+
MSMBuilder is a python package that uses a number of components from the "scientific python" stack. These packages include `numpy and scipy <http://scipy.org/getting-started.html>`_ for array manipulation and numerical linear algebra, `PyTables <http://www.pytables.org/moin>`_ for storing binary data, and others.
55

6-
- A CPU with SSE3 support, which has been tandard on all x86 processors produce after 2006.
7-
- A working C compiler, such as GCC 4.2 or later, clang, or MSVC.
8-
- Python, with some scientific modules installed (see below)
6+
.. note::
97

10-
MSMBuilder is written in the python programming language, and uses a
11-
variety of tools from the wider scientific python ecosystem, which may
12-
need to be installed separately. They include
8+
MSMBuilder currently required python2.7, and is not compatible with the python3.x series.
139

10+
Easily with ``conda``
11+
---------------------
1412

15-
Python Prerequisites
16-
--------------------
17-
- MDTraj
18-
- Numpy
19-
- Scipy
20-
- PyTables
21-
- numexpr
22-
- fastcluster (for hierarchical clustering)
23-
- matplotlib (optional for plotting)
24-
- ipython (optional for interactive mode)
25-
- pymol (optional for visualization)
13+
The easiest way to install MSMBuilder is with the python package manager ``conda``.
14+
``conda`` is an open-source cross-platform binary package manager integrated with
15+
the scientific python stack. It's built into the `Anaconda python distribution <http://docs.continuum.io/anaconda/>`_ produced by Continuum Analytics, which is a python installer that comes shipped with many of the python packages needed for science.
16+
17+
.. warning::
2618

27-
Two companies, Enthought and Continuum Analytics, produce python
28-
distributions which bundle many of these packages in with the python
29-
interpreter into a single binary installer, available for all major
30-
operating systems. These are the Enthought Canopy python distribution
31-
and Continuum’s Anaconda.
19+
We **strongly** recommend using Anaconda. Installing the scientific stack by hand can be quite tricky.
3220

21+
If you don't want to get Anaconda, you can also install ``conda`` into an existing python interpreter. Once you have ``conda``, install MSMBuilder with ::
3322

34-
Install Python and Python Packages
35-
----------------------------------
23+
conda config --add channels http://conda.binstar.org/omnia
24+
conda install msmbuilder
3625

37-
Rather than individually install the many python dependencies, we
38-
recommend that you download the Python2.7 version of the Enthought
39-
Canopy or Continuum Anaconda, which contain almost all python
40-
dependencies required to run MSMBuilder. If you have a 64 bit platform,
41-
please use the 64 bit versions, as this will give higher performance.
26+
Medium With ``pip``
27+
-------------------
4228

43-
Note for OSX users: Enthought represents the easiest way to obtain a
44-
working Python installation. The OSX system Python install is broken and
45-
cannot properly build Python extensions, which are required for
46-
MSMBuilder installation. Also, see FAQ question 11 for a known issue
47-
with OSX Lion and OpenMP.
29+
MSMBuilder can be instaleld with ``pip``, but ``pip`` is not fantastic at installing the dependencies. If you've already got the dependencies installed (see below), then you can download and install MSMBuilder::
4830

49-
Note: if you are unable to use Canopy or Anaconda, there are other
50-
pre-compiled Python distributions available, although they might not be
51-
as fast as Enthought. Options include Python(x,y) and the Scipy
52-
Superpack (OSX). Finally, most Linux users can install most
53-
prerequisites using their package manager. In Ubuntu, the following will
54-
install most of the prerequisites:
31+
pip install msmbuilder
5532

56-
::
33+
Hard Way by Hand
34+
----------------
35+
36+
If you use conda, all of this will be done automatically. If you prefer to do things by hand, keep reading.
37+
38+
You'll need to get the following python packages:
39+
40+
- `mdtraj >= 0.8 <https://pypi.python.org/pypi/mdtraj>`_
41+
- `numpy >= 1.6 <https://pypi.python.org/pypi/numpy>`_
42+
- `scipy >= 0.11 <https://pypi.python.org/pypi/scipy>`_
43+
- `tables >= 2.4.0 <https://pypi.python.org/pypi/tables>`_
44+
- `pyyaml <https://pypi.python.org/pypi/PyYAML>`_
45+
- `fastcluster (for hierarchical clustering) <https://pypi.python.org/pypi/fastcluster>`_
46+
- matplotlib (optional for plotting)
47+
- ipython (optional for interactive mode)
48+
49+
On a debian-based linux, you can get most of them with ::
5750

5851
$ sudo apt-get install libhdf5-serial-dev python-dev python-numpy \
5952
python-scipy python-setuptools python-nose python-tables \
60-
python-matplotlib python-yaml swig ipython
53+
python-matplotlib python-yaml swig ipython python-pip
6154

62-
Neither Canopy nor Anaconda include MDTraj nor fastcluster. They can be installed be installed using python’s package manager, ``pip``.
6355

64-
::
56+
Download MSMBuilder, unzip, move to the msmbuilder directory. Then, use ``pip``
57+
to install any remaining dependencies ::
6558

6659
$ pip install -r requirements.txt
6760

68-
Download and Install MSMBuilder
69-
-------------------------------
70-
71-
Download MSMBuilder, unzip, move to the msmbuilder directory. Install
72-
using setup.py:
73-
74-
::
61+
Then install MSMBuilder with ``setup.py`` ::
7562

7663
$ python setup.py install
7764

7865
You may need root privileges during the install step; alternatively, you
7966
can specify an alternative install path via ``–prefix=XXX``. If you
8067
performed the install step with ``–prefix=XXX``, you need to ensure that
8168

82-
#. XXX/bin is included in your PATH
69+
#. ``XXX/bin`` is included in your ``PATH``
8370

84-
#. XXX/lib/python2.7/site-packages/ is included in your PYTHONPATH
71+
#. ``XXX/lib/python2.7/site-packages/`` is included in your ``PYTHONPATH``
8572

8673
Step (1) ensures that you can run MSMBuilder scripts without specifying
8774
their location. Step (2) ensures that your Python can locate the

docs/sphinx/tutorial.rst

+13-13
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,19 @@ clusters.
6565
After clustering, one must assign the data to the clusters. For the
6666
clustering settings used above, this happens automatically, so you will
6767
not need to run a separate assignment step. For other clustering
68-
protocols, you may need to run Assign.py or AssignHierarchical.py after
69-
the clustering phase.
68+
protocols, you may need to run ``Assign.py`` or ``AssignHierarchical.py``
69+
after the clustering phase.
7070

71-
The assignments of each conformation are stored as Data/Assignments.h5.
72-
The cluster centers are stored as Data/Gens.lh5.
71+
The assignments of each conformation are stored as ``Data/Assignments.h5``.
72+
The cluster centers are stored as ``Data/Gens.lh5``.
7373

7474
Note that clustering with the RMSD metric requires a list of which atom
7575
indices to use during RMSD calculation. This file is typically called
76-
AtomIndices.dat and can typically be created using the script
77-
CreateAtomIndices.py. Because alanine dipeptide contains non-standard
76+
``AtomIndices.dat`` and can typically be created using the script
77+
``CreateAtomIndices.py``. Because alanine dipeptide contains non-standard
7878
atom names, it cannot be generated automatically; a default
79-
AtomIndices.dat has already been placed in the Tutorial directory for
80-
your use. Note that AtomIndices.dat uses *zero* based indexing–the first
79+
``AtomIndices.dat`` has already been placed in the Tutorial directory for
80+
your use. Note that ``AtomIndices.dat`` uses *zero* based indexing–the first
8181
atom in your system has index 0.
8282

8383
Alternative Clustering Protocols
@@ -132,17 +132,17 @@ Assignments.Fixed.h5 contains a “fixed” version of your microstate
132132
assignments that has removed all data that is trimmed the maximal
133133
ergodic subgraph of your data.
134134

135-
tCounts.mtx contains the maximum likelihood estimated reversible count
136-
matrix. This is a symmetric matrix.
135+
``tCounts.mtx`` contains the maximum likelihood estimated reversible
136+
count matrix. This is a symmetric matrix.
137137

138-
tProb.mtx contains the maximum likelihood estimated transition
138+
``tProb.mtx`` contains the maximum likelihood estimated transition
139139
probability matrix.
140140

141-
Mapping.dat contains a mapping of the original microstate numbering to
141+
``Mapping.dat`` contains a mapping of the original microstate numbering to
142142
the “fixed” microstate numbering. This is necessary because some states
143143
may have been discarded during the ergodic trimming step.
144144

145-
Populations.dat contains the maximum likelihood estimated reversible
145+
``Populations.dat`` contains the maximum likelihood estimated reversible
146146
equilibrium populations.
147147

148148
Construct a Macrostate MSM

requirements.txt

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
numpy
2-
scipy
3-
mdtraj
4-
fastcluster
1+
nose
2+
pyyaml
3+
numpy>=1.6
4+
scipy>=0.11
5+
mdtraj>=0.8
6+
fastcluster>=1.1.13
7+
tables>=2.4.0

setup.py

+59-87
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,58 @@
1111

1212
import os
1313
import sys
14-
import shutil
15-
import tempfile
1614
import subprocess
1715
from glob import glob
18-
from distutils.ccompiler import new_compiler
19-
from setuptools import setup, Extension
20-
16+
from distutils.version import StrictVersion
2117
try:
22-
import numpy
23-
import scipy
24-
if not hasattr(numpy.version, 'full_version') or numpy.version.full_version < '1.6':
25-
raise ImportError()
26-
if not hasattr(scipy.version, 'full_version') or scipy.version.full_version < '0.11':
27-
raise ImportError()
18+
from setuptools import setup
2819
except ImportError:
29-
print('numpy>=1.6 and scipy>=0.11 are required for msmbuilder', file=sys.stderr)
30-
sys.exit(1)
20+
from distutils.core import setup
3121

22+
#########################################
3223
VERSION = "2.8"
3324
ISRELEASED = False
3425
__author__ = "MSMBuilder Team"
3526
__version__ = VERSION
27+
########################################
28+
29+
def warn_on_version(module_name, minimum=None, package_name=None, recommend_conda=True):
30+
if package_name is None:
31+
package_name = module_name
32+
33+
class VersionError(Exception):
34+
pass
35+
36+
msg = None
37+
try:
38+
package = __import__(module_name)
39+
if minimum is not None:
40+
try:
41+
v = package.version.short_version
42+
except AttributeError:
43+
v = package.__version__
44+
if StrictVersion(v) < StrictVersion(minimum):
45+
raise VersionError
46+
except ImportError:
47+
if minimum is None:
48+
msg = 'MSMBuilder requires the python package "%s", which is not installed.' % package_name
49+
else:
50+
msg = 'MSMBuilder requires the python package "%s", version %s or later.' % (package_name, minimum)
51+
except VersionError:
52+
msg = ('MSMBuilder requires the python package "%s", version %s or '
53+
' later. You have version %s installed. You will need to upgrade.') % (package_name, minimum, v)
54+
55+
if recommend_conda:
56+
install = ('\nTo install %s, we recommend the conda package manger. See http://conda.pydata.org for info on conda.\n'
57+
'Using conda, you can install it with::\n\n $ conda install %s') % (package_name, package_name)
58+
install += '\n\nAlternatively, with pip you can install the package with:\n\n $ pip install %s' % package_name
59+
else:
60+
install = '\nWith pip you can install the package with:\n\n $ pip install %s' % package_name
61+
62+
if msg:
63+
banner = ('==' * 40)
64+
print('\n'.join([banner, banner, "", msg, install, "", banner, banner]))
65+
3666

3767
# metadata for setup()
3868
metadata = {
@@ -44,7 +74,6 @@
4474
'url': 'https://simtk.org/home/msmbuilder',
4575
'download_url': 'https://simtk.org/home/msmbuilder',
4676
'platforms': ["Linux", "Mac OS X"],
47-
'zip_safe': False,
4877
'description': DOCLINES[0],
4978
'long_description':"\n".join(DOCLINES[2:]),
5079
'packages': ['msmbuilder', 'msmbuilder.scripts', 'msmbuilder.project',
@@ -57,55 +86,9 @@
5786
'scripts': ['scripts/msmb'] + [e for e in glob('scripts/*') if not e.endswith('__.py')]
5887
}
5988

89+
if 'setuptools' in sys.modules:
90+
metadata['zip_safe'] = False
6091

61-
def hasfunction(cc, funcname, include=None, extra_postargs=None):
62-
# From http://stackoverflow.com/questions/
63-
# 7018879/disabling-output-when-compiling-with-distutils
64-
tmpdir = tempfile.mkdtemp(prefix='hasfunction-')
65-
devnull = oldstderr = None
66-
try:
67-
try:
68-
fname = os.path.join(tmpdir, 'funcname.c')
69-
f = open(fname, 'w')
70-
if include is not None:
71-
f.write('#include %s\n' % include)
72-
f.write('int main(void) {\n')
73-
f.write(' %s;\n' % funcname)
74-
f.write('}\n')
75-
f.close()
76-
devnull = open(os.devnull, 'w')
77-
oldstderr = os.dup(sys.stderr.fileno())
78-
os.dup2(devnull.fileno(), sys.stderr.fileno())
79-
objects = cc.compile([fname], output_dir=tmpdir,
80-
extra_postargs=extra_postargs)
81-
cc.link_executable(objects, os.path.join(tmpdir, 'a.out'))
82-
except Exception as e:
83-
return False
84-
return True
85-
finally:
86-
if oldstderr is not None:
87-
os.dup2(oldstderr, sys.stderr.fileno())
88-
if devnull is not None:
89-
devnull.close()
90-
shutil.rmtree(tmpdir)
91-
92-
93-
def detect_openmp():
94-
"Does this compiler support OpenMP parallelization?"
95-
compiler = new_compiler()
96-
print('Attempting to autodetect OpenMP support...')
97-
hasopenmp = hasfunction(compiler, 'omp_get_num_threads()')
98-
needs_gomp = hasopenmp
99-
if not hasopenmp:
100-
compiler.add_library('gomp')
101-
hasopenmp = hasfunction(compiler, 'omp_get_num_threads()')
102-
needs_gomp = hasopenmp
103-
print
104-
if hasopenmp:
105-
print('Compiler supports OpenMP')
106-
else:
107-
print('Did not detect OpenMP support; parallel RMSD disabled')
108-
return hasopenmp, needs_gomp
10992

11093
# Return the git revision as a string
11194
# copied from numpy setup.py
@@ -132,6 +115,7 @@ def _minimal_ext_cmd(cmd):
132115

133116
return GIT_REVISION
134117

118+
135119
def write_version_py(filename='src/python/version.py'):
136120
cnt = """
137121
# THIS FILE IS GENERATED FROM MSMBUILDER SETUP.PY
@@ -164,28 +148,16 @@ def write_version_py(filename='src/python/version.py'):
164148
finally:
165149
a.close()
166150

167-
168-
def main():
169-
compiler_args = ['-O3', '-funroll-loops']
170-
if new_compiler().compiler_type == 'msvc':
171-
compiler_args.append('/arch:SSE2')
172-
173-
openmp_enabled, needs_gomp = detect_openmp()
174-
if openmp_enabled:
175-
compiler_args.append('-fopenmp')
176-
compiler_libraries = ['gomp'] if needs_gomp else []
177-
178-
dist = Extension('msmbuilder._distance_wrap', sources=glob('src/ext/scipy_distance/*.c'),
179-
extra_compile_args=compiler_args,
180-
libraries=compiler_libraries,
181-
include_dirs=[numpy.get_include()])
182-
contact = Extension('msmbuilder._contact_wrap', sources=glob('src/ext/contact/*.c'),
183-
extra_compile_args=compiler_args,
184-
libraries=compiler_libraries,
185-
include_dirs = [numpy.get_include()])
186-
187-
write_version_py()
188-
setup(ext_modules=[dist, contact], **metadata)
189-
190-
if __name__ == '__main__':
191-
main()
151+
write_version_py()
152+
setup(**metadata)
153+
154+
# running these after setup() ensures that they show
155+
# at the bottom of the output, since setup() prints
156+
# a lot to stdout. helps them not get lost
157+
warn_on_version('numpy', '1.6.0')
158+
warn_on_version('scipy', '0.11.0')
159+
warn_on_version('tables', '2.4.0', package_name='pytables')
160+
warn_on_version('fastcluster', '1.1.13', recommend_conda=False)
161+
warn_on_version('yaml', package_name='pyyaml')
162+
# because it requires adding a different channel, the correct instructions are more complex with conda than pip
163+
warn_on_version('mdtraj', '0.8.0', recommend_conda=False)

src/python/MSMLib.py

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
tarjan
5151
trim_states
5252
"""
53-
import warnings
5453
import scipy.sparse
5554
import scipy.linalg
5655
import scipy

0 commit comments

Comments
 (0)