-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcf_aux.h
35 lines (29 loc) · 984 Bytes
/
vcf_aux.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// ******************************************************
// vcfCTools (c) 2011 Alistair Ward
// Marth Lab, Department of Biology, Boston College
// All rights reserved.
// ------------------------------------------------------
// Last modified: 18 February 2011
// ------------------------------------------------------
// Auxillary tools for vcf.
// ******************************************************
#ifndef VCF_AUX_H
#define VCF_AUX_H
#include <cstdio>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <getopt.h>
#include <stdlib.h>
#include <map>
#include <vector>
#include <algorithm>
#include "Fasta.h"
#include "SmithWatermanGotoh.h"
#include "split.h"
using namespace std;
unsigned int alignAlternate(string, int, string&, string&, string&, string&, string);
void getFlankingReference(string, int, string, string, unsigned int, string&, string&, string);
void smithWaterman(string, int, string, string, string&, string&);
#endif