File: Repeats.h

package info (click to toggle)
libsmithwaterman 0.0%2Bgit20160702.2610e25-11
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 296 kB
  • sloc: cpp: 2,115; makefile: 59; sh: 16
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);