-
Notifications
You must be signed in to change notification settings - Fork 8
/
DV-DPForBothUnalign.cu
274 lines (248 loc) · 11 KB
/
DV-DPForBothUnalign.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
/*
*
* DV-DPForBothUnalign.cu
* Soap3(gpu)
*
*
* 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-DPForBothUnalign.h"
#include "DV-DPfunctions.h"
#include <stdio.h>
#include <stdlib.h>
#include <vector>
using namespace std;
#define DP2_SEEDING_BATCH_SIZE 128 * 1024
#define DP2_MARGIN(l) ((l>100) ? (l>>2) : 25)
#define MC_Max(x,y) (x > y ? x : y)
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long long uint64;
using namespace DeepDP_Space;
class DeepDPWrapper
{
BothUnalignedPairsArrays * unalignedReads;
int insert_high, insert_low;
uint * queries, *upkdReadLengths, *origReadIDs;
char * upkdQueryNames, *upkdQualities;
uint maxReadLength;
int peStrandLeftLeg, peStrandRightLeg;
Soap3Index * index;
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;
DeepDPWrapper ( BothUnalignedPairsArrays * unalignedReads, 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 )
{
MC_MemberCopy3 ( this->, , unalignedReads, insert_high, insert_low );
MC_MemberCopy3 ( this->, , queries, upkdReadLengths, origReadIDs );
MC_MemberCopy3 ( this->, , upkdQueryNames, upkdQualities, maxReadLength );
MC_MemberCopy3 ( this->, , dpParameters, peStrandLeftLeg, peStrandRightLeg );
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 );
}
~DeepDPWrapper ()
{
delete soap3Wrapper;
}
void seeding ( QueryIDStream * inputStream,
CandidateStream * canStream,
QueryIDStream * unseededIDStream,
int stage )
{
PairEndSeedingEngine::
performSeeding (
/* input */
inputStream, dpParameters,
queries, upkdReadLengths, maxReadLength,
insert_high, insert_low,
peStrandLeftLeg, peStrandRightLeg,
stage,
soap3Wrapper, index,
/* output */
canStream, unseededIDStream );
}
void seeding ( QueryIDStream * inputStream,
CandidateStream * canStream,
QueryIDStream * tooManyHitIDStream, QueryIDStream * unseededIDStream,
int stage )
{
PairEndSeedingEngine::
performSeeding (
/* input */
inputStream, dpParameters,
queries, upkdReadLengths, maxReadLength,
insert_high, insert_low,
peStrandLeftLeg, peStrandRightLeg,
stage,
soap3Wrapper, index,
/* output */
canStream,
tooManyHitIDStream, unseededIDStream );
}
void seeding_ext ( QueryIDStream * inputStream,
CandidateStream * canStream, QueryIDStream * unseededIDStream )
{
QueryIDStream * tooManyHitIDStream = new QueryIDStream;
seeding ( inputStream, canStream, tooManyHitIDStream, unseededIDStream, STAGE_DEEP_DP_ROUND1 );
// printf("tooManyHit 1: %d\n", (int) tooManyHitIDStream->data->size());
/* set deep dp round2 maxHitNum here */
dpParameters->paramRead[0].maxHitNum = MAX_SEED_HITS_DEEP_DP_FOR_NORMAL_READ_2;
dpParameters->paramRead[1].maxHitNum = MAX_SEED_HITS_DEEP_DP_FOR_NORMAL_READ_2;
seeding ( tooManyHitIDStream, canStream, unseededIDStream, STAGE_DEEP_DP_ROUND2 );
// printf("unseeded 2: %d\n", (int) unseededIDStream->data->size());
delete tooManyHitIDStream;
}
/*
void seeding_ext(QueryIDStream *inputStream,
CandidateStream *canStream, QueryIDStream *unseededIDStream) {
QueryIDStream *tmpStream = new QueryIDStream;
seeding(inputStream, canStream, tmpStream, STAGE_DEEP_DP_ROUND1);
printf("unseeded 1: %d\n", (int) tmpStream->data->size());
seeding(tmpStream, canStream, unseededIDStream, STAGE_DEEP_DP_ROUND2);
printf("unseeded 2: %d\n", (int) unseededIDStream->data->size());
delete tmpStream;
}
*/
void alignment ( CandidateStream * canStream,
QueryIDStream * unalignedIDStream )
{
uint alignedRead = 0, alignment = 0;
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 deepDP ( QueryIDStream * inputStream,
QueryIDStream * unseededIDStream, QueryIDStream * unalignedIDStream )
{
CandidateStream * canStream = new CandidateStream;
soap3Wrapper->copyIndex ();
seeding ( inputStream, canStream, unseededIDStream, STAGE_DEEP_DP_ROUND2 );
soap3Wrapper->freeIndex ();
alignment ( canStream, unalignedIDStream );
delete canStream;
}
void deepDP_ext ( QueryIDStream * inputStream,
QueryIDStream * unseededIDStream, QueryIDStream * unalignedIDStream )
{
CandidateStream * canStream = new CandidateStream;
soap3Wrapper->copyIndex ();
seeding_ext ( inputStream, canStream, unseededIDStream );
soap3Wrapper->freeIndex ();
alignment ( canStream, unalignedIDStream );
delete canStream;
}
void outputUnaligned ( QueryIDStream * unalignedIDStream )
{
DP2OutputUnalignedReads (
unalignedIDStream,
queries, upkdReadLengths, maxReadLength,
index, peStrandLeftLeg, peStrandRightLeg,
upkdQueryNames, origReadIDs, upkdQualities,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr
);
}
void run ()
{
numDPAlignedRead = 0;
numDPAlignment = 0;
QueryIDStream * input = new QueryIDStream ( unalignedReads );
QueryIDStream * unaligned_round1 = new QueryIDStream;
deepDP ( input, unaligned_round1, unaligned_round1 );
delete input;
// printf("total unaligned: %d\n", (int) unaligned_round1->data->size());
outputUnaligned ( unaligned_round1 );
delete unaligned_round1;
}
void run2 ()
{
numDPAlignedRead = 0;
numDPAlignment = 0;
QueryIDStream * input = new QueryIDStream ( unalignedReads );
QueryIDStream * unaligned_round1 = new QueryIDStream;
deepDP_ext ( input, unaligned_round1, unaligned_round1 );
delete input;
// printf("total unaligned: %d\n", (int) unaligned_round1->data->size());
outputUnaligned ( unaligned_round1 );
delete unaligned_round1;
}
};
//////////////////////////////////////////////////////////////////////////////////////
// The functions are for the DP designed for pairs of which both ends are unaligned //
//////////////////////////////////////////////////////////////////////////////////////
void DPForUnalignPairs2 ( BothUnalignedPairsArrays * unalignedReads, int insert_high, int insert_low,
unsigned int * queries, unsigned int * upkdReadLengths, 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 )
{
DeepDPWrapper
deepDPWrapper (
unalignedReads, insert_high, insert_low,
queries, upkdReadLengths, origReadIDs,
upkdQueryNames, upkdQualities, maxReadLength,
peStrandLeftLeg, peStrandRightLeg,
index,
_bwt, _revBwt,
_occ, _revOcc,
alignmentType, dpParameters,
accumReadNum, outputFormat,
outputFile, samOutputDPFilePtr );
deepDPWrapper.run2 ();
numDPAlignedRead = deepDPWrapper.numDPAlignedRead;
numDPAlignment = deepDPWrapper.numDPAlignment;
}