https://github.com/fenderglass/Ragout
Revision 7ff97939000ddb82cac78ac0fd0f43a428e88a2a authored by fenderglass on 18 November 2013, 13:30:30 UTC, committed by fenderglass on 18 November 2013, 13:30:30 UTC
1 parent c5e68c1
Raw File
Tip revision: 7ff97939000ddb82cac78ac0fd0f43a428e88a2a authored by fenderglass on 18 November 2013, 13:30:30 UTC
sankoff algorithm
Tip revision: 7ff9793
INSTALL.md
Installation instructions for Ragout
====================================

Ragout is written in python and requires version 2.7 to run.
Also, there are third-party dependencies:

* biopython [http://biopython.org]
* networkx [http://networkx.github.io]

You can install them with your OS-specific package manager,
e.g. in Ubuntu:

$ sudo apt-get install python-biopython python-networkx

or using pip package manager:

$ pip install biopython networkx

Ragout can use Sibelia for genomes decomposition on synteny blocks.
"Sibelia" executable should be in your "PATH" environment variable,
otherwise you can edit "SIBELIA_BIN" variable in "ragout.py" file. 

If you use Python 2.5 or 2.6, you need to install additional Python
packages:

* argparse [https://pypi.python.org/pypi/argparse]
back to top