项目作者: malonge

项目描述 :
Tools for fast and flexible genome assembly scaffolding and improvement
高级语言: Python
项目地址: git://github.com/malonge/RagTag.git
创建时间: 2020-02-25T03:13:56Z
项目社区:https://github.com/malonge/RagTag

开源协议:MIT License

下载


logo_text

RagTag

DOI RELEASE CONDA GitHub

RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Tasks include:

RagTag also provides command line utilities for working with common genome assembly file formats.

logo_text

Getting Started

  1. # install with conda
  2. conda install -c bioconda ragtag
  3. # correct a query assembly
  4. ragtag.py correct ref.fasta query.fasta
  5. # scaffold a query assembly
  6. ragtag.py scaffold ref.fasta query.fasta
  7. # scaffold with multiple references/maps
  8. ragtag.py scaffold -o out_1 ref1.fasta query.fasta
  9. ragtag.py scaffold -o out_2 ref2.fasta query.fasta
  10. ragtag.py merge query.fasta out_*/*.agp other.map.agp
  11. # use Hi-C to resolve conflicts
  12. ragtag.py merge -b hic.bam query.fasta out_*/*.agp other.map.agp
  13. # make joins and fill gaps in target.fa using sequences from query.fa
  14. ragtag.py patch target.fa query.fa

Docs

Please see the Wiki for detailed documentation.

Dependencies

  • Minimap2, Unimap, or Nucmer
  • Python 3 (with the following auto-installed packages)
    • numpy
    • intervaltree
    • pysam
    • networkx

Citation

RagTag supersedes RaGOO:

Acknowledgments

Many of the major algorithmic improvements relative to RaGOO’s first release were provided by Aleksey Zimin, lead developer of the MaSuRCA assembler. Luca Venturini suggested and initially implemented many feature enhancements, such as pysam integration. RagTag “merge” was inspired by CAMSA. The developer of CAMSA, Sergey Aganezov, helped review relevant RagTag code. RagTag “patch” was inspired by Grafter, a scaffolding tool written by Melanie Kirsche. Melanie provided guidance for the RagTag implementation. Michael Schatz has provided guidance for the whole project.