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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2018, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Tobias Rausch <rausch@embl.de>
// Author: Anne-Katrin Emde <anne-katrin.emde@fu-berlin.de>
// ==========================================================================
// Iterative instead of recursive implementation of segment match refinement.
// This is required for some large inputs to circumvent stack overflows.
// ==========================================================================
#ifndef SEQAN_INCLUDE_SEQAN_GRAPH_ALGORITHM_REFINE_EXACT_ITERATIVE_H_
#define SEQAN_INCLUDE_SEQAN_GRAPH_ALGORITHM_REFINE_EXACT_ITERATIVE_H_
namespace seqan {
struct TagExactRefinement_;
typedef Tag<TagExactRefinement_> const ExactRefinement;
// exact method, every cut is made (unless it already exists)
template<typename TValue, typename TValue2, typename TSize>
inline bool
_cutIsValid(String<std::set<TValue> > & all_nodes,
TValue2 seq_i_pos,
TSize,
typename std::set<TValue>::iterator iter,
TSize,
Tag<TagExactRefinement_> const)
{
//cut already exists
if(iter != all_nodes[seq_i_pos].end())
return false;
return true;
}
// necessary for reversed fragments: projected position pos_j is shifted one to the left --> ++pos_j if fragement reversed
template<typename TSize, typename TSpec,typename TPos>
inline void
_updateCutPosition(Fragment<TSize, ExactReversableFragment<TSpec> > & f, TPos & pos_j)
{
if(f.reversed)
++pos_j;
}
//template<typename TSize, typename TSpec,typename TPos>
//inline void
//_updateCutPosition(Fragment<TSize, ExactReversableFragment<TSpec> > const& f, TPos & pos_j)
//{
// if(f.reversed)
// ++pos_j;
//}
// for all other fragment types --> no shifting necessary
template<typename TFrag,typename TPos>
inline void
_updateCutPosition(TFrag &, TPos &)
{
return;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
//Recursive Refinement
//refine position node_i on sequence seq_i
template<typename TValue, typename TAlignmentString, typename TStringSet,typename TGraph, typename TPropertyMap,typename TSeqMap, typename TTagSpec>
inline void
_refine(TValue node_i,
TValue seq_i_id,
TStringSet & seqs,
TSeqMap & seq_map,
TAlignmentString & alis,
String<TGraph> & gs,
String<TPropertyMap> & pms,
String<std::set<TValue> > & all_nodes,
TValue min_len,
Tag<TTagSpec> tag)
{
typedef typename Cargo<typename Value<TPropertyMap>::Type>::Type TAlignmentPointer;
typedef typename Iterator<String<TAlignmentPointer>, Rooted>::Type TSegmentIterator;
//find all segment matches that contain the current position (node_i)
String<TAlignmentPointer> relevant_segments;
TValue seq_i_pos = idToPosition(seqs,seq_i_id);
findIntervalsExcludeTouching(relevant_segments, gs[seq_i_pos],pms[seq_i_pos],node_i);
TSegmentIterator segment_it = begin(relevant_segments);
TSegmentIterator segment_end = end(relevant_segments);
//foreach of those segments
while(segment_it != segment_end)
{
TValue match_id = (*segment_it).i1; // segment match
TValue seg_num = (*segment_it).i2; // first or second segment in segment match?
//get the sequence that node_i needs to be projected onto (seq_j)
//and get the projected position (pos_j)
TValue seq_j_id, node_j;
_getOtherSequenceAndProject(alis[match_id],seg_num,seq_map,seq_i_id,node_i,seq_j_id,node_j);
TValue seq_j_pos = idToPosition(seqs,seq_j_id);
_updateCutPosition(alis[match_id],node_j);
typename std::set<TValue>::iterator iter;
iter = all_nodes[seq_j_pos].find(node_j);
//if node does not exist yet ---> insert and continue cutting
if(_cutIsValid(all_nodes,seq_j_pos,node_j,iter,min_len,tag))
{
all_nodes[seq_j_pos].insert(node_j);
_refine(node_j,seq_j_id,seqs,seq_map,alis,gs,pms,all_nodes,min_len,tag);
}
// TODO: else //verschmelzen, abschneiden und ergehen, erst sp�ter...
// do nothing or resolve problems
++segment_it;
}
}
//template<typename TFragSize, typename TFragSpec>
//void
//printMatch(Fragment<TFragSize,TFragSpec> & f)
//{
// std::cout << "FRAGMENT:" << " f.len = "<< f.len <<std::endl;
// std::cout << "f.seqId1 = "<< f.seqId1 << " f.begin1 = " << f.begin1 << std::endl;
// std::cout << "f.seqId2 = "<< f.seqId2 << " f.begin2 = " << f.begin2 << std::endl;
//}
//template<typename TAlign>
//void
//printMatch(TAlign & f)
//{
// std::cout << f;
//}
///////////////////////////////////////////////////////////////////////////////////////////////////////
// Construct interval trees
////////////////////////////////////////////////////////////////////////////////////////////////////
//construct intervals from allignments for each sequence (other Alignment types)
template<typename TInterval, typename TStringSet, typename TAlignmentString, typename TSeqMap>
void
_buildIntervalsForAllSequences(TAlignmentString & alis,
String<String<TInterval> > & intervals,
TStringSet & seqs,
TSeqMap & seq_map)
{
typedef typename Value<TInterval>::Type TValue;
typedef typename Cargo<TInterval>::Type TCargo;
typedef typename Iterator<TAlignmentString,Standard>::Type TAliIterator;
TAliIterator ali_it = begin(alis,Standard());
TAliIterator ali_end = end(alis,Standard());
TValue ali_counter = 0;
//foreach alignment
while(ali_it != ali_end)
{
TValue seq_i_id,begin_,end_;
//printMatch(*ali_it);
//get the first sequence (and its begin and end) that takes part in the alignment (seq_i)
_getSeqBeginAndEnd(*ali_it,seq_map,seq_i_id,begin_,end_,0);
TValue seq_i_pos = idToPosition(seqs, seq_i_id);
//and append the interval (ali_begin, ali_end) with cargo ali* to the list of intervals of seq_i
appendValue(intervals[seq_i_pos],IntervalAndCargo<TValue,TCargo>(begin_,end_,TCargo(ali_counter,0)));
//get the second sequence (and its begin and end) that takes part in the alignment (seq_i)
_getSeqBeginAndEnd(*ali_it,seq_map,seq_i_id,begin_,end_,1);
seq_i_pos = idToPosition(seqs, seq_i_id);
//and again append the interval (ali_begin, ali_end) with cargo ali* to the list of intervals of seq_i
appendValue(intervals[seq_i_pos],IntervalAndCargo<TValue,TCargo>(begin_,end_,TCargo(ali_counter,1)));
++ali_counter;
++ali_it;
}
}
//get all intervals from the alignments and construct an interval tree for each sequence
template<typename TGraph, typename TPropertyMap, typename TAlignmentString, typename TSequence, typename TSetSpec, typename TValue, typename TSeqMap>
void
_createTreesForAllSequences(String<TGraph> & gs,
String<TPropertyMap> & pms,
TAlignmentString & alis,
StringSet<TSequence,TSetSpec> & seqs,
TSeqMap & seq_map,
TValue numSequences)
{
//typedef typename Value<TAlignmentString>::Type TAlignment;
// typedef TAlignment* TCargo;
typedef Pair<unsigned,unsigned,BitPacked<31,1> > TCargo;
typedef IntervalAndCargo<int,TCargo> TInterval;
//typedef typename VertexDescriptor<TGraph>::Type TVertexDescriptor;
//std::cout <<"create interval trees...";
// clock_t start, finish1;
// double duration;
// start = clock();
//one tree for each sequence
resize(gs,numSequences);
resize(pms,numSequences);
// and one string of intervals for each sequence
String<String<TInterval> > intervals;
resize(intervals,numSequences);
// fill intervals
_buildIntervalsForAllSequences(alis,intervals,seqs,seq_map);
TValue i = 0;
while(i < numSequences)
{
//std::cout << (numSequences-i) <<" more ("<<length(intervals[i])<<" intervals)... "<<std::flush;
TValue center = length(seqs[i])/2; // center raus, hat hier nix zu suchen
//create interval tree!
createIntervalTree(gs[i], pms[i], intervals[i], center);
//intervals for sequence i are not needed anymore
clear(intervals[i]);
++i;
}
// finish1 = clock();
// duration = (double)(finish1 - start) / CLOCKS_PER_SEC;
// std::cout << "\ntook " << duration << " seconds.\n";
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
// Construct refined alignment graph
////////////////////////////////////////////////////////////////////////////////////////////////////
// step 1 of constructing the refined alignment graph: create all nodes
template<typename TStringSet,typename TValue,typename TAliGraph>
void
_makeRefinedGraphNodes(String<std::set<TValue> > & all_nodes,
TStringSet & seqs,
TAliGraph & ali_g)
{
typedef typename std::set<TValue>::iterator TSetIterator;
//for each sequence look at all cut positions and create nodes between them
for(unsigned int seq_i_pos = 0; seq_i_pos < length(seqs); ++seq_i_pos)
{
TValue seq_i_id = positionToId(stringSet(ali_g), seq_i_pos);
TSetIterator it = all_nodes[seq_i_pos].begin();
TSetIterator end_it = all_nodes[seq_i_pos].end();
TSetIterator next_it = it;
if(next_it != end_it)
++next_it;
else
addVertex(ali_g, seq_i_id, 0, length(seqs[seq_i_pos]));
//first unaligned node
if(it != end_it && *it != 0)
addVertex(ali_g, seq_i_id, 0, *it);
//a new node for each interval
while(next_it != end_it)
{
TValue pos_i = *it;
addVertex(ali_g, seq_i_id, pos_i, *next_it - pos_i);
++it;
++next_it;
}
//last unaligned node
if(it !=end_it && *it<length(seqs[seq_i_pos]))
addVertex(ali_g, seq_i_id, *it, (length(seqs[seq_i_pos])) - *it);
all_nodes[seq_i_pos].clear();
}
}
// step 2 of constructing the refined alignment graph: add all edges
// version for exact refinement
template<typename TAlignmentString,typename TStringSet,typename TSeqMap, typename TPropertyMap,typename TScore,typename TAliGraph >
void
_makeRefinedGraphEdges(TAlignmentString & alis,
TPropertyMap & pm,
TStringSet & seqs,
TSeqMap & seq_map,
TScore & score_type,
TAliGraph & ali_g,
Tag<TagExactRefinement_> const)
{
typedef typename Value<TAlignmentString>::Type TAlign;
typedef typename Size<TAlign>::Type TValue;
typedef typename Iterator<TAlignmentString, Rooted>::Type TAliIterator;
typedef typename VertexDescriptor<TAliGraph>::Type TVertexDescriptor;
typedef typename EdgeDescriptor<TAliGraph>::Type TEdgeDescriptor;
typedef typename Cargo<TAliGraph>::Type TCargo;
//make edges
TAliIterator ali_it = begin(alis);
TAliIterator ali_end = end(alis);
//for each segment/fragment/alignment
while(ali_it != ali_end)
{
//get sequence, begin position and end position
TValue seq_id,begin_pos,end_pos;
_getSeqBeginAndEnd(*ali_it,seq_map,seq_id,begin_pos,end_pos,(TValue)0);
SEQAN_ASSERT_LEQ(end_pos, length(seqs[idToPosition(seqs, seq_id)]));
SEQAN_ASSERT(ali_it.data_container == ali_end.data_container);
SEQAN_ASSERT(ali_it.data_iterator != ali_end.data_iterator);
//get the node represents the current interval (begin_pos until next_cut_pos or end_pos)
TVertexDescriptor act_knot = findVertex(ali_g,seq_id,begin_pos);
TValue act_pos = begin_pos;
TValue seq_j_id_temp,pos_j_begin;
_getOtherSequenceAndProject(*ali_it,(TValue)0,seq_map,seq_id,act_pos,seq_j_id_temp,pos_j_begin);
//for each interval that lies within the current segment/fragement/alignment
while(act_pos < end_pos)
{
//get other sequence and projected position
TValue seq_j_id,pos_j;
_getOtherSequenceAndProject(*ali_it,(TValue)0,seq_map,seq_id,act_pos,seq_j_id,pos_j);
SEQAN_ASSERT_NEQ(pos_j, static_cast<TValue>(-1));
//find node that contains the projected position (pos_j)
TVertexDescriptor vd = findVertex(ali_g, seq_j_id, pos_j);
bool doAddEdge = true;
// if(doAddEdge && fragmentBegin(ali_g,vd)!=pos_j) // check if edge makes sense
if (vd == getNil<TVertexDescriptor>())
doAddEdge = false;
else
{
TValue temp_seq_i_id,temp_act_pos;
_getOtherSequenceAndProject(*ali_it,(TValue)1,seq_map,seq_j_id,static_cast<TValue>(fragmentBegin(ali_g,vd)),temp_seq_i_id,temp_act_pos);
if(temp_act_pos == static_cast<TValue>(-1))
doAddEdge = false;
else
{
TVertexDescriptor temp_act_knot = findVertex(ali_g, temp_seq_i_id, temp_act_pos);
if(act_knot!=temp_act_knot)
doAddEdge = false;
}
}
if(doAddEdge)
{
typename Value<TScore>::Type score = _getRefinedMatchScore(score_type,seqs,*ali_it,act_pos,pos_j,fragmentLength(ali_g,act_knot),fragmentLength(ali_g,vd));//,fragmentLength(ali_g,vd));
// typename Value<TScore>::Type score = fragmentLength(ali_g,vd);
score *= _getRefinedAnnoScore(ali_g,pm,vd,act_knot,score_type);
//this needs to be generalized (makes sense for positive scores only)
if(score <= 0) score = 1;
if(score > 0)
{
if (findEdge(ali_g, act_knot, vd) == 0) {
//if(abs((double)fragmentLength(ali_g, act_knot) - (double)fragmentLength(ali_g, vd)) > 20) {
// std::cerr << "added edge: " << fragmentLength(ali_g, act_knot) << " " << fragmentLength(ali_g, vd) << std::endl;
// std::cerr << *ali_it;
// std::cerr << "act_pos=" << act_pos-begin_pos << " pos_j=" << pos_j-pos_j_begin << std::endl;
//} else {
addEdge(ali_g,act_knot,vd,(TCargo)score);
//}
}
else {
TEdgeDescriptor ed = findEdge(ali_g, act_knot, vd);
//if((TCargo)score > getCargo(ed))
//assignCargo(ed, score);
assignCargo(ed, getCargo(ed)+score);
}
}
}
//prepare for next interval
act_pos += fragmentLength(ali_g,act_knot);
act_knot = findVertex(ali_g,seq_id,act_pos);
}
++ali_it;
}
}
//build refined alignment graph, nodes are numbered ascendingly:
//seq1 0 1 2 3 4
//seq2 5 6 7 8 9 10
//seq3 11 12 13 14 15
template<typename TValue,typename TAlignmentString,typename TScore,typename TSequence, typename TSetSpec,typename TAliGraph,typename TSeqMap,typename TTagSpec>
void
_makeAlignmentGraphFromRefinedSegments(String<std::set<TValue> > & all_nodes,
TAlignmentString & alis,
TScore & score_type,
StringSet<TSequence, TSetSpec> & seqs,
TSeqMap & seq_map,
TAliGraph & ali_g,
Tag<TTagSpec> const tag,
bool)
{
//std::cout << "making refined alignment graph...";
//clock_t start, finish1;
//double duration;
//start = clock();
//make nodes (same function for inexact and exact refinement)
_makeRefinedGraphNodes(all_nodes,seqs,ali_g);
bool pm = false;
//add edges (different functions depending on exact/inexact refinement)
_makeRefinedGraphEdges(alis,pm,seqs,seq_map,score_type,ali_g,tag);
//std::cout << "check\n";
//finish1 = clock();
//duration = (double)(finish1 - start) / CLOCKS_PER_SEC;
//std::cout << "\ntook " << duration << " seconds.\n";
}
//build refined alignment graph as above, but with additional annotation information
template<typename TValue,typename TAlignmentString,typename TScore,typename TSequence, typename TSetSpec,typename TAliGraph,typename TSeqMap,typename TAnnoString,typename TTagSpec>
void
_makeAlignmentGraphFromRefinedSegments(String<std::set<TValue> > & all_nodes,
TAlignmentString & alis,
TScore & score_type,
StringSet<TSequence, TSetSpec> & seqs,
TSeqMap & seq_map,
TAliGraph & ali_g,
Tag<TTagSpec> const tag,
TAnnoString & annotation)
{
//std::cout << "making refined alignment graph...";
//clock_t start, finish1;
//double duration;
//start = clock();
//make nodes (same function for inexact and exact refinement)
_makeRefinedGraphNodes(all_nodes,seqs,ali_g);
//add annotation to nodes
//typedef typename Value<TAnnoString>::Type TAnnotation;
//typedef typename Value<TAnnotation>::Type TLabel;
typedef char TLabel;
String<String<TLabel> > pm;
_addNodeAnnotation(seqs,seq_map,annotation,pm,ali_g,tag);
//add edges (different functions depending on exact/inexact refinement)
_makeRefinedGraphEdges(alis,pm,seqs,seq_map,score_type,ali_g,tag);
//std::cout << "check\n";
//finish1 = clock();
//duration = (double)(finish1 - start) / CLOCKS_PER_SEC;
//std::cout << "\ntook " << duration << " seconds.\n";
}
////////////////////////////////////////////////////////////////////////////////////////
//The big matchRefinement function that does everything: build interval trees, do the
//refinement and construct a refined alignment graph
////////////////////////////////////////////////////////////////////////////////////////
template<typename TAlignmentString, typename TAnnotation, typename TOutGraph, typename TSequence, typename TSetSpec, typename TScore,typename TTagSpec>
void
matchRefinement(TAlignmentString & alis,
StringSet<TSequence, TSetSpec> & seq,
TScore & score_type,
TOutGraph & ali_graph,
typename Size<typename Value<TAlignmentString>::Type>::Type min_fragment_len,
TAnnotation & annotation,
Tag<TTagSpec> const tag)
{
////////////////////////////////////////////////////////////////
//typedefs
typedef typename Value<TAlignmentString>::Type TAlign;
typedef typename Iterator<TAlignmentString, Rooted>::Type TAliIterator;
typedef typename Size<TAlign>::Type TValue;
// typedef TValue TCargo;
// typedef Pair<unsigned,unsigned,BitPacked<31,1> > TCargo;
typedef Pair<unsigned,unsigned,BitPacked<31,1> > TCargo;
typedef IntervalAndCargo<int,TCargo> TInterval;
typedef Graph<Directed<void,WithoutEdgeId> > TGraph;
typedef IntervalTreeNode<TInterval> TNode;
typedef String<TNode> TPropertyMap;
typedef typename std::set<TValue>::iterator TSetIterator;
typedef typename Cargo<typename Value<TPropertyMap>::Type>::Type TAlignmentPointer;
typedef typename Iterator<String<TAlignmentPointer>, Rooted>::Type TSegmentIterator;
#ifdef SEQAN_TCOFFEE_DEBUG
double refinementTime = sysTime();
#endif
////////////////////////////////////////////////////////////////
TValue numSequences = length(seq);
//weird ID --> good ID map
std::map<const void * ,int> seq_map;
for(int i = 0; i < (int) numSequences; ++i)
seq_map[getObjectId(seq[i])] = i;
////////////////////////////////////////////////////////////////
//build interval trees
String<TGraph> gs;
String<TPropertyMap> pms;
_createTreesForAllSequences(gs, pms, alis, seq, seq_map, numSequences);
////////////////////////////////////////////////////////////////
//do refinement
//std::cout <<"refining..."<<std::flush;
// clock_t start, finish1;
// double duration;
// start = clock();
//all_nodes = set of all cut positions
String<std::set<TValue> > all_nodes;
resize(all_nodes,numSequences);
//all_nodes that need to be processed set of all cut positions
String<std::set<TValue> > all_node_queues;
resize(all_node_queues,numSequences);
//call function _refine for each startknoten
TAliIterator ali_it = begin(alis);
TAliIterator ali_end = end(alis);
//for each segment/fragement/alignment
while(ali_it != ali_end)
{
//for each of the two sequences
for(TValue i = 0; i < 2; ++i)
{
TValue seq_i_id,begin_i,end_i;
_getSeqBeginAndEnd(*ali_it,seq_map,seq_i_id,begin_i,end_i,i);
TValue seq_i_pos = idToPosition(seq,seq_i_id);
all_node_queues[seq_i_pos].insert(begin_i);
all_node_queues[seq_i_pos].insert(end_i);
}
++ali_it;
}
TSetIterator queueIt;
bool done = false;
while(!done)
{
for(unsigned seq_i_pos = 0; seq_i_pos < numSequences; ++seq_i_pos)
{
queueIt = all_node_queues[seq_i_pos].begin();
while (queueIt != all_node_queues[seq_i_pos].end())
{
TValue node_i = *queueIt;
TSetIterator iter = all_nodes[seq_i_pos].find(node_i);
// TSetIterator qiter = all_node_queues[seq_i_pos].find(node_i);
if(_cutIsValid(all_nodes,seq_i_pos,node_i,iter,min_fragment_len,tag))
//&& _cutIsValid(all_node_queues,seq_i_pos,node_i,qiter,min_fragment_len,tag))
// if(iter == all_nodes[seq_i_pos].end())
{
TValue seq_i_id = positionToId(seq, seq_i_pos);
all_nodes[seq_i_pos].insert(node_i);
String<TAlignmentPointer> relevant_segments;
findIntervalsExcludeTouching(relevant_segments, gs[seq_i_pos],pms[seq_i_pos],node_i);
TSegmentIterator segment_it = begin(relevant_segments);
TSegmentIterator segment_end = end(relevant_segments);
//foreach of those segments
while(segment_it != segment_end)
{
TValue match_id = (*segment_it).i1;
TValue seg_num = (*segment_it).i2; //get the sequence that node_i needs to be projected onto (seq_j)
//and get the projected position (pos_j)
TValue seq_j_id, node_j;
_getOtherSequenceAndProject(alis[match_id],seg_num,seq_map,seq_i_id,node_i,seq_j_id,node_j);
TValue seq_j_pos = idToPosition(seq,seq_j_id);
_updateCutPosition(alis[match_id],node_j);
typename std::set<TValue>::iterator iter_j, qiter_j;
iter_j = all_nodes[seq_j_pos].find(node_j);
qiter_j = all_node_queues[seq_j_pos].find(node_j);
//if node does not exist yet ---> insert and continue cutting
if(_cutIsValid(all_nodes,seq_j_pos,node_j,iter_j,min_fragment_len,tag)
&& _cutIsValid(all_node_queues,seq_j_pos,node_j,qiter_j,min_fragment_len,tag))
//if(iter_j == all_nodes[seq_j_pos].end())
{
all_node_queues[seq_j_pos].insert(node_j);
}
++segment_it;
}
}
++queueIt;
}
all_node_queues[seq_i_pos].clear();
}
unsigned i;
for(i = 0; i < numSequences; ++i)
{
queueIt = all_node_queues[i].begin();
if (queueIt != all_node_queues[i].end())
break;
}
if(i==numSequences)
done=true;
}
_addAnnotationCuts(all_nodes,alis,gs,pms,seq,seq_map,annotation,min_fragment_len,tag);
// finish1 = clock();
// duration = (double)(finish1 - start) / CLOCKS_PER_SEC;
//std::cout << "\ntook " << duration << " seconds.\n";
//for(int seq_i = 0; seq_i < length(seq); ++seq_i)
//{
// typename std::set<TValue>::iterator it = all_nodes[seq_i].begin();
// typename std::set<TValue>::iterator end_it = all_nodes[seq_i].end();
//
// while(it != end_it)
// {
// std::cout << *it << ",";
// ++it;
// }
// std::cout << "\n";
//}
//std::cout <<"building tree..."<<std::flush;
#ifdef SEQAN_TCOFFEE_DEBUG
std::cout << std::setw(30) << std::left << "Segment-match refinement:" << std::setw(10) << std::right << sysTime() - refinementTime << " s" << std::endl;
double buildGraphTime = sysTime();
#endif
////////////////////////////////////////////////////////////////
//build refined alignment graph
_makeAlignmentGraphFromRefinedSegments(all_nodes,alis,score_type,seq,seq_map,ali_graph,tag,annotation);
#ifdef SEQAN_TCOFFEE_DEBUG
std::cout << std::setw(30) << std::left << "Build alignment graph:" << std::setw(10) << std::right << sysTime() - buildGraphTime << " s" << std::endl;
#endif
}
///////WRAPPERS
//exact refinement, score type given
template<typename TAlignmentString, typename TScoreValue,typename TScoreSpec,typename TOutGraph, typename TSequence, typename TSetSpec>
void
matchRefinement(TAlignmentString & alis,
StringSet<TSequence, TSetSpec> & seq,
Score<TScoreValue,TScoreSpec> & score_type,
TOutGraph & ali_graph)
{
//min_fragment_len = 1 ==> Exact cutting
bool anno = false;
matchRefinement(alis,seq,score_type,ali_graph,1,anno,ExactRefinement());
}
//exact refinement, score type not given
template<typename TFragmentString, typename TOutGraph, typename TSequence, typename TSetSpec>
void
matchRefinement(TFragmentString & matches,
StringSet<TSequence, TSetSpec> & strSet,
TOutGraph & ali_graph)
{
typename Cargo<TOutGraph>::Type fake_score = 1;
bool anno = false;
matchRefinement(matches,strSet,fake_score,ali_graph,1,anno,ExactRefinement());
}
} // namespace seqan
#endif // #ifndef SEQAN_INCLUDE_SEQAN_GRAPH_ALGORITHM_REFINE_EXACT_ITERATIVE_H_
|