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
|
#include "stitchWindowAligns.h"
#include "blocksOverlap.h"
#include "ErrorWarning.h"
#include "binarySearch2.h"
#include <cmath>
#include <ctime>
void stitchWindowAligns(uint iA, uint nA, int Score, bool WAincl[], uint tR2, uint tG2, Transcript trA, \
uint Lread, uiWA* WA, char* R, Genome &mapGen, \
Parameters& P, Transcript** wTr, uint* nWinTr, ReadAlign *RA) {
//recursively stitch aligns for one gene
//*nWinTr - number of transcripts for the current window
if (iA>=nA && tR2==0) return; //no aligns in the transcript
if (iA>=nA) {//no more aligns to add, finalize the transcript
//extend first
Transcript trAstep1;
int vOrder[2]; //decide in which order to extend: extend the 5' of the read first
#if EXTEND_ORDER==1
if ( trA.roStr==0 ) {//decide in which order to extend: extend the 5' of the read first
vOrder[0]=0; vOrder[1]=1;
} else {
vOrder[0]=1; vOrder[1]=0;
};
#elif EXTEND_ORDER==2
vOrder[0]=0; vOrder[1]=1;
#else
#error "EXTEND_ORDER value unrecognized"
#endif
for (int iOrd=0;iOrd<2;iOrd++) {
switch (vOrder[iOrd]) {
case 0: //extend at start
if (trA.rStart>0) {// if transcript does not start at base, extend to the read start
trAstep1.reset();
uint imate=trA.exons[0][EX_iFrag];
if ( extendAlign(R, mapGen.G, trA.rStart-1, trA.gStart-1, -1, -1, trA.rStart, tR2-trA.rStart+1, \
trA.nMM, RA->outFilterMismatchNmaxTotal, P.outFilterMismatchNoverLmax, \
P.alignEndsType.ext[imate][(int)(trA.Str!=imate)], &trAstep1) ) {//if could extend
trA.add(&trAstep1);
Score += trAstep1.maxScore;
trA.exons[0][EX_R] = trA.rStart = trA.rStart - trAstep1.extendL;
trA.exons[0][EX_G] = trA.gStart = trA.gStart - trAstep1.extendL;
trA.exons[0][EX_L] += trAstep1.extendL;
};
//TODO penalize the unmapped bases at the start
};
break;
case 1: //extend at end
if ( tR2<Lread ) {//extend alignment to the read end
trAstep1.reset();
uint imate=trA.exons[trA.nExons-1][EX_iFrag];
if ( extendAlign(R, mapGen.G, tR2+1, tG2+1, +1, +1, Lread-tR2-1, tR2-trA.rStart+1, \
trA.nMM, RA->outFilterMismatchNmaxTotal, P.outFilterMismatchNoverLmax, \
P.alignEndsType.ext[imate][(int)(imate==trA.Str)], &trAstep1) ) {//if could extend
trA.add(&trAstep1);
Score += trAstep1.maxScore;
tR2 += trAstep1.extendL;
tG2 += trAstep1.extendL;
trA.exons[trA.nExons-1][EX_L] += trAstep1.extendL;//extend the length of the last exon
};
//TODO penalize unmapped bases at the end
};
};
};
if (!P.alignSoftClipAtReferenceEnds.yes && \
( (trA.exons[trA.nExons-1][EX_G] + Lread-trA.exons[trA.nExons-1][EX_R]) > (mapGen.chrStart[trA.Chr]+mapGen.chrLength[trA.Chr]) || \
trA.exons[0][EX_G]<(mapGen.chrStart[trA.Chr]+trA.exons[0][EX_R]) ) ) {
return; //no soft clipping past the ends of the chromosome
};
trA.rLength = 0;
for (uint isj=0;isj<trA.nExons;isj++) {
trA.rLength += trA.exons[isj][EX_L];
};
trA.gLength = tG2+1-trA.gStart;
//check exons lengths including repeats, do not report a transcript with short exons
for (uint isj=0;isj<trA.nExons-1;isj++) {//check exons for min length, if they are not annotated and precede a junction
if ( trA.canonSJ[isj]>=0 ) {//junction
if (trA.sjAnnot[isj]==1) {//sjdb
if ( ( trA.exons[isj][EX_L] < P.alignSJDBoverhangMin && (isj==0 || trA.canonSJ[isj-1]==-3 || (trA.sjAnnot[isj-1]==0 && trA.canonSJ[isj-1]>=0) ) )\
|| ( trA.exons[isj+1][EX_L] < P.alignSJDBoverhangMin && (isj==trA.nExons-2 || trA.canonSJ[isj+1]==-3 || (trA.sjAnnot[isj+1]==0 && trA.canonSJ[isj+1]>=0) ) ) )return;
} else {//non-sjdb
if ( trA.exons[isj][EX_L] < P.alignSJoverhangMin + trA.shiftSJ[isj][0] \
|| trA.exons[isj+1][EX_L] < P.alignSJoverhangMin + trA.shiftSJ[isj][1] ) return;
};
};
};
if (trA.nExons>1 && trA.sjAnnot[trA.nExons-2]==1 && trA.exons[trA.nExons-1][EX_L] < P.alignSJDBoverhangMin) return; //this exon was not checkedin the cycle above
//filter strand consistency
uint sjN=0;
trA.intronMotifs[0]=0;trA.intronMotifs[1]=0;trA.intronMotifs[2]=0;
trA.sjYes=false;
for (uint iex=0;iex<trA.nExons-1;iex++) {
if (trA.canonSJ[iex]>=0)
{//junctions - others are indels
sjN++;
trA.intronMotifs[trA.sjStr[iex]]++;
trA.sjYes=true;
};
};
if (trA.intronMotifs[1]>0 && trA.intronMotifs[2]==0)
trA.sjMotifStrand=1;
else if (trA.intronMotifs[1]==0 && trA.intronMotifs[2]>0)
trA.sjMotifStrand=2;
else
trA.sjMotifStrand=0;
if (trA.intronMotifs[1]>0 && trA.intronMotifs[2]>0 && P.outFilterIntronStrands=="RemoveInconsistentStrands")
return;
if (sjN>0 && trA.sjMotifStrand==0 && P.outSAMstrandField.type==1) {//strand not defined for a junction
return;
};
if (P.outFilterIntronMotifs=="None") {//no filtering
} else if (P.outFilterIntronMotifs=="RemoveNoncanonical") {
for (uint iex=0;iex<trA.nExons-1;iex++) {
if (trA.canonSJ[iex]==0) return;
};
} else if (P.outFilterIntronMotifs=="RemoveNoncanonicalUnannotated") {
for (uint iex=0;iex<trA.nExons-1;iex++) {
if (trA.canonSJ[iex]==0 && trA.sjAnnot[iex]==0) return;
};
} else {
ostringstream errOut;
errOut << "EXITING because of FATAL INPUT error: unrecognized value of --outFilterIntronMotifs=" <<P.outFilterIntronMotifs <<"\n";
errOut << "SOLUTION: re-run STAR with --outFilterIntronMotifs = None -OR- RemoveNoncanonical -OR- RemoveNoncanonicalUnannotated\n";
exitWithError(errOut.str(),std::cerr, P.inOut->logMain, EXIT_CODE_INPUT_FILES, P);
};
{//check mapped length for each mate
uint nsj=0,exl=0;
for (uint iex=0;iex<trA.nExons;iex++) {//
exl+=trA.exons[iex][EX_L];
if (iex==trA.nExons-1 || trA.canonSJ[iex]==-3) {//mate is completed, make the checks
if (nsj>0 && (exl<P.alignSplicedMateMapLmin || exl < (uint) (P.alignSplicedMateMapLminOverLmate*RA->readLength[trA.exons[iex][EX_iFrag]])) ) {
return; //do not record this transcript
};
exl=0;nsj=0;
} else if (trA.canonSJ[iex]>=0) {
nsj++;
};
};
};
if (P.outFilterBySJoutStage==2) {//junctions have to be present in the filtered set P.sjnovel
for (uint iex=0;iex<trA.nExons-1;iex++) {
if (trA.canonSJ[iex]>=0 && trA.sjAnnot[iex]==0) {
uint jS=trA.exons[iex][EX_G]+trA.exons[iex][EX_L];
uint jE=trA.exons[iex+1][EX_G]-1;
if ( binarySearch2(jS,jE,P.sjNovelStart,P.sjNovelEnd,P.sjNovelN) < 0 ) return;
};
};
};
if ( trA.exons[0][EX_iFrag]!=trA.exons[trA.nExons-1][EX_iFrag] ) {//check for correct overlap between mates
if (trA.exons[trA.nExons-1][EX_G]+trA.exons[trA.nExons-1][EX_L] <= trA.exons[0][EX_G]) return; //to avoid negative insert size
uint iexM2=trA.nExons;
for (uint iex=0;iex<trA.nExons-1;iex++) {//find the first exon of the second mate
if (trA.canonSJ[iex]==-3) {//
iexM2=iex+1;
break;
};
};
if ( trA.exons[iexM2-1][EX_G] + trA.exons[iexM2-1][EX_L] > trA.exons[iexM2][EX_G] ) {//mates overlap - check consistency of junctions
if (trA.exons[0][EX_G] > \
trA.exons[iexM2][EX_G]+trA.exons[0][EX_R]+P.alignEndsProtrude.nBasesMax) return; //LeftMateStart > RightMateStart + allowance
if (trA.exons[iexM2-1][EX_G]+trA.exons[iexM2-1][EX_L] > \
trA.exons[trA.nExons-1][EX_G]+Lread-trA.exons[trA.nExons-1][EX_R]+P.alignEndsProtrude.nBasesMax) return; //LeftMateEnd > RightMateEnd +allowance
//check for junctions consistency
uint iex1=1, iex2=iexM2+1; //last exons of the junction
for (; iex1<iexM2; iex1++) {//find first junction that overlaps 2nd mate
if (trA.exons[iex1][EX_G] >= trA.exons[iex2-1][EX_G] + trA.exons[iex2-1][EX_L]) break;
};
while (iex1<iexM2 && iex2<trA.nExons) {//cycle through all overlapping exons
if (trA.canonSJ[iex1-1]<0) {//skip non-junctions
iex1++;
continue;
};
if (trA.canonSJ[iex2-1]<0) {//skip non-junctions
iex2++;
continue;
};
if ( ( trA.exons[iex1][EX_G]!=trA.exons[iex2][EX_G] ) || ( (trA.exons[iex1-1][EX_G]+trA.exons[iex1-1][EX_L]) != (trA.exons[iex2-1][EX_G]+trA.exons[iex2-1][EX_L]) ) ) {
return; //inconsistent junctions on overlapping mates
};
iex1++;
iex2++;
};//cycle through all overlapping exons
};//mates overlap - check consistency of junctions
};//check for correct overlap between mates
if (P.scoreGenomicLengthLog2scale!=0) {//add gap length score
Score += int(ceil( log2( (double) ( trA.exons[trA.nExons-1][EX_G]+trA.exons[trA.nExons-1][EX_L] - trA.exons[0][EX_G]) ) \
* P.scoreGenomicLengthLog2scale - 0.5));
Score = max(0,Score);
};
//calculate some final values for the transcript
trA.roStart = (trA.roStr == 0) ? trA.rStart : Lread - trA.rStart - trA.rLength;
trA.maxScore=Score;
if (trA.exons[0][EX_iFrag]==trA.exons[trA.nExons-1][EX_iFrag]) {//mark single fragment transcripts
trA.iFrag=trA.exons[0][EX_iFrag];
RA->maxScoreMate[trA.iFrag] = max (RA->maxScoreMate[trA.iFrag] , Score);
} else {
trA.iFrag=-1;
};
//Variation
Score+=trA.variationAdjust(mapGen, R);
trA.maxScore=Score;
// transcript has been finalized, compare the score and record
if ( Score+P.outFilterMultimapScoreRange >= wTr[0]->maxScore \
|| ( trA.iFrag>=0 && Score+P.outFilterMultimapScoreRange >= RA->maxScoreMate[trA.iFrag] ) \
|| P.pCh.segmentMin>0) {
//only record the transcripts within the window that are in the Score range
//OR within the score range of each mate
//OR all transcript if chimeric detection is activated
// if (P.alignEndsType.in=="EndToEnd") {//check that the alignment is end-to-end
// uint rTotal=trA.rLength+trA.lIns;
// // for (uint iex=1;iex<trA.nExons;iex++) {//find the inside exons
// // rTotal+=trA.exons[iex][EX_R]-trA.exons[iex-1][EX_R];
// // };
// if ( (trA.iFrag<0 && rTotal<(RA->readLength[0]+RA->readLength[1])) || (trA.iFrag>=0 && rTotal<RA->readLength[trA.iFrag])) return;
// };
uint iTr=0; //transcript insertion/replacement place
trA.mappedLength=0;
for (uint iex=0;iex<trA.nExons;iex++) {//caclulate total mapped length
trA.mappedLength += trA.exons[iex][EX_L];
};
while (iTr < *nWinTr) {//scan through all recorded transcripts for this window - check for duplicates
//another way to calculate uOld, uNew: w/o gMap
uint nOverlap=blocksOverlap(trA,*wTr[iTr]);
uint uNew=trA.mappedLength-nOverlap;
uint uOld=wTr[iTr]->mappedLength-nOverlap;
if (uNew==0 && Score < wTr[iTr]->maxScore) {//new transript is a subset of the old ones
break;
} else if (uOld==0) {//old transcript is a subset of the new one, remove old transcript
Transcript *pTr=wTr[iTr];
for (uint ii=iTr+1;ii<*nWinTr;ii++) wTr[ii-1]=wTr[ii]; //shift transcripts
(*nWinTr)--;
wTr[*nWinTr]=pTr;
} else if (uOld>0 && (uNew>0 || Score >= wTr[iTr]->maxScore) ) {//check next transcript
iTr++;
};
};
if (iTr==*nWinTr) {//insert the new transcript
for (iTr=0;iTr<*nWinTr;iTr++) {//find inseriton location
if (Score>wTr[iTr]->maxScore || (Score==wTr[iTr]->maxScore && trA.gLength<wTr[iTr]->gLength) ) break;
};
Transcript *pTr=wTr[*nWinTr];
for (int ii=*nWinTr; ii> int(iTr); ii--) {//shift all the transcript pointers down from iTr
wTr[ii]=wTr[ii-1];
};
wTr[iTr]=pTr; //the new transcript pointer is now at *nWinTr+1, move it into the iTr
*(wTr[iTr])=trA;
if (*nWinTr<P.alignTranscriptsPerWindowNmax) {
(*nWinTr)++; //increment number of transcripts per window;
} else {
//"WARNING: too many recorded transcripts per window: iRead="<<RA->iRead<< "\n";
};
};
};
return;
};
///////////////////////////////////////////////////////////////////////////////////
int dScore=0;
Transcript trAi=trA; //trA copy with this align included, to be used in the 1st recursive call of StitchAlign
if (trA.nExons>0) {//stitch, a transcript has already been originated
dScore=stitchAlignToTranscript(tR2, tG2, WA[iA][WA_rStart], WA[iA][WA_gStart], WA[iA][WA_Length], WA[iA][WA_iFrag], WA[iA][WA_sjA], P, R, mapGen, &trAi, RA->outFilterMismatchNmaxTotal);
//TODO check if the new stitching creates too many MM, quit this transcript if so
} else { //this is the first align in the transcript
trAi.exons[0][EX_R]=trAi.rStart=WA[iA][WA_rStart]; //transcript start/end
trAi.exons[0][EX_G]=trAi.gStart=WA[iA][WA_gStart];
trAi.exons[0][EX_L]=WA[iA][WA_Length];
trAi.exons[0][EX_iFrag]=WA[iA][WA_iFrag];
trAi.exons[0][EX_sjA]=WA[iA][WA_sjA];
trAi.nExons=1; //recorded first exon
for (uint ii=0;ii<WA[iA][WA_Length];ii++) dScore+=scoreMatch; //sum all the scores
trAi.nMatch=WA[iA][WA_Length]; //# of matches
for (uint ii=0; ii<nA; ii++) WAincl[ii]=false;
};
if (dScore>-1000000) {//include this align
WAincl[iA]=true;
if ( WA[iA][WA_Nrep]==1 ) trAi.nUnique++; //unique piece
if ( WA[iA][WA_Anchor]>0 ) trAi.nAnchor++; //anchor piece piece
stitchWindowAligns(iA+1, nA, Score+dScore, WAincl, WA[iA][WA_rStart]+WA[iA][WA_Length]-1, WA[iA][WA_gStart]+WA[iA][WA_Length]-1, trAi, Lread, WA, R, mapGen, P, wTr, nWinTr, RA);
} else {
};
//also run a transcript w/o including this align
if (WA[iA][WA_Anchor]!=2 || trA.nAnchor>0) {//only allow exclusion if this is not the last anchor, or other anchors have been used
WAincl[iA]=false;
stitchWindowAligns(iA+1, nA, Score, WAincl, tR2, tG2, trA, Lread, WA, R, mapGen, P, wTr, nWinTr, RA);
};
return;
};
|