forked from hyunminkang/vt-topmed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bcf_synced_reader.h
295 lines (253 loc) · 7.28 KB
/
bcf_synced_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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/* The MIT License
Copyright (c) 2013 Adrian Tan <atks@umich.edu>
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_SYNCED_READER_H
#define BCF_SYNCED_READER_H
#include <cstdlib>
#include <cstdint>
#include <cstring>
#include <cmath>
#include <cfloat>
#include <vector>
#include <map>
#include <queue>
#include <list>
#include "htslib/hts.h"
#include "htslib/vcf.h"
#include "htslib/kstring.h"
#include "htslib/tbx.h"
#include "genome_interval.h"
#include "hts_utils.h"
#define SYNC_BY_POS true
#define SYNC_BY_VAR false
/**
* Wrapper class for the bcf object.
* Stores the alleles in lexical order.
*/
class bcfptr
{
public:
int32_t file_index;
int32_t rid;
int32_t pos1;
bcf_hdr_t *h;
bcf1_t *v;
kstring_t alleles;
bcfptr()
{
file_index = -1;
rid = -1;
pos1 = -1;
v = NULL;
alleles = {0,0,0};
};
bcfptr(int32_t file_index, int32_t rid, int32_t pos1, bcf_hdr_t *h, bcf1_t *v, bool sync_by_pos)
{
this->file_index = file_index;
this->rid = rid;
this->pos1 = pos1;
this->h = h;
this->v = v;
alleles = {0,0,0};
if (!sync_by_pos)
{
//bcf_alleles2string(h, v, &alleles);
bcf_alleles2string_sorted(h, v, &alleles);
}
};
~bcfptr()
{
if (alleles.m)
{
free(alleles.s);
alleles.m = 0;
}
}
};
/**
* Comparator for BCFPtr class. Used in priority_queue; ensures that
* records are ordered according to file order.
*/
class CompareBCFPtr
{
public:
bool operator()(bcfptr *a, bcfptr *b)
{
if (a->rid == b->rid)
{
if (a->pos1 == b->pos1)
{
if (a->alleles.l!=0 && b->alleles.l!=0)
{
int32_t d = strcmp(a->alleles.s, b->alleles.s);
return d>=0;
}
else
{
return true;
}
}
return a->pos1 >= b->pos1;
}
return a->rid >= b->rid;
}
};
/**
* A class for reading files in a synced fashion.
* All variants at the same position are read and placed in a processing vector.
*
* This is supported for the following case:
*
* 1) All files are indexed.
*
* Iterating through all the regions found in all the files.
* Sequences are easily obtained via headers and/or tabix objects.
* If intervals are specified, just populate the intervals to iterate with specified intervals.
*
* If no intervals are selected by the caller, a union of all sequences are detected
* from the files.
*
* 2) Not all files are indexed.
*
* When no intervals are specified, indices are not loaded.
* Headers are checked to ensure that the contigs listed.
*
*
* Modes of synchronizing
*
* A) By start position
* B) By variant
*
*/
class BCFSyncedReader
{
public:
///////
//i/o//
///////
std::vector<std::string> file_names; //file names
std::vector<vcfFile *> files; //file objects
std::vector<bcf_hdr_t *> hdrs; // headers
std::vector<hts_idx_t *> idxs; // indices
std::vector<tbx_t *> tbxs; // for tabix
std::vector<hts_itr_t *> itrs; //iterators
std::vector<htsFormat> ftypes; //file types
int32_t nfiles; //number of files
int32_t neofs; //number of files read till eof
//list of contigs
std::vector<GenomeInterval> intervals;
std::map<std::string, int32_t> intervals_map;
uint32_t intervals_index;
bool random_access;
//variables for keeping track of status
std::string current_interval;
int32_t current_rid;
int32_t current_pos1;
//mode
bool sync_by_pos; //if false, synchronize by variant
//generic useful string
kstring_t s;
//buffer for records in use, this is indexed by the file index
std::vector<std::list<bcf1_t *> > buffer;
//empty records that can be reused
std::list<bcf1_t *> pool;
//contains the most recent position to process
std::priority_queue<bcfptr, std::vector<bcfptr *>, CompareBCFPtr> pq;
//useful stuff
/**
* Initialize files and intervals.
*/
BCFSyncedReader(std::vector<std::string>& _vcf_files, std::vector<GenomeInterval>& _intervals, bool sync_by_pos=true);
/**
* Compares records based on type of comparison.
*/
int32_t bcfptr_cmp(bcfptr *a, bcfptr *b);
/**
* Returns list of files that have variants at a certain position.
*
*/
bool read_next_position(std::vector<bcfptr*>& current_recs);
/**
* Populate sequence names from files.
*/
void add_interval(int32_t i);
/**
* Populate sequence names from files.
*/
void remove_interval(std::string& interval);
/**
* Load index for the ith file, returns true if successful
*/
bool load_index(int32_t i);
/**
* Gets sequence name of a record
*/
const char* get_seqname(int32_t i, bcf1_t *v);
/**
* Gets number of files read.
*/
int32_t get_nfiles();
/**
* Gets current 1-based position being accessed.
*/
std::string get_current_sequence();
/**
* Gets current sequence being accessed.
*/
int32_t get_current_pos1();
/**
* Closes files.
*/
void close();
private:
/**
* Prints buffer.
*/
void print_buffer();
/**
* Inserts a record into pq.
*/
void insert_into_pq(int32_t i, bcf1_t *v);
/**
* Gets records for the most recent position and fills up the buffer for file i.
*/
bool get_recs(int32_t i);
/**
* Returns true if there are more intervals to process.
*/
bool more_intervals();
/**
* Initialize buffer for next region. Returns true if successful.
*/
bool initialize_next_interval();
/**
* 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);
/**
* Gets records for the most recent position and fills up the buffer from file i.
* returns true if buffer is filled or it is not necessary to fill buffer.
* returns false if no more records are found to fill buffer
*/
void fill_buffer(int32_t i);
};
#endif