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
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2026, 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: Andreas Gogol-Doering <andreas.doering@mdc-berlin.de>
// ==========================================================================
#ifndef SEQAN_HEADER_FIND_SH
#define SEQAN_HEADER_FIND_SH
namespace seqan2
{
//////////////////////////////////////////////////////////////////////////////
// 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 {};
/*!
* @class DPSearchPattern
* @extends Pattern
* @headerfile <seqan/find.h>
* @brief A dynamic programming algorithm for approximate string-matching with a user-definable scoring function.
*
* @signature template <typename TNeedle, typename TScore[, typename TSpec[, typename TFindBeginPatternSpec]]>
* class Pattern<TNeedle, DPSearch<TScore[, TSpec[, TFindBeginPatternSpec]]> >;
*
* @tparam TScore The scoring function. Types: Score
* @tparam TNeedle The needle type. Types: String
*
* The algorithm is based on the Sellers/Needleman-Wunsch dynamic progamming algorithm. The <tt>Pattern</tt> object only
* contains the right-most column of the dynamic programming matrix.
*/
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;
typedef FindBegin_<Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > > TBase;
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), data_maxscore(0)
{}
template <typename TNeedle2>
Pattern(TNeedle2 && ndl, TScore const & _score_func, TScoreValue _limit = 0) :
data_score(_score_func),
data_limit(_limit),
data_maxscore(0)
{
setHost(*this, std::forward<TNeedle2>(ndl));
}
template <typename TNeedle2>
Pattern(TNeedle2 && ndl, TScoreValue _limit = 0) :
data_limit(_limit),
data_maxscore(0)
{
setHost(*this, std::forward<TNeedle2>(ndl));
}
Pattern(TScoreValue _limit) : data_limit(_limit), data_maxscore(0)
{
create(data_score);
}
Pattern(Pattern const & other):
TBase(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)
{}
Pattern(Pattern && other) = default;
Pattern& operator = (Pattern && other) = default;
inline Pattern &
operator = (Pattern const & other)
{
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;
}
~Pattern()
{}
};
//////////////////////////////////////////////////////////////////////////////
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>
//class 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 void
_reinitPattern(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
clear(me.data_tab);
}
//____________________________________________________________________________
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline TScore const &
scoringScheme(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me)
{
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)
{
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)
{
me.data_score = score;
clear(me.data_tab);
}
//____________________________________________________________________________
/*!
* @fn DPSearchPattern#scoreLimit
* @headerfile <seqan/find.h>
* @brief The minimal score a match must reach in approximate searching.
*
* @signature TScoreValue scoreLimit(pattern);
*
* @param[in] pattern The DPSearchPattern to query.
*
* @return TScoreValue The score limit value.
*/
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec>
inline typename Value<TScore>::Type
scoreLimit(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > const & me)
{
return me.data_limit;
}
//____________________________________________________________________________
/*!
* @fn DPSearchPattern#setSoreLimit
* @headerfile <seqan/find.h>
* @brief Set the minimal score a match must reach in approximate serach.
*
* @signature void setScoreLimit(pattern, limit);
*
* @param[in,out] pattern The DPSearchPattern to set the limit for.
* @param[in] limit The limit score value to set.
*
* @return TScoreValue The score limit value.
*/
template <typename TNeedle, typename TScore, typename TSpec, typename TFindBeginPatternSpec, typename TScoreValue>
inline void
setScoreLimit(Pattern<TNeedle, DPSearch<TScore, TSpec, TFindBeginPatternSpec> > & me,
TScoreValue _limit)
{
me.data_limit = _limit;
}
//____________________________________________________________________________
// returns the score of the last hit position found (note:position = end of occurrence in haystack)
/*!
* @fn DPSearchPattern#getScore
* @headerfile <seqan/find.h>
* @brief Score of the last found match in approximate searching.
*
* @signature TScoreValue getScore(pattern);
*
* @param[in] pattern A DPSearchPattern that can be used for approximate searching.
*
* @return TScoreValue The score of the last match found using <tt>pattern</tt>. If no match was found then the vlaue
* is undefined.
*/
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_GT(need_length, 0u);
resize(string_tab, need_length);
SEQAN_ASSERT_GEQ(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;
}
SEQAN_IF_CONSTEXPR (IsSameType<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, needle(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
_findScoreSimpleProportional(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
SEQAN_IF_CONSTEXPR (IsSameType<TSpec, FindPrefix>::VALUE)
{
if (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 = (IsSameType<TSpec, FindPrefix>::VALUE) ? score_gap * (position(finder)-prefix_begin_position) : 0;
TScoreValue v = (IsSameType<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);
SEQAN_IF_CONSTEXPR (IsSameType<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_EQ(scoreGapOpen(scoringScheme(me)), scoreGapExtend(scoringScheme(me))); //this finder is only defined for linear gap costs
return _findScoreSimpleProportional(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_EQ(scoreGapOpen(scoringScheme(me)), scoreGapExtend(scoringScheme(me))); //this finder is only defined for linear gap costs
setScoreLimit(me, limit_);
return _findScoreSimpleProportional(finder, me);
}
//////////////////////////////////////////////////////////////////////////////
}// namespace seqan2
#endif //#ifndef SEQAN_HEADER_...
|