-
Notifications
You must be signed in to change notification settings - Fork 38
/
bcf_ordered_reader.h
157 lines (133 loc) · 4.1 KB
/
bcf_ordered_reader.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* The MIT License
Copyright (c) 2013 Adrian Tan <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifndef BCF_ORDERED_READER_H
#define BCF_ORDERED_READER_H
#include <cstdlib>
#include <cstdint>
#include <cstring>
#include <cmath>
#include <cfloat>
#include <vector>
#include <list>
#include <map>
#include <queue>
#include "htslib/vcf.h"
#include "htslib/tbx.h"
#include "hts_utils.h"
#include "genome_interval.h"
#include "interval_tree.h"
/**
* A class for reading ordered VCF/BCF files.
*
* Basically a record iterator that hides the
* htslib interface from the programs in vt.
*
* The main impetus for this is that htslib
* is currently incorporated as a very early
* stage and is thus lacking many feature that
* is useful to us at this point in time. This
* allows us to isolate the changes required in
* future to simply methods in hts_utils.
*
* The following cases are supported.
*
* 1) Input is an unindexed file which is not necessarily ordered.
* 2) Input is an indexed file
*
* This class hides the handling of indices from
* the user and also allows for the selection of
* records in intervals in both cases 1 and 2.
*/
class BCFOrderedReader
{
public:
///////
//i/o//
///////
std::string vcf_file;
vcfFile *vcf;
bcf_hdr_t *hdr;
hts_idx_t *idx;
tbx_t *tbx;
hts_itr_t *itr;
bcf1_t *v;
bcf1_t *buffer_v;
//for control
int32_t ftype;
bool intervals_present;
bool index_loaded;
bool random_access_enabled;
//list of intervals
std::vector<GenomeInterval> intervals;
uint32_t interval_index;
std::map<std::string, IntervalTree*> interval_tree;
//for storing unused bcf records
std::list<bcf1_t*> pool;
//shared objects for string manipulation
kstring_t s;
/**
* Initialize files and intervals.
*
* @input_vcf_file name of the input VCF file
* @intervals list of intervals, if empty, all records are selected.
*/
BCFOrderedReader(std::string input_vcf_file, std::vector<GenomeInterval>& intervals);
/**
* Jump to interval. Returns false if not successful.
*
* @interval - string representation of interval.
*/
bool jump_to_interval(GenomeInterval& interval);
/**
* Returns next vcf record.
*/
bool read(bcf1_t *v);
/**
* Initialize next interval.
* Returns false only if all intervals are accessed.
*/
bool initialize_next_interval();
/**
* Returns next set of vcf records at a start position.
* Note that this function should never be used in conjunction with read(bcf1_t *v)
*/
bool read_next_position(std::vector<bcf1_t *>& vs);
/**
* Gets sequence name of a record.
*/
const char* get_seqname(bcf1_t *v);
/**
* Gets bcf header.
*/
bcf_hdr_t* get_hdr();
/**
* Closes the file.
*/
void close();
private:
/**
* Gets record from pool, creates a new record if necessary
*/
bcf1_t* get_bcf1_from_pool();
/**
* Returns record to pool
*/
void store_bcf1_into_pool(bcf1_t* v);
};
#endif