Commit patch to not break on spaces.
[bowtie.git] / edit.cpp
1 /*
2  * edit.cpp
3  *
4  *  Created on: Jul 14, 2009
5  *      Author: Ben Langmead
6  */
7
8 #include <iostream>
9 #include "edit.h"
10
11 using namespace std;
12
13 ostream& operator<< (ostream& os, const Edit& e) {
14         os << e.pos << (char)e.chr;
15         return os;
16 }