Search found 20 matches

by Robert McGibbon
Tue Sep 18, 2012 10:59 pm
Forum: MSMBuilder
Topic: Problem with "Data range too large for int16"
Replies: 2
Views: 654

Re: Problem with "Data range too large for int16"

MSMBuilder saves your trajectories in a fixed point representation, so it's warning you that the xyz coordinates are too big to be handled without errors. The most obvious cause of this would be if your XTC is not centered. Moving the center of mass to the origin would substantially reduce the magni...
by Robert McGibbon
Fri Aug 31, 2012 12:41 pm
Forum: MSMBuilder
Topic: Installation issue - BLAS/MKL libs
Replies: 9
Views: 1426

Re: Installation issue - BLAS/MKL libs

Try setting the environment variable OMP_NUM_THREADS to 1?
by Robert McGibbon
Thu Aug 30, 2012 5:49 pm
Forum: MSMBuilder
Topic: Installation issue - BLAS/MKL libs
Replies: 9
Views: 1426

Re: Installation issue - BLAS/MKL libs

Can you attach out the full stdout stream that comes from running `python setup.py build`. Also, for the call out to GCC that is actually throwing the link error, can you try executing that command by hand in the shell and then looking at what that prints to stderr. A segfaut on the tutorial is some...
by Robert McGibbon
Sun Aug 26, 2012 1:40 pm
Forum: MSMBuilder
Topic: Installation issue - BLAS/MKL libs
Replies: 9
Views: 1426

Re: Installation issue - BLAS/MKL libs

If you use EPD python, it should just work, you don't have to do anything special This line: extra_link_args=['-L%s' % distutils.sysconfig.get_config_var('LIBDIR'),'-lpthread', '-lm', '-lgomp'] adds EPD Lib dir to the link line, which is where MKL shared object files are installed by default. I just...
by Robert McGibbon
Sun Aug 26, 2012 12:19 pm
Forum: MSMBuilder
Topic: Installation issue - BLAS/MKL libs
Replies: 9
Views: 1426

Re: Installation issue - BLAS/MKL libs

Leo, One more question. Are you using a python distribution like EPD, the ubuntu system python, or one that you compiled from source yourself? The culprit here is that I think we're explicitly looking for MKL libraries in the place that they are installed with EPD python, the distribution that we re...
by Robert McGibbon
Sun Aug 26, 2012 12:11 pm
Forum: MSMBuilder
Topic: Installation issue - BLAS/MKL libs
Replies: 9
Views: 1426

Re: Installation issue - BLAS/MKL libs

Leo, Thanks for your feedback. We're trying to make the installation process as smooth as possible, but there are definitely still some hiccups. In this case, it's basically just a bug in the setup.py file. If you're using MSMBuilder 2.5.1, open up the file setup.py in your favorite text editor, and...
by Robert McGibbon
Thu Jul 12, 2012 11:42 am
Forum: MSMBuilder
Topic: MSMBuilder2.5 Installation
Replies: 7
Views: 1688

Re: MSMBuilder2.5 Installation

Max, Sorry about this. One of the --source (-S) options is supposed to be file_dcd, which detects the DCD files, but this wasn't actually listed as a choice. I have a patch file for msmbuilder2.5 that fixes the problem, and in next release we'll have this fixed for good so that it just autodetects w...
by Robert McGibbon
Tue Jul 10, 2012 9:14 pm
Forum: MSMBuilder
Topic: MSMBuilder2.5 Installation
Replies: 7
Views: 1688

Re: MSMBuilder2.5 Installation

Max, I'm glad that worked for you. Can you post the exception that you're getting from the ConvertDataToHDF.py? Which command line options are you passing? We made some improvements to the script in order to speed up the conversion, but there might be some holes in the test suite. If you can give me...
by Robert McGibbon
Tue Jun 19, 2012 2:13 pm
Forum: MSMBuilder
Topic: Convert .lh5 trajectory files to readable format?
Replies: 3
Views: 795

Re: Convert .lh5 trajectory files to readable format?

The easiest way to do this is to use MSMBuilder's Serializer object which wraps pytables. In msmbuilder2.5, you can get the object from an interactive python interpreter with "from msmbuilder import Serializer". In msmbuilder2.0, you can get the object with "from msmbuilder.Serializer import Seriali...
by Robert McGibbon
Tue Jun 19, 2012 2:09 pm
Forum: MSMBuilder
Topic: MSMBuilder2.5 Installation
Replies: 7
Views: 1688

Re: MSMBuilder2.5 Installation

My guess is that you might be installing msmbuilder with a different version of python than what is being used by the scripts. When setting your path, can you put the /home/Max/Programs/epd-7.3.1-rh5-x86_64/bin before the rest of your path when resenting the path in your bash_profile, so that the EP...