File: edit.cpp

package info (click to toggle)
bowtie 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 14,864 kB
  • ctags: 5,533
  • sloc: cpp: 32,737; perl: 2,084; ansic: 1,241; sh: 1,066; makefile: 344; python: 133
file content (16 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * edit.cpp
 *
 *  Created on: Jul 14, 2009
 *      Author: Ben Langmead
 */

#include <iostream>
#include "edit.h"

using namespace std;

ostream& operator<< (ostream& os, const Edit& e) {
	os << e.pos << (char)e.chr;
	return os;
}