Generates a graph image with Graphviz DOT starting from a BCALM generated FASTA file representing a de Bruijn graph of sequencing data.
bcalm-viewer [OPTIONS] [INPUT] [DOT OPTIONS ...]
For more information: bcalm-viewer -h
.
- Generate the de Bruijn graph with BCALM:
bcalm -in list.fa -kmer-size 16 -max-memory 1000 -all-abundance-counts
- Generate the DOT file and the PDF final file:
bcalm-viewer -d pdf list.unitigs.fa
- The resulting files are
list.unitigs.gv
andlist.unitigs.gv.pdf
.
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
.