File: SpliceGraph_swTraceBack.cpp

package info (click to toggle)
rna-star 2.7.8a%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,076 kB
  • sloc: cpp: 20,429; awk: 483; ansic: 470; makefile: 181; sh: 31
file content (19 lines) | stat: -rwxr-xr-x 565 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//#include "SpliceGraph.h"

//void SpliceGraph::swTraceBack(array<typeSeqLen, 2> &alignEnds, array<typeSeqLen, 2> &alignStarts)
//{
    
//     uint32 row = alignEnds[0];    
//     uint32 col = alignEnds[1];
//     uint32 rowT = 0;
//     uint32 colT = 0;
//     while(col > 0 && row > 0 && scoringMatrix[col][row] != 0) {
//         rowT = directionMatrix[col][row].second;
//         colT = directionMatrix[col][row].first;
// 
//         row = rowT;
//         col = colT;
//     };
//     alignStarts[0]=row;
//     alignStarts[1]=col;
//};