-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcramore.h
46 lines (38 loc) · 864 Bytes
/
cramore.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
36
37
38
39
40
41
42
43
44
45
46
#ifndef __POPSCLE_H
#define __POPSCLE_H
#include <getopt.h>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>
#include <set>
#include <ctime>
#include <cmath>
#include <cassert>
// Hyun's codes
#include "params.h"
#include "Error.h"
#include "PhredHelper.h"
// Adrian's codes
//#include "genome_interval.h"
//#include "bcf_ordered_reader.h"
//#include "bcf_chunked_reader.h"
//#include "bcf_ordered_writer.h"
#include "hts_utils.h"
//extern "C" {
// size_t hts_realloc_or_die(unsigned long, unsigned long, unsigned long, unsigned long, int, void**, char const*);
//}
//#ifdef __cplusplus
//extern "C" {
//#endif
// int ks_resize2(kstring_t*, unsigned long);
//#ifdef __cplusplus
//}
//#endif
// bcftools's code
//#include "filter.h"
//#include "genomeChunk.h"
//#include "genomeLoci.h"
// htslib's code
#endif