-
Notifications
You must be signed in to change notification settings - Fork 2
/
insertSeqSA.cpp
319 lines (281 loc) · 11.8 KB
/
insertSeqSA.cpp
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
/*
* inserts sequences into the SA
* returns number of SA indexes inserted
*/
#include "insertSeqSA.h"
#include "ErrorWarning.h"
#include "SuffixArrayFuns.h"
#include "SequenceFuns.h"
#include "serviceFuns.cpp"
#include "streamFuns.h"
#include "binarySearch2.h"
#include "funCompareUintAndSuffixes.h"
#include "funCompareUintAndSuffixesMemcmp.h"
#include <cmath>
#include "genomeSAindex.h"
#include "sortSuffixesBucket.h"
uint insertSeqSA(PackedArray & SA, PackedArray & SA1, PackedArray & SAi, char * G, char * G1, uint64 nG, uint64 nG1, uint64 nG2, Parameters & P, Genome &mapGen)
{//insert new sequences into the SA
uint GstrandBit1 = (uint) floor(log(nG+nG1)/log(2))+1;
if (GstrandBit1<32) GstrandBit1=32; //TODO: use simple access function for SA
if ( GstrandBit1+1 != SA.wordLength)
{//sequence is too long - GstrandBit changed
ostringstream errOut;
errOut << "EXITING because of FATAL ERROR: cannot insert sequence on the fly because of strand GstrandBit problem\n";
errOut << "SOLUTION: please contact STAR author at https://groups.google.com/forum/#!forum/rna-star\n";
exitWithError(errOut.str(),std::cerr, P.inOut->logMain, EXIT_CODE_GENOME_FILES, P);
};
uint N2bit= 1LLU << (SA.wordLength-1);
uint strandMask=~N2bit;
for (uint64 isa=0;isa<SA.length; isa++)
{
uint64 ind1=SA[isa];
if ( (ind1 & N2bit)>0 )
{//- strand
if ( (ind1 & strandMask)>=nG2 )
{//the first nG bases
ind1+=nG1; //reverse complementary indices are all shifted by the length of the sequence
SA.writePacked(isa,ind1);
};
} else
{//+ strand
if ( ind1>=nG )
{//the last nG2 bases
ind1+=nG1; //reverse complementary indices are all shifted by the length of the sequence
SA.writePacked(isa,ind1);
};
};
};
char** seq1=new char*[2];
#define GENOME_endFillL 16
char* seqq=new char [4*nG1+3*GENOME_endFillL];//ends shouldbe filled with 5 to mark boundaries
seq1[0]=seqq+GENOME_endFillL;//TODO: avoid defining an extra array, use reverse search
seq1[1]=seqq+2*GENOME_endFillL+2*nG1;
memset(seqq,GENOME_spacingChar,GENOME_endFillL);
memset(seqq+2*nG1+GENOME_endFillL,GENOME_spacingChar,GENOME_endFillL);
memset(seqq+4*nG1+2*GENOME_endFillL,GENOME_spacingChar,GENOME_endFillL);
memcpy(seq1[0], G1, nG1);
for (uint ii=0; ii<nG1; ii++)
{//reverse complement sequence
seq1[0][2*nG1-1-ii]=seq1[0][ii]<4 ? 3-seq1[0][ii] : seq1[0][ii];
};
complementSeqNumbers(seq1[0], seq1[1], 2*nG1);//complement
uint64* indArray=new uint64[nG1*2*2+2];// for each base, 1st number - insertion place in SA, 2nd number - index, *2 for reverse compl
#pragma omp parallel num_threads(P.runThreadN)
#pragma omp for schedule (dynamic,1000)
for (uint ii=0; ii<2*nG1; ii++) {//find insertion points for each of the sequences
if (seq1[0][ii]>3)
{//no index for suffices starting with N
indArray[ii*2]=-1;
} else
{
indArray[ii*2] = suffixArraySearch1(mapGen, seq1, ii, 10000, nG, (ii<nG1 ? true:false), 0, SA.length-1, 0) ;
indArray[ii*2+1] = ii;
};
};
uint64 nInd=0;//true number of new indices
for (uint ii=0; ii<2*nG1; ii++) {//remove entries that cannot be inserted, this cannot be done in the parallel cycle above
if (indArray[ii*2]!= (uint) -1) {
indArray[nInd*2]=indArray[ii*2];
indArray[nInd*2+1]=indArray[ii*2+1];
++nInd;
};
};
time_t rawtime;
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished SA search, number of new SA indices = "<<nInd<<endl;
/*//old-debug
uint64* indArray1=new uint64[nG1*2*2+2];
memcpy((void*) indArray1, (void*) indArray, 8*(nG1*2*2+2));
g_funCompareUintAndSuffixes_G=seq1[0];
qsort((void*) indArray1, nInd, 2*sizeof(uint64), funCompareUintAndSuffixes);
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished qsort - old " <<endl;
*/
g_funCompareUintAndSuffixesMemcmp_G=seq1[0];
g_funCompareUintAndSuffixesMemcmp_L=mapGen.pGe.gSuffixLengthMax/sizeof(uint64_t);
qsort((void*) indArray, nInd, 2*sizeof(uint64_t), funCompareUintAndSuffixesMemcmp);
// qsort((void*) indArray, nInd, 2*sizeof(uint64), funCompareUint2);
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished qsort" <<endl;
/*//new sorting, 2-step: qsort for indArray, bucket sort for suffixes
qsort((void*) indArray, nInd, 2*sizeof(uint64), funCompareUint2);
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished qsort"<<nInd<<endl;
sortSuffixesBucket(seq1[0], (void*) indArray, nInd, 2*sizeof(uint64));
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished ordering suffixes"<<nInd<<endl;
*/
/* //debug
for (int ii=0;ii<2*nInd;ii++)
{
if (indArray[ii]!=indArray1[ii])
{
cout << ii <<" "<< indArray[ii] <<" "<< indArray1[ii] <<endl;
};
};
*/
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished sorting SA indices"<<endl;
indArray[2*nInd]=-999; //mark the last junction
indArray[2*nInd+1]=-999; //mark the last junction
SA1.defineBits(SA.wordLength,SA.length+nInd);
/*testing
PackedArray SAo;
SAo.defineBits(mapGen.GstrandBit+1,mapGen.nSA+nInd);
SAo.allocateArray();
ifstream oldSAin("./DirTrue/SA");
oldSAin.read(SAo.charArray,SAo.lengthByte);
oldSAin.close();
*/
uint isa1=0, isa2=0;
for (uint isa=0;isa<SA.length;isa++) {
while (isa==indArray[isa1*2]) {//insert new index before the existing index
uint ind1=indArray[isa1*2+1];
if (ind1<nG1) {
ind1+=nG;
} else {//reverse strand
ind1=(ind1-nG1+nG2) | N2bit;
};
SA1.writePacked(isa2,ind1);
/*testing
if (SA1[isa2]!=SAo[isa2]) {
cout <<isa2 <<" "<< SA1[isa2]<<" "<<SAo[isa2]<<endl;
//sleep(100);
};
*/
++isa2; ++isa1;
};
SA1.writePacked(isa2,SA[isa]); //TODO make sure that the first sj index is not before the first array index
/*testing
if (SA1[isa2]!=SAo[isa2]) {
cout <<isa2 <<" "<< SA1[isa2]<<" "<<SAo[isa2]<<endl;
//sleep(100);
};
*/
++isa2;
};
for (;isa1<nInd;isa1++)
{//insert the last indices
uint ind1=indArray[isa1*2+1];
if (ind1<nG1)
{
ind1+=nG;
} else
{//reverse strand
ind1=(ind1-nG1+nG2) | N2bit;
};
SA1.writePacked(isa2,ind1);
++isa2;
};
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished inserting SA indices" <<endl;
// //SAi insertions
// for (uint iL=0; iL < P.mapGen.gSAindexNbases; iL++) {
// uint iSeq=0;
// uint ind0=mapGen.genomeSAindexStart[iL]-1;//last index that was present in the old genome
// for (uint ii=mapGen.genomeSAindexStart[iL];ii<mapGen.genomeSAindexStart[iL+1]; ii++) {//scan through the longest index
// if (ii==798466)
// cout <<ii;
//
// uint iSA1=SAi[ii];
// uint iSA2=iSA1 & mapGen.SAiMarkNmask & mapGen.SAiMarkAbsentMask;
//
// if ( iSeq<nInd && (iSA1 & mapGen.SAiMarkAbsentMaskC)>0 )
// {//index missing from the old genome
// uint iSeq1=iSeq;
// int64 ind1=funCalcSAi(seq1[0]+indArray[2*iSeq+1],iL);
// while (ind1 < (int64)(ii-mapGen.genomeSAindexStart[iL]) && indArray[2*iSeq]<iSA2) {
// ++iSeq;
// ind1=funCalcSAi(seq1[0]+indArray[2*iSeq+1],iL);
// };
// if (ind1 == (int64)(ii-mapGen.genomeSAindexStart[iL]) ) {
// SAi.writePacked(ii,indArray[2*iSeq]+iSeq+1);
// for (uint ii0=ind0+1; ii0<ii; ii0++) {//fill all the absent indices with this value
// SAi.writePacked(ii0,(indArray[2*iSeq]+iSeq+1) | mapGen.SAiMarkAbsentMaskC);
// };
// ++iSeq;
// ind0=ii;
// } else {
// iSeq=iSeq1;
// };
// } else
// {//index was present in the old genome
// while (iSeq<nInd && indArray[2*iSeq]+1<iSA2) {//for this index insert "smaller" junctions
// ++iSeq;
// };
//
// while (iSeq<nInd && indArray[2*iSeq]+1==iSA2) {//special case, the index falls right behind SAi
// if (funCalcSAi(seq1[0]+indArray[2*iSeq+1],iL) >= (int64) (ii-mapGen.genomeSAindexStart[iL]) ) {//this belongs to the next index
// break;
// };
// ++iSeq;
// };
//
// SAi.writePacked(ii,iSA1+iSeq);
//
// for (uint ii0=ind0+1; ii0<ii; ii0++) {//fill all the absent indices with this value
// SAi.writePacked(ii0,(iSA2+iSeq) | mapGen.SAiMarkAbsentMaskC);
// };
// ind0=ii;
// };
// };
//
// };
// // time ( &rawtime ); cout << timeMonthDayTime(rawtime) << "SAi first" <<endl;
//
// for (uint isj=0;isj<nInd;isj++) {
// int64 ind1=0;
// for (uint iL=0; iL < P.mapGen.gSAindexNbases; iL++) {
// uint g=(uint) seq1[0][indArray[2*isj+1]+iL];
// ind1 <<= 2;
// if (g>3) {//this iSA contains N, need to mark the previous
// for (uint iL1=iL; iL1 < P.mapGen.gSAindexNbases; iL1++) {
// ind1+=3;
// int64 ind2=mapGen.genomeSAindexStart[iL1]+ind1;
// for (; ind2>=0; ind2--) {//find previous index that is not absent
// if ( (SAi[ind2] & mapGen.SAiMarkAbsentMaskC)==0 ) {
// break;
// };
// };
// SAi.writePacked(ind2,SAi[ind2] | mapGen.SAiMarkNmaskC);
// ind1 <<= 2;
// };
// break;
// } else {
// ind1 += g;
// };
// };
// };
// time ( &rawtime );
// P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished SAi" <<endl;
//
// /* testing
// PackedArray SAio=SAi;
// SAio.allocateArray();
// ifstream oldSAiin("./DirTrue/SAindex");
// oldSAiin.read(SAio.charArray,8*(P.mapGen.gSAindexNbases+2));//skip first bytes
// oldSAiin.read(SAio.charArray,SAio.lengthByte);
// oldSAiin.close();
//
// for (uint iL=0; iL < P.mapGen.gSAindexNbases; iL++) {
// for (uint ii=mapGen.genomeSAindexStart[iL];ii<mapGen.genomeSAindexStart[iL+1]; ii++) {//scan through the longets index
// if ( SAio[ii]!=SAi[ii] ) {
// cout <<iL<<" "<<ii<<" "<<SAio[ii]<<" "<<SAi[ii]<<endl;
// };
// };
// };
// */
//change parameters, most parameters are already re-defined in sjdbPrepare.cpp
SA.defineBits(mapGen.GstrandBit+1,SA.length+nInd);//same as SA2
SA.pointArray(SA1.charArray);
mapGen.nSA=SA.length;
mapGen.nSAbyte=SA.lengthByte;
//generate SAi
genomeSAindex(G,SA,P,SAi,mapGen);
time ( &rawtime );
P.inOut->logMain << timeMonthDayTime(rawtime) << " Finished SAi" <<endl;
// mapGen.sjGstart=mapGen.chrStart[mapGen.nChrReal];
// memcpy(G+mapGen.chrStart[mapGen.nChrReal],seq1[0], nseq1[0]);
return nInd;
};