-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.h
35 lines (29 loc) · 801 Bytes
/
tools.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
// ------------------------------------------------------
// Additional tools
// ******************************************************
#ifndef TOOLS_H
#define TOOLS_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"
#include "vcf.h"
using namespace std;
using namespace vcfCTools;
unsigned int fact(unsigned int&);
#endif