Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/fenderglass/Ragout
22 June 2021, 01:27:41 UTC
  • Code
  • Branches (21)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/chr_map
    • refs/heads/devel
    • refs/heads/gh-pages
    • refs/heads/ismb_2014
    • refs/heads/master
    • refs/heads/path_cover
    • refs/heads/py3
    • refs/heads/rr_devel
    • refs/heads/tree_infer
    • refs/remotes/origin/devel
    • refs/tags/1.0
    • refs/tags/1.1
    • refs/tags/2.0
    • refs/tags/2.1
    • refs/tags/2.1.1
    • refs/tags/2.2
    • refs/tags/2.3
    • refs/tags/v0.1b
    • refs/tags/v0.2b
    • refs/tags/v0.3b
    • refs/tags/v1.2
    No releases to show
  • 7a00843
  • /
  • docs
  • /
  • INSTALL.md
Raw File Download
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge Iframe embedding
swh:1:cnt:0173c68080e832be776b9235aa3ff99e53717cb8
origin badgedirectory badge Iframe embedding
swh:1:dir:be5f82fb1421c82a07d015c1410c2f9fc6a9b15c
origin badgerevision badge
swh:1:rev:f1e7a745418642456e637d3626efaaaeb79c6d6d
origin badgesnapshot badge
swh:1:snp:049c406b15a9a28e76d942bfc1fe2a04f4142f61
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: f1e7a745418642456e637d3626efaaaeb79c6d6d authored by Mikhail Kolmogorov on 17 March 2020, 21:36:20 UTC
forgot to update setup.py
Tip revision: f1e7a74
INSTALL.md
Installation Instructions for Ragout
====================================

Availability
------------
Ragout is available for Mac OS and Linux.


Bioconda distribitions
----------------------

Ragout binary releases are available through Bioconda:

    conda install -c bioconda ragout


Build Requirements
------------------
* C++ compiler with C++0x support (GCC 4.6+ / Clang 3.2+ / Apple Clang 4.2+)
* GNU make 
* Cmake


Runtime Depenencies
-------------------

* Python (2.7 or 3.5+)
* Sibelia [http://github.com/bioinf/Sibelia]
* python-networkx == 2.2
* HAL Tools (optionally) [https://github.com/ComparativeGenomicsToolkit/hal]


Local installation
------------------

If you don't want to use bioconda release, you can build
Ragout repository clone and run it locally without installing
into system. To do this, perform:

    git clone https://github.com/fenderglass/Ragout.git
	cd Ragout
	python setup.py build
	pip install -r requirements.txt --user
    python scripts/install-sibelia.py

This will also build and install Sibelia and all Python dependencies.
See below for HAL installation instructions.

Once installed, you can invoke Ragout from the cloned directory by using:

    bin/ragout

System installation
-------------------

To integrate Ragout into your system, run:

    git clone https://github.com/fenderglass/Ragout.git
	cd Ragout
	python setup.py build
    python setup.py install

This assumes that you already have python-networkx package
installed into your system (using the respective package manager).
Sibelia / HAL tools should also be installed / integrated separately.


HAL Tools
---------

HAL alignment produced by Progressive Cactus could be used for synteny 
blocks decomposition instead of Sibelia (recommended for large genomes). 

If you want to use HAL alignment as input,
you need to install HAL Tools package [https://github.com/ComparativeGenomicsToolkit/hal]
as it is described in the manual. Do not forget to properly set PATH and PYTHONPATH
environment variables.


Troubleshooting
---------------

Q: Many compilation errors, possibly with 
"unrecognized command line option '-std=c++0x'" message:

A: Probably your compiler is too old and does not support C++0x. Make
sure you have at least GCC 4.6+ / Clang 3.2+


Q: "libstdc++.so.6: version `CXXABI_1.3.5' not found" or similar error when running

A: Ensure that the version of libc++ that was used to compile Ragout is similar
to one the you currently using. You can specify an extra search path
to a specific library by setting "LD_LIBRARY_PATH" variable.

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top