https://github.com/fenderglass/Ragout
Revision fac714c22dea5db26d046ed4e59a1248e5134684 authored by fenderglass on 25 December 2013, 15:44:43 UTC, committed by fenderglass on 25 December 2013, 15:44:43 UTC
1 parent b9ad65b
Raw File
Tip revision: fac714c22dea5db26d046ed4e59a1248e5134684 authored by fenderglass on 25 December 2013, 15:44:43 UTC
small fix
Tip revision: fac714c
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 the 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