-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathquery.cc
312 lines (264 loc) · 6.86 KB
/
query.cc
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
// query.cc-- classes representing queries.
#include <string>
#include <cstdlib>
#include <cstdint>
#include <iostream>
#include <algorithm>
#include "utilities.h"
#include "query.h"
using std::string;
using std::vector;
using std::pair;
using std::set;
using std::cout;
using std::cerr;
using std::endl;
#define u32 std::uint32_t
#define u64 std::uint64_t
//----------
//
// Query--
//
//----------
Query::Query
(const querydata& qd,
double _threshold)
: threshold(_threshold),
numPositions(0),
neededToPass(0),
neededToFail(0),
numUnresolved(0),
numPassed(0),
numFailed(0),
nodesExamined(0)
{
batchIx = qd.batchIx;
name = qd.name;
seq = qd.seq;
}
Query::~Query()
{
}
void Query::kmerize
(BloomFilter* bf,
bool distinct,
bool populateKmers)
{
bf->preload();
u32 kmerSize = bf->kmerSize;
if (bf->numHashes > 1)
fatal ("internal error: "
+ bf->identity() + " uses more than one hash function");
kmerPositions.clear();
kmers.clear();
// if the sequence is too short, there are no kmers
if (seq.length() < kmerSize)
return;
// scan the sequence's kmers, convert to hash positions, and collect the
// distinct positions; optionally collect the corresponding kmers
set<u64> positionSet;
pair<set<u64>::iterator,bool> status;
size_t goodNtRunLen = 0;
for (size_t ix=0; ix<seq.length() ; ix++)
{
if (not nt_is_acgt(seq[ix])) { goodNtRunLen = 0; continue; }
if (++goodNtRunLen < kmerSize) continue;
string mer = seq.substr(ix+1-kmerSize,kmerSize);
u64 pos = bf->mer_to_position(mer);
if (pos != BloomFilter::npos)
{
if (distinct)
{
status = positionSet.insert(pos);
if (status.second == false) // pos was already in the set
continue;
}
kmerPositions.emplace_back(pos);
if (populateKmers) kmers.emplace_back(mer);
}
if (dbgKmerize || dbgKmerizeAll)
{
if (pos != BloomFilter::npos)
cerr << mer << " -> " << pos << endl;
else if (dbgKmerizeAll)
cerr << mer << " -> (no)" << endl;
}
}
}
void Query::sort_kmer_positions ()
{
sort (kmerPositions.begin(), kmerPositions.end());
}
void Query::dump_kmer_positions
(u64 _numUnresolved)
{
// we dump the list as, e.g.
// 1,2,3,4 (5,6,7)
// where 5,6,7 is the "resolved" part of the list; _numUnresolved=-1 can
// be used to just print the whole list without parenthesizing part of it
cerr << name << ".positions = ";
bool firstOutput = true;
bool parenWritten = false;
u64 posIx = 0;
for (auto& pos : kmerPositions)
{
if (posIx == _numUnresolved)
{ cerr << " (" << pos; parenWritten = true; firstOutput = false; }
else if (firstOutput)
{ cerr << pos; firstOutput = false; }
else
cerr << "," << pos;
posIx++;
}
if (parenWritten)
cerr << ")";
else if (_numUnresolved != (u64) -1)
cerr << " ()";
cerr << endl;
}
u64 Query::kmer_positions_hash
(u64 _numUnresolved)
{
// we compute a simple permutation-invariant hash on a prefix of the list;
// _numUnresolved=-1 indicates that we compute over the whole list
u64 posSum = 0;
u64 posXor = 0;
u64 posIx = 0;
for (auto& pos : kmerPositions)
{
if (posIx == _numUnresolved)
break;
posSum += pos;
posXor ^= pos;
posIx++;
}
posSum ^= posSum << 17;
posSum ^= posSum >> 47;
posXor ^= posXor >> 47;
posXor ^= posXor << 17;
posXor ^= posXor << 34;
return (posSum + posXor) & 0x1FFFFFFF; // (returning only 29 bits)
}
//----------
//
// read_query_file--
// Read queries from a file (names and nucleotide sequences), collecting them
// in a list.
//
//----------
//
// Arguments:
// istream& in: The file/stream to read from.
// const string& filename: The name of the file. This is only used for
// .. assigning names to unnamed queries, and for
// .. error reports.
// double threshold: 'Hit' threshold for queries in this file.
// 0 < threshold <= 1
// vector<Query*>& queries: List to copy queries to. Queries are appended
// .. to this, so any contents it has prior to the
// .. call are preserved. Note that the caller is
// .. responsible for (eventually) deleting the
// .. objects we add to this list.
//
// Returns:
// (nothing)
//
//----------
//
// Notes:
// (1) We accept two sequence file formats. One format is fasta, which has
// header lines beginning with '>'; fasta sequences can be broken into
// multiple lines. The other format is one sequence per line.
// (2) If sequence names aren't available, we create them by appending the
// file name's core with the line number.
//
//----------
void Query::read_query_file
(std::istream& in,
const string& _filename,
double threshold,
vector<Query*>& queries)
{
bool fileTypeKnown = false;
bool haveFastaHeaders = false;
querydata qd;
// derive a name to use for nameless sequences
string filename(_filename);
if (filename.empty())
filename = "(stdin)";
string baseName(strip_file_path(_filename));
if ((is_suffix_of (baseName, ".fa"))
|| (is_suffix_of (baseName, ".fasta")))
{
string::size_type dotIx = baseName.find_last_of(".");
baseName = baseName.substr(0,dotIx);
}
if (baseName.empty())
baseName = "query";
// read the sequences
qd.name = "";
string line;
int lineNum = 0;
int queryLineNum = 0;
while (std::getline (in, line))
{
lineNum++;
if (line.empty()) continue;
if (not fileTypeKnown)
{
haveFastaHeaders = (line[0] == '>');
fileTypeKnown = true;
}
// if this is a fasta header, add the previous sequence to the list
// and start a new one
if (line[0] == '>')
{
if (not haveFastaHeaders)
fatal ("sequences precede first fasta header in \"" + filename + "\""
+ " (at line " + std::to_string(lineNum) + ")");
if (not qd.name.empty())
{
if (qd.seq.empty())
cerr << "warning: ignoring empty sequence in \"" << filename << "\""
<< " (at line " << std::to_string(queryLineNum) << ")" << endl;
else
{
qd.batchIx = queries.size();
queries.emplace_back(new Query(qd,threshold));
}
}
queryLineNum = lineNum;
qd.name = strip_blank_ends(line.substr(1));
if (qd.name.empty())
qd.name = baseName + std::to_string(lineNum);
qd.seq = "";
}
// if it's not a fasta header, and we're in fasta mode, add this line
// to the current sequence
else if (haveFastaHeaders)
{
qd.seq += line;
}
// otherwise we're in line-by-line mode, add this line to the list
else
{
qd.batchIx = queries.size();
qd.name = baseName + std::to_string(lineNum);
qd.seq = line;
queries.emplace_back(new Query(qd,threshold));
qd.name = "";
}
}
// if we were accumulating a sequence, add it to the list
if (not qd.name.empty())
{
if (qd.seq.empty())
cerr << "warning: ignoring empty sequence in \"" << filename << "\""
<< " (preceding line " << lineNum << ")" << endl;
else
{
qd.batchIx = queries.size();
queries.emplace_back(new Query(qd,threshold));
}
}
}