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
|
/*==========================================================================
SeqAn - The Library for Sequence Analysis
http://www.seqan.de
============================================================================
Copyright (C) 2007
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
============================================================================
$Id: find_score.h 3704 2009-03-20 12:34:55Z rausch@PCPOOL.MI.FU-BERLIN.DE $
==========================================================================*/
#ifndef SEQAN_HEADER_FIND_SCORE_H
#define SEQAN_HEADER_FIND_SCORE_H
namespace SEQAN_NAMESPACE_MAIN
{
//////////////////////////////////////////////////////////////////////////////
// DPSearch
//////////////////////////////////////////////////////////////////////////////
//template <typename TScore, typename TSpec = FindInfix, typename TFindBeginPatternSpec = DPSearch<TScore, FindPrefix, void> >
template <typename TScore, typename TSpec = FindInfix, typename TFindBeginPatternSpec = typename DefaultFindBeginPatternSpec<TScore>::Type>
struct DPSearch;
/*
.Spec.DPSearch:
..cat:Searching
..general:Class.Pattern
..summary:A dynamic programming algorithm for approximate string-matching with a user-definable scoring function.
..signature:Pattern<TNeedle, DPSearch<TScore [, TSpec [, TFindBeginPatternSpec] ]> >
..param.TNeedle:The needle type.
...type:Class.String
..param.TScore:The scoring function.
...type:Class.Score
..remarks.text:The algorithm is based on the Sellers/Needleman-Wunsch dynamic progamming algorithm.
The $Pattern$ object only contains the right-most column of the dynamic programming matrix.
...note:At the moment, the algorithm only works on linear gap costs.
*/
///.Class.Pattern.param.TSpec.type:Class.Score
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
class Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> >:
public _FindBegin<Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > >
{
public:
typedef typename Value<TScore>::Type TScoreValue;
Holder<TNeedle> data_host;
TScore data_score;
TScoreValue data_limit;
String<TScoreValue> data_tab;
TScoreValue data_maxscore; //score of the needle matching itself (needed for banding FindPrefix)
public:
Pattern():
data_limit(0)
{
SEQAN_CHECKPOINT
}
Pattern(TNeedle & _needle,
TScore & _score_func,
TScoreValue _limit = 0):
data_score(_score_func),
data_limit(_limit)
{
SEQAN_CHECKPOINT
setHost(*this, _needle);
}
Pattern(TNeedle & _needle,
TScoreValue _limit = 0):
data_limit(_limit)
{
SEQAN_CHECKPOINT
setHost(*this, _needle);
}
Pattern(TScoreValue _limit):
data_limit(_limit)
{
SEQAN_CHECKPOINT
create(data_score);
}
Pattern(Pattern const & other):
data_host( other.data_host ),
data_score( other.data_score ),
data_limit( other.data_limit ),
data_tab( other.data_tab ),
data_maxscore( other.data_maxscore)
{
SEQAN_CHECKPOINT
}
inline Pattern &
operator = (Pattern const & other)
{
SEQAN_CHECKPOINT
this->data_host = other.data_host;
this->data_score = other.data_score;
this->data_limit = other.data_limit;
this->data_tab = other.data_tab;
this->data_maxscore = other.data_maxscore;
return *this;
}
};
//////////////////////////////////////////////////////////////////////////////
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
struct ScoringScheme <Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > >
{
typedef TScore Type;
};
//DEPRECATED
//.Metafunction.ScoreValue.param.T.type:Spec.DPSearch
//template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
//struct ScoreValue <Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > >:
// Value<TScore>
//{
//};
//////////////////////////////////////////////////////////////////////////////
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
struct FindBeginPatternSpec <Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > >
{
typedef TFindBeginPatternSpec Type;
};
template <typename TNeedle, typename TScore, typename TFindBeginPatternSpec>
struct FindBeginPatternSpec <Pattern<TNeedle, DPSearch<TScore, FindPrefix, TFindBeginPatternSpec> > >
{// no find begin for FindPrefix
typedef void Type;
};
//////////////////////////////////////////////////////////////////////////////
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline typename Host<Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > >::Type &
host(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
SEQAN_CHECKPOINT
return value(me.data_host);
}
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline typename Host<Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > const>::Type &
host(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > const & me)
{
SEQAN_CHECKPOINT
return value(me.data_host);
}
//____________________________________________________________________________
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec, typename TNeedle2>
void
setHost(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
TNeedle2 & ndl)
{
me.data_host = ndl;
clear(me.data_tab);
}
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec, typename TNeedle2>
void
setHost(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
TNeedle2 const & ndl)
{
me.data_host = ndl;
clear(me.data_tab);
}
//____________________________________________________________________________
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline TScore const &
scoringScheme(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
SEQAN_CHECKPOINT
return me.data_score;
}
//____________________________________________________________________________
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec, typename TScore2>
inline void
setScoringScheme(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
TScore2 & score)
{
SEQAN_CHECKPOINT
me.data_score = score;
clear(me.data_tab);
}
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec, typename TScore2>
inline void
setScoringScheme(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
TScore2 const & score)
{
SEQAN_CHECKPOINT
me.data_score = score;
clear(me.data_tab);
}
//____________________________________________________________________________
/**.Function.scoreLimit
..cat:Searching
..summary:The minimal score a match must reach in approximate searching.
..signature:scoreLimit(pattern)
..param.pattern:A @Concept.Pattern|pattern@ that can be used for approximate searching.
...type:Spec.DPSearch
..returns:The current score limit of $pattern$.
*/
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline typename Value<TScore>::Type
scoreLimit(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > const & me)
{
SEQAN_CHECKPOINT
return me.data_limit;
}
//____________________________________________________________________________
/**.Function.setScoreLimit
..cat:Searching
..summary:Sets the minimal score a match must reach in approximate searching.
..signature:setScoreLimit(pattern, limit)
..param.pattern:A @Concept.Pattern|pattern@ that can be used for approximate searching.
...type:Spec.DPSearch
..param.limit:The new score limit.
..see:Function.scoreLimit
*/
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec, typename TScoreValue>
inline void
setScoreLimit(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
TScoreValue _limit)
{
SEQAN_CHECKPOINT
me.data_limit = _limit;
}
//____________________________________________________________________________
// returns the score of the last hit position found (note:position = end of occurrence in haystack)
/**.Function.getScore
..cat:Searching
..summary:Score of the last found match in approximate searching.
..signature:getScore(pattern)
..param.pattern:A @Concept.Pattern|pattern@ that can be used for approximate searching.
...type:Spec.DPSearch
..returns:The score of the last match found using $pattern$.
...remarks:If no match was found, the value is undefined.
..see:Function.scoreLimit
..see:Function.setScoreLimit
..see:Function.find
*/
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline typename Value<TScore>::Type
getScore(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
return front(me.data_tab);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline void _patternInit (Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
typedef Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > TPattern;
typedef typename Value<TScore>::Type TScoreValue;
typedef typename Size<TPattern>::Type TSize;
typedef String<TScoreValue> TTab;
typedef typename Iterator<TTab, Standard>::Type TIterator;
typedef typename Iterator<TNeedle, Standard>::Type TNeedleIterator;
TScore const & scoring = scoringScheme(me);
TScoreValue score_gap = scoreGapExtend(scoring);
TTab & string_tab = me.data_tab;
//allocate enough memory for one column of DP matrix
TSize need_length = length(needle(me));
SEQAN_ASSERT(need_length);
resize(string_tab, need_length);
SEQAN_ASSERT(length(string_tab) >= need_length);
// if (length(_dataNeedle(me)) < got_length) throw(0); //???TODO: Throw "not enough memory" exception
//init matrix
//note: The column is stored in reverse order
TIterator tab_end = begin(string_tab, Standard());
TIterator tab = end(string_tab, Standard());
TScoreValue x = score_gap;
while (tab > tab_end)
{
--tab;
*tab = x;
x += score_gap;
}
if (TYPECMP<TSpec, FindPrefix>::VALUE)
{//compute data_maxscore
me.data_maxscore = 0;
TNeedleIterator it = begin(needle(me), Standard());
TNeedleIterator it_end = end(needle(me), Standard());
for (; it != it_end; ++it)
{
me.data_maxscore += score(scoring, *it, *it);
}
}
_findBeginInit(me);
}
//////////////////////////////////////////////////////////////////////////////
// find, findNext
//////////////////////////////////////////////////////////////////////////////
//proportional gap cost: Needleman-Wunsch
//???TODO: Ukkonen trick?
//???TODO: Finder for affine gap costs?
template <typename TFinder, typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
bool
_find_score_simple_proportional(TFinder & finder, Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
typedef typename Value<TScore>::Type TScoreValue;
typedef String<TScoreValue> TTab;
typedef typename Iterator<TTab, Standard>::Type TTabIterator;
typedef typename Iterator<TNeedle const, Standard>::Type TNeedleIterator;
typedef typename Value<typename Haystack<TFinder>::Type>::Type THaystackValue;
typedef typename Haystack<TFinder>::Type THaystack;
typedef typename Size<THaystack>::Type TSize;
String<TScoreValue> & string_tab = me.data_tab;
TScore const & scoring = scoringScheme(me);
TScoreValue score_gap = scoreGapExtend(scoring);
// TScoreValue score_match = scoreMatch(scoringScheme(me));
// TScoreValue score_mismatch = scoreMismatch(scoringScheme(me));
TSize prefix_begin_position;
if (empty(finder))
{
clear(me.data_tab);
_patternInit(me);
_finderSetNonEmpty(finder);
prefix_begin_position = position(finder);
}
else
{
goNext(finder);
prefix_begin_position = beginPosition(finder);
}
TSize haystack_length = length(container(hostIterator(finder)));
//limit search width for prefix search
if (TYPECMP<TSpec, FindPrefix>::VALUE && (score_gap < 0))
{
TSize maxlen = prefix_begin_position + length(needle(me)) + ((scoreLimit(me) - me.data_maxscore) / score_gap) + 1;
if (haystack_length > maxlen)
{
haystack_length = maxlen;
}
}
//start searching
TTabIterator tab_begin = end(string_tab, Standard());
TNeedle const & ndl = needle(me);
TNeedleIterator it_begin = begin(ndl, Standard());
TNeedleIterator it_end = end(ndl, Standard());
//for each character in haystack, do...
for (; position(finder) < haystack_length; ++finder)
{
//get character
THaystackValue c = *finder;
//init some variables
TNeedleIterator it = it_begin;
TScoreValue * tab = tab_begin;
TScoreValue h = (TYPECMP<TSpec, FindPrefix>::VALUE) ? score_gap * (position(finder)-prefix_begin_position) : 0;
TScoreValue v = (TYPECMP<TSpec, FindPrefix>::VALUE) ? h + score_gap : 0;
//fill the column
while (it < it_end)
{
--tab; //note: the column is stored in "reverse order"
// TScoreValue m2 = (c == *it) ? h + score_match : h + score_mismatch;
//char d = *it;
TScoreValue m2 = h + score(scoring, c, *it);
h = *tab;
TScoreValue m1 = (h > v) ? h + score_gap : v + score_gap;
v = (m1 > m2) ? m1 : m2;
*tab = v;
++it;
}
if (*tab >= scoreLimit(me) )
{//found a hit
_setFinderEnd(finder);
if (TYPECMP<TSpec, FindPrefix>::VALUE)
{
_setFinderLength(finder, endPosition(finder));
}
return true;
}
}
//found nothing
return false;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TFinder, typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline bool
find(TFinder & finder,
Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
SEQAN_ASSERT(scoreGapOpen(scoringScheme(me)) == scoreGapExtend(scoringScheme(me))) //this finder is only defined for linear gap costs
return _find_score_simple_proportional(finder, me);
}
template <typename TFinder, typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline bool
find(TFinder & finder,
Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
int const limit_)
{
SEQAN_ASSERT(scoreGapOpen(scoringScheme(me)) == scoreGapExtend(scoringScheme(me))) //this finder is only defined for linear gap costs
setScoreLimit(me, limit_);
return _find_score_simple_proportional(finder, me);
}
//////////////////////////////////////////////////////////////////////////////
}// namespace SEQAN_NAMESPACE_MAIN
#endif //#ifndef SEQAN_HEADER_...
|