File: Repeats.h

package info (click to toggle)
libsmithwaterman 0.0%2Bgit20160702.2610e25-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 276 kB
  • sloc: cpp: 2,115; makefile: 58
file content (8 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
#include <iostream>
#include <string>
#include <map>

using namespace std;

map<string, int> repeatCounts(long int pos, const string& seq, int maxsize);
bool isRepeatUnit(const string& seq, const string& unit);