Difference between revisions of "Tutorial:Getting started: Downloading MSL"

From MSL-Libraries
Jump to navigationJump to search
(Download links)
Line 1: Line 1:
 
'''MSL''' is open source software distributed under the terms of the GNU Lesser General Public.
 
'''MSL''' is open source software distributed under the terms of the GNU Lesser General Public.
  
MSL is available from SourceForge, at [https://sourceforge.net/projects/mslib/ the project page] (stable releases) and at the [http://mslib.svn.sourceforge.net/ SVN repository] (stable, betas, development version).
+
MSL is available from SourceForge, at [https://sourceforge.net/projects/mslib/ the project page] (stable releases) and at the [http://sourceforge.net/p/mslib/code/HEAD/tree/ SVN repository] (stable, betas, development version).
 +
 
  
 
==== Version 1.1 released (04/03/2013) ====
 
==== Version 1.1 released (04/03/2013) ====
Line 22: Line 23:
  
 
* '''Development version (trunk)'''
 
* '''Development version (trunk)'''
** Download a tar ball (.tgz file) from the SourceForge SVN repository '''[http://mslib.svn.sourceforge.net/viewvc/mslib/trunk/?view=tar http://mslib.svn.sourceforge.net/viewvc/mslib/trunk/?view=tar]'''
+
** Download a snapshot from the SourceForge SVN repository at '''[http://sourceforge.net/p/mslib/code/HEAD/tree/trunk/ http://sourceforge.net/p/mslib/code/HEAD/tree/trunk/]'''
 
** ... or check out the trunk using Subversion (snv) with the following command
 
** ... or check out the trunk using Subversion (snv) with the following command
 
<source lang="text">
 
<source lang="text">
svn co  https://mslib.svn.sourceforge.net/svnroot/mslib/trunk
+
svn checkout svn://svn.code.sf.net/p/mslib/code/ mslib/trunk
 
</source>
 
</source>
  

Revision as of 23:45, 15 June 2013

MSL is open source software distributed under the terms of the GNU Lesser General Public.

MSL is available from SourceForge, at the project page (stable releases) and at the SVN repository (stable, betas, development version).


Version 1.1 released (04/03/2013)

New Features

  • Added IMM1 solvation model
  • Added a facility to temporarily hide identities (amini acid types) at positions that contain more than one identity
  • Initial implementation of clustering algorithms (SingleLinkage, Average-Linkage, Complete-Linkage and PAM/Kmedoids) in src/Clustering.h
  • Object for fitting a coiled coil to parameters, in src/CoiledCoilFitter.h

Bug fixes

  • Fixed bug with linked position during on-the-fly energy computation
  • Fixed bugs in the implementation of SCWRL4 hydrogen bond

Download links

svn checkout svn://svn.code.sf.net/p/mslib/code/ mslib/trunk

For compiling instructions refer to the Tutorial page.

NOTE: by default, MSL assumes that you have installed GSL. We highly recommend that you install GSL prior to MSL compilation.



Back to the tutorial page