treangen / MetaCarvel

MetaCarvel: A scaffolder for metagenomes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MetaCarvel - Scaffolder for metagenomes

MetaCarvel is an updated version of previous metagenome scaffolder Bambus 2. To run MetaCarvel, you will need Samtools, Bedtools, and Networkx.

The detailed documentation and tutorial to install and run MetaCarvel can be found here.

To install the software, please execute following commands:

cd MetaCarvel
make

To run MetaCarvel, run the following;

python run.py -h
usage: run.py [-h] -a ASSEMBLY -m MAPPING -d DIR [-f FORCE] [-r REPEATS]
              [-k KEEP] [-l LENGTH] [-b BSIZE]

MetaCarvel: A scaffolding tool for metagenomic assemblies

optional arguments:
  -h, --help            show this help message and exit
  -a ASSEMBLY, --assembly ASSEMBLY
                        assembled contigs
  -m MAPPING, --mapping MAPPING
                        mapping of read to contigs in bam format
  -d DIR, --dir DIR     output directory for results
  -f FORCE, --force FORCE
                        force re-run of pipeline, will remove any existing
                        output
  -r REPEATS, --repeats REPEATS
                        To turn repeat detection on
  -k KEEP, --keep KEEP  Set this to kepp temporary files in output directory
  -l LENGTH, --length LENGTH
                        Minimum length of contigs to consider for scaffolding
  -b BSIZE, --bsize BSIZE
                        Minium mate pair support between contigs to consider
                        for scaffolding

This will generate a bunch of files in the output directory. If you are interested in output of each step of the scaffolding process, these files can be useful. The final output files are scaffolds.fasta - which contains sequences of scaffolds and scaffolds.agp is an agp style information for assignment of contigs to scaffolds.

NOTE: This tool is still under active development and may produce errors while running. Please report these as github issues so that we can fix them as we develop the software. For any questions, please email jayg@cs.umd.edu.

About

MetaCarvel: A scaffolder for metagenomes


Languages

Language:C++ 68.9%Language:Python 30.9%Language:Makefile 0.3%