Skip to content

DPDmancul/BCALM-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BCALM Viewer

Generates a graph image with Graphviz DOT starting from a BCALM generated FASTA file representing a de Bruijn graph of sequencing data.

Example

Usage

bcalm-viewer [OPTIONS] [INPUT] [DOT OPTIONS ...]

For more information: bcalm-viewer -h.

Workflow example

  1. Generate the de Bruijn graph with BCALM:
bcalm -in list.fa -kmer-size 16 -max-memory 1000 -all-abundance-counts 
  1. Generate the DOT file and the PDF final file:
bcalm-viewer -d pdf list.unitigs.fa
  1. The resulting files are list.unitigs.gv and list.unitigs.gv.pdf.

Download builds

Requirements

To generate the final file (e.g. .pdf) graphviz dot is required. Without it the intermediate file (i.e. .gv) can still be generated.

The dot executable must be in system path; in alternative you can set the environment variable DOT_PATH.