Installation

DMG-α source codes can be downloaded here:

source code (ver 0.1)

Changes

  • 31.03.2014 - first version of DMG-alpha online (ver 0.1)

License

This softawre is distributed under BSD Modified License

TODO: include link to the text of the license

How to cite

If using DMG-α in your project please consider citing the following:

TODO: include journal article when published

  • Project home page:

    @misc{dmga-www,
            author = {Szczelina, Robert},
            title = {DMG-Alpha project home page},
            url = {http://dmgalpha.scirsc.org},
            year = {2014}
    }
  • Bioinformatics Conference 2013 (SocBIN/BIT13) poster

    @misc{dmga-poster-2013,
            author = {Szczelina, Robert and Murzyn, Krzysztof},
            title = {Lipid bilayer analysis using 3D Voronoi diagrams},
            url = {http://dmgalpha.scirsc.org/?p=poster-bit13},
            year = {2013}
    }

3rd party software and dependencies

This software uses the following packages:

  • Voro++ uder BSD Modified Licence
  • Eigen under MPL2 Licence (from Eigen page: The MPL2 is a simple, file-level-copyleft license (meaning that the copyleft does not propagate across source file boundaries) which should allow use by all projects.)

The packages are provided in the distribution.

Python bindings and interface requires distutils, which are part of standard distributions of Python. In a cese when distutils are not present one may install them using preffered package manager. For example:

sudo apt-get install python-distutils

will install distutils on a Debian based systems (Debian, Ubuntu, PLD, etc.)

Instalation

For c++ users, to test if the library compiles and to generate Voro++ library one need to invoke:

make all

in the main directory of the project

Python users should invoke:

python setup.py install

or

sudo python setup.py install

Python-dev package is required for C++ bindings to work. Installing python-dev on Debian based systems:

sudo apt-get install python-dev