dotplot 0.1.0

A simple dot plot maker. Given 2 sequences, prints x, y coords to stdout.
1
2
3
4
5
6
7
8
9
10
11
A simple Rust implementation of a [dot plot][1] maker used to examine sequence alignment.
The output is sent to stdout as x, y points, which can be used with gnuplot like so:

`./dotplot s1.txt s2.txt | gnuplot -p -e "plot '<cat' with points"`

producing something like this:

![][2]

[1]: https://en.wikipedia.org/wiki/Dot_plot_(bioinformatics)
[2]: http://i.imgur.com/JboyEzw.png