The most recent release can be download here: http://www.msanalysis.com/download/msanalysis.zip
The C++ source code of backend processing engine can be download here:http://www.msanalysis.com/download/engine.zip
1. Get the latest version of your C and C++ compilers.
2. Check that you have CMake version 2.8.8 or later.
3. Install Gromacs. You can follow
this guide to install Gromacs.
4. Install Django. You can use pip to install Django.
pip install django
You can see this guide for a detail information.
5. Install Apache2 and mod_wsgi.
sudo apt-get install apache2
sudo apt-get install libapache2-mod-wsgi
6. Install sqlite3.
sudo apt-get install sqlite3
7. Download the source code of MSanalysis and extract it to a directory.
8. Add a new configure file for MSanalysis.
sudo vi /etc/apache2/sites-available/msanalysis.conf
Copy the following content to this file.
<VirtualHost *:80> ServerName www.yourdomain.com ServerAlias otherdomain.com ServerAdmin [email protected] Alias /static/ /path/to/msanalysis/static/ <Directory /path/to/msanalysis/static> Require all granted </Directory> WSGIScriptAlias / /path/to/msanalysis/msanalysis/wsgi.py <Directory /path/to/msanalysis/msanalysis/> <Files wsgi.py> Require all granted </Files> </Directory> </VirtualHost>
Active it.
sudo a2ensite msanalysis
9. Restart Apache.
sudo service apache2 restart
1. Replace /path/to/gromacs/src/gromacs/mdlib/mdoutf.cpp by this file: mdoutf.cpp
2. Rebuild Gromacs.
cd /path/to/gromacs/build/
make
make install
source /usr/local/gromacs/bin/GMXRC
© 2016-2017 MSanalysis