diff --git a/website/docs/Guides/Visualization.md b/website/docs/Guides/Visualization.md index a2183e1a..e36689b0 100644 --- a/website/docs/Guides/Visualization.md +++ b/website/docs/Guides/Visualization.md @@ -17,6 +17,11 @@ dot -Tpdf -o example_file.pdf example_file.dot The above command will create a example_file.pdf file that shows the graph. For large graphs, Adobe Acrobat Reader may have troubles rendering the graph in which case we recommend opening the PDF file using the "Preview" image viewer software available in MacOS. +Below are examples of different levels of debruijn graphs that can be produced from Lancet2 outputs: +(a) Raw: ![raw_dot](../../static/img/raw_dot.png) +(b) Compressed: ![compressed_dot](../../static/img/compressed_dot.png) +(c) Fully pruned: ![final_dot](../../static/img/final_dot.png) + ## GFA graphs The generated gfa files can be viewed using the [Bandage-NG](https://github.com/asl/BandageNG) program. diff --git a/website/static/img/compressed_dot.png b/website/static/img/compressed_dot.png new file mode 100644 index 00000000..bcca2bd7 Binary files /dev/null and b/website/static/img/compressed_dot.png differ diff --git a/website/static/img/final_dot.png b/website/static/img/final_dot.png new file mode 100644 index 00000000..ed93a259 Binary files /dev/null and b/website/static/img/final_dot.png differ diff --git a/website/static/img/raw_dot.png b/website/static/img/raw_dot.png new file mode 100644 index 00000000..acb579e2 Binary files /dev/null and b/website/static/img/raw_dot.png differ