-
Notifications
You must be signed in to change notification settings - Fork 8
/
DV-SemiDP.cu
387 lines (360 loc) · 16.8 KB
/
DV-SemiDP.cu
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/*
*
* DV-SemiDP.cu
* Soap3(gpu)
*
* Copyright (C) 2011, HKU
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "DV-SemiDP.h"
#include "DV-DPfunctions.h"
#include <stdio.h>
#include <stdlib.h>
#include <vector>
using namespace std;
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long long uint64;
using namespace DP_Space;
class SemiDPWrapper
{
Soap3Index * index;
ReadInputForDPArrays * readInputArrays;
BothUnalignedPairs * unalignedReads;
int insert_high, insert_low;
uint * queries, *upkdReadLengths, *origReadIDs;
char * upkdQueryNames, *upkdQualities;
uint maxReadLength;
int peStrandLeftLeg, peStrandRightLeg;
uint * _bwt, *_revBwt, *_occ, *_revOcc;
int alignmentType;
uint accumReadNum;
int outputFormat;
FILE * outputFile;
samfile_t * samOutputDPFilePtr;
DPParameters * dpParameters;
SOAP3Wrapper<void> * soap3Wrapper;
public:
uint numDPAlignedRead, numDPAlignment;
SemiDPWrapper ( ReadInputForDPArrays * readInputArrays, int insert_high, int insert_low,
uint * queries, uint * upkdReadLengths, uint * origReadIDs,
char * upkdQueryNames, char * upkdQualities, uint maxReadLength,
int peStrandLeftLeg, int peStrandRightLeg,
Soap3Index * index,
int alignmentType, DPParameters * dpParameters,
uint accumReadNum, int outputFormat,
FILE * outputFile, samfile_t * samOutputDPFilePtr,
BothUnalignedPairs * unalignedReads )
{
MC_MemberCopy3 ( this->, , readInputArrays, dpParameters, unalignedReads );
MC_MemberCopy4 ( this->, , insert_high, insert_low, peStrandLeftLeg, peStrandRightLeg );
MC_MemberCopy3 ( this->, , queries, upkdReadLengths, origReadIDs );
MC_MemberCopy3 ( this->, , upkdQueryNames, upkdQualities, maxReadLength );
MC_MemberCopy ( this->, , index );
MC_MemberCopy2 ( this->, , alignmentType, accumReadNum );
MC_MemberCopy3 ( this->, , outputFormat, outputFile, samOutputDPFilePtr );
soap3Wrapper = NULL;
}
SemiDPWrapper ( ReadInputForDPArrays * readInputArrays, int insert_high, int insert_low,
uint * queries, uint * upkdReadLengths, uint * origReadIDs,
char * upkdQueryNames, char * upkdQualities, uint maxReadLength,
int peStrandLeftLeg, int peStrandRightLeg,
Soap3Index * index,
uint * _bwt, uint * _revBwt,
uint * _occ, uint * _revOcc,
int alignmentType, DPParameters * dpParameters,
uint accumReadNum, int outputFormat,
FILE * outputFile, samfile_t * samOutputDPFilePtr,
BothUnalignedPairs * unalignedReads )
{
MC_MemberCopy3 ( this->, , readInputArrays, dpParameters, unalignedReads );
MC_MemberCopy4 ( this->, , insert_high, insert_low, peStrandLeftLeg, peStrandRightLeg );
MC_MemberCopy3 ( this->, , queries, upkdReadLengths, origReadIDs );
MC_MemberCopy3 ( this->, , upkdQueryNames, upkdQualities, maxReadLength );
MC_MemberCopy ( this->, , index );
MC_MemberCopy4 ( this->, , _bwt, _revBwt, _occ, _revOcc );
MC_MemberCopy2 ( this->, , alignmentType, accumReadNum );
MC_MemberCopy3 ( this->, , outputFormat, outputFile, samOutputDPFilePtr );
soap3Wrapper =
new SOAP3Wrapper<void> ( index,
_bwt, _revBwt,
_occ, _revOcc );
}
~SemiDPWrapper ()
{
if ( soap3Wrapper )
{ delete soap3Wrapper; }
}
void alignment ( HalfEndOccStream * canStream,
QueryIDStream * unalignedIDStream )
{
uint alignedRead = 0, alignment = 0;
HalfEndAlignmentEngine::
performAlignment (
/* input */
canStream, dpParameters,
queries, upkdReadLengths, maxReadLength,
insert_high, insert_low,
peStrandLeftLeg, peStrandRightLeg,
upkdQueryNames, origReadIDs, upkdQualities,
index,
alignmentType,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr,
/* output */
unalignedIDStream, alignedRead, alignment );
numDPAlignedRead += alignedRead;
numDPAlignment += alignment;
}
void passUnalignedToDeepDP ( QueryIDStream * unalignedIDStream )
{
for ( int i = 0; i < unalignedIDStream->data->size (); i++ )
{
addReadIDToBothUnalignedPairs ( unalignedReads, ( * ( unalignedIDStream->data ) ) [i] );
}
}
// for new default dp & deep dp
void seeding ( HalfEndOccStream * inputStream,
DeepDP_Space::CandidateStream * canStream, QueryIDStream * unseededIDStream,
int stage )
{
DeepDP_Space::PairEndSeedingEngine::
performSeeding (
/* input */
inputStream, dpParameters,
queries, upkdReadLengths, maxReadLength,
insert_high, insert_low,
peStrandLeftLeg, peStrandRightLeg,
stage,
soap3Wrapper, index,
/* output */
canStream, unseededIDStream );
}
void seeding ( QueryIDStream * inputStream,
DeepDP_Space::CandidateStream * canStream, QueryIDStream * unseededIDStream,
int stage )
{
DeepDP_Space::PairEndSeedingEngine::
performSeeding (
/* input */
inputStream, dpParameters,
queries, upkdReadLengths, maxReadLength,
insert_high, insert_low,
peStrandLeftLeg, peStrandRightLeg,
stage,
soap3Wrapper, index,
/* output */
canStream, unseededIDStream );
}
void seeding_ext ( QueryIDStream * inputStream,
DeepDP_Space::CandidateStream * canStream, QueryIDStream * unseededIDStream )
{
QueryIDStream * tmpStream = new QueryIDStream;
dpParameters->paramRead[0].maxHitNum = 100;
dpParameters->paramRead[1].maxHitNum = 100;
// seeding(inputStream, canStream, tmpStream, STAGE_NEW_DEFAULT_DP_ROUND1);
// printf("unseeded 1: %d\n", (int) tmpStream->data->size());
dpParameters->paramRead[0].maxHitNum = 500;
dpParameters->paramRead[1].maxHitNum = 500;
// seeding(tmpStream, canStream, unseededIDStream, STAGE_NEW_DEFAULT_DP_ROUND2);
// printf("unseeded 2: %d\n", (int) unseededIDStream->data->size());
delete tmpStream;
}
void alignment ( DeepDP_Space::CandidateStream * canStream,
QueryIDStream * unalignedIDStream )
{
uint alignedRead = 0, alignment = 0;
DeepDP_Space::PairEndAlignmentEngine::
performAlignment (
/* input */
canStream, dpParameters,
queries, upkdReadLengths, maxReadLength,
insert_high, insert_low,
peStrandLeftLeg, peStrandRightLeg,
upkdQueryNames, origReadIDs, upkdQualities,
index,
alignmentType,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr,
/* output */
unalignedIDStream, alignedRead, alignment );
numDPAlignedRead += alignedRead;
numDPAlignment += alignment;
}
void outputUnaligned ( QueryIDStream * unalignedIDStream )
{
DeepDP_Space::DP2OutputUnalignedReads (
unalignedIDStream,
queries, upkdReadLengths, maxReadLength,
index, peStrandLeftLeg, peStrandRightLeg,
upkdQueryNames, origReadIDs, upkdQualities,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr
);
}
void newDefaultDP ( HalfEndOccStream * inputStream,
QueryIDStream * unseededIDStream, QueryIDStream * unalignedIDStream )
{
DeepDP_Space::CandidateStream * canStream = new DeepDP_Space::CandidateStream;
soap3Wrapper->copyIndex ();
seeding ( inputStream, canStream, unseededIDStream, STAGE_NEW_DEFAULT_DP );
soap3Wrapper->freeIndex ();
alignment ( canStream, unalignedIDStream );
delete canStream;
}
void newDefaultDP2 ( HalfEndOccStream * inputStream,
QueryIDStream * unseededIDStream, QueryIDStream * unalignedIDStream )
{
DeepDP_Space::CandidateStream * canStream = new DeepDP_Space::CandidateStream;
QueryIDStream * tmpStream = new QueryIDStream;
soap3Wrapper->copyIndex ();
seeding ( inputStream, canStream, tmpStream, STAGE_NEW_DEFAULT_DP );
// printf("unseeded 1: %d\n", (int) tmpStream->data->size());
seeding_ext ( tmpStream, canStream, unseededIDStream );
delete tmpStream;
soap3Wrapper->freeIndex ();
alignment ( canStream, unalignedIDStream );
delete canStream;
}
void run ()
{
numDPAlignedRead = 0;
numDPAlignment = 0;
HalfEndOccStream * canStream = new HalfEndOccStream ( readInputArrays, index->sraIndex->bwt );
QueryIDStream * unalignedIDStream = new QueryIDStream;
alignment ( canStream, unalignedIDStream );
// printf("total unaligned: %d\n", (int) unalignedIDStream->data->size());
passUnalignedToDeepDP ( unalignedIDStream );
delete canStream;
delete unalignedIDStream;
}
void run2 ()
{
numDPAlignedRead = 0;
numDPAlignment = 0;
HalfEndOccStream * occStream = new HalfEndOccStream ( readInputArrays, index->sraIndex->bwt );
QueryIDStream * unalignedIDStream = new QueryIDStream;
newDefaultDP ( occStream, unalignedIDStream, unalignedIDStream );
// printf("total unaligned: %d\n", (int) unalignedIDStream->data->size());
passUnalignedToDeepDP ( unalignedIDStream );
delete occStream;
delete unalignedIDStream;
}
void run3 ()
{
numDPAlignedRead = 0;
numDPAlignment = 0;
HalfEndOccStream * occStream = new HalfEndOccStream ( readInputArrays, index->sraIndex->bwt );
QueryIDStream * unalignedIDStream = new QueryIDStream;
newDefaultDP2 ( occStream, unalignedIDStream, unalignedIDStream );
// printf("total unaligned: %d\n", (int) unalignedIDStream->data->size());
// passUnalignedToDeepDP(unalignedIDStream);
outputUnaligned ( unalignedIDStream );
delete occStream;
delete unalignedIDStream;
}
};
// TODO
//////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////// MAIN start here ///////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////
// To perform semi-global DP
void semiGlobalDP2 ( ReadInputForDPArrays * readInputArrays, int insert_high, int insert_low,
unsigned int * queries, unsigned int * readLengths, unsigned int * origReadIDs, char * upkdQueryNames, char * upkdQualities,
unsigned int maxReadLength, int peStrandLeftLeg, int peStrandRightLeg,
Soap3Index * index,
unsigned int * _bwt, unsigned int * _revBwt,
unsigned int * _occ, unsigned int * _revOcc,
int alignmentType, DPParameters * dpParameters,
unsigned int & numDPAlignedRead, unsigned int & numDPAlignment,
unsigned int accumReadNum, int outputFormat,
FILE * outputFile, samfile_t * samOutputDPFilePtr,
BothUnalignedPairs * unalignedReads )
{
// readInput: input reads for DP3
// insert_high : maximum value of insert size
// insert_low: minimum value of insert size
// upkdQueries: the sequence of all reads. The first character of the read with ID "i"
// is on the position "i*maxReadLength" of the array
// readLengths: the read length of all reads
// peStrandLeftLeg: the required strand of the left alignment (i.e. 1: +ve; 2: -ve)
// peStrandRightLeg: the required strand of the right alignment (i.e. 1: +ve; 2: -ve)
// BWT: bwt structure with SA table inside
// HSP: hsp structure with packed sequence inside
// alignmentType: 1: All valid alignment; 2: all best alignment
// numDPResult: the total number of alignment results outputted by DP
SemiDPWrapper
semiDPWrapper (
readInputArrays, insert_high, insert_low,
queries, readLengths, origReadIDs,
upkdQueryNames, upkdQualities, maxReadLength,
peStrandLeftLeg, peStrandRightLeg,
index,
_bwt, _revBwt,
_occ, _revOcc,
alignmentType, dpParameters,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr,
unalignedReads );
semiDPWrapper.run ();
numDPAlignedRead = semiDPWrapper.numDPAlignedRead;
numDPAlignment = semiDPWrapper.numDPAlignment;
return;
}
// To perform new semi-global DP
void newSemiGlobalDP ( ReadInputForDPArrays * readInputArrays, int insert_high, int insert_low,
unsigned int * queries, unsigned int * readLengths, unsigned int * origReadIDs, char * upkdQueryNames, char * upkdQualities,
unsigned int maxReadLength, int peStrandLeftLeg, int peStrandRightLeg,
Soap3Index * index,
unsigned int * _bwt, unsigned int * _revBwt,
unsigned int * _occ, unsigned int * _revOcc,
int alignmentType, DPParameters * dpParameters,
unsigned int & numDPAlignedRead, unsigned int & numDPAlignment,
unsigned int accumReadNum, int outputFormat,
FILE * outputFile, samfile_t * samOutputDPFilePtr,
BothUnalignedPairs * unalignedReads )
{
// readInput: input reads for DP
// insert_high : maximum value of insert size
// insert_low: minimum value of insert size
// upkdQueries: the sequence of all reads. The first character of the read with ID "i"
// is on the position "i*maxReadLength" of the array
// readLengths: the read length of all reads
// peStrandLeftLeg: the required strand of the left alignment (i.e. 1: +ve; 2: -ve)
// peStrandRightLeg: the required strand of the right alignment (i.e. 1: +ve; 2: -ve)
// BWT: bwt structure with SA table inside
// HSP: hsp structure with packed sequence inside
// alignmentType: 1: All valid alignment; 2: all best alignment
// numDPResult: the total number of alignment results outputted by DP
SemiDPWrapper
semiDPWrapper (
readInputArrays, insert_high, insert_low,
queries, readLengths, origReadIDs,
upkdQueryNames, upkdQualities, maxReadLength,
peStrandLeftLeg, peStrandRightLeg,
index,
_bwt, _revBwt,
_occ, _revOcc,
alignmentType, dpParameters,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr,
unalignedReads );
semiDPWrapper.run2 ();
numDPAlignedRead = semiDPWrapper.numDPAlignedRead;
numDPAlignment = semiDPWrapper.numDPAlignment;
return;
}