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
|
// ==========================================================================
// 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: Tobias Rausch <rausch@embl.de>
// ==========================================================================
#ifndef SEQAN_INCLUDE_SEQAN_ALIGN_ALIGN_CONFIG_H_
#define SEQAN_INCLUDE_SEQAN_ALIGN_ALIGN_CONFIG_H_
namespace seqan2 {
// ============================================================================
// Forwards
// ============================================================================
// ============================================================================
// Tags, Classes, Enums
// ============================================================================
// ----------------------------------------------------------------------------
// Class AlignConfig
// ----------------------------------------------------------------------------
/*!
* @class AlignConfig
* @headerfile <seqan/align.h>
* @brief Indication of whether begin/end gaps are free for DP alignment algorithms.
*
* @signature template <bool TOP, bool LEFT, bool RIGHT, bool BOTTOM, typename TSpec>
* struct AlignConfig;
*
* @tparam TOP Whether or not the begin gaps in the vertical sequence are free.
* @tparam LEFT Whether or not the begin gaps in the horizontal sequence are free.
* @tparam RIGHT Whether or not the end gaps in the horizontal sequence are free.
* @tparam BOTTOM Whether or not the end gap sin the vertical sequence are free.
* @tparam TSpec Tag for specializing the AlignConfig object (default: <tt>Default</tt>).
*
* Used in the DP alignment algorithms to configure the begin/end gap free-nes.
*
* @see globalAlignment
*
* @section Specialization List
*
* The following gives an (incomplete) list of useful AlignConfig specializations.
*
* <dl>
* <dt><tt>AlignConfig<false, false, false, false></tt></dt>
* <dd>ordinary global alignment</dd>
* <dt><tt>AlignConfig<true, false, false, true></tt></dt>
* <dd>semiglobal alignment, free begin and end gaps in second/vertical sequence</dd>
* <dt><tt>AlignConfig<false, true, true, false></tt></dt>
* <dd>semiglobal alignment, free begin and end gaps in first/horizontal sequence</dd>
* <dt><tt>AlignConfig<false, true, false, true></tt></dt>
* <dd>overlap alignment with second/vertical sequence overhanging to the left of first/horizontal</dd>
* <dt><tt>AlignConfig<true, false, true, false></tt></dt>
* <dd>overlap alignment with first/horizontal sequence overhanging to the left of second/vertical</dd>
* <dt><tt>AlignConfig<false, true, false, false></tt></dt>
* <dd>free begin gaps in second/vertical sequence only</dd>
* <dt><tt>AlignConfig<false, false, true, false></tt></dt>
* <dd>free end gaps in second/vertical sequence only</dd>
* </dl>
*/
template <bool TOP = false, bool LEFT = false, bool RIGHT = false, bool BOTTOM = false, typename TSpec = Default>
class AlignConfig
{};
// ============================================================================
// Metafunctions
// ============================================================================
// ============================================================================
// Functions
// ============================================================================
// TODO(holtgrew): Make this follow the header structure.
template<bool TTop, bool TRight, bool TBottom, typename TSpec, typename TElement, typename TCost>
inline void
_initFirstColumn(AlignConfig<TTop, false, TRight, TBottom, TSpec> const,
TElement& element,
TCost const cost)
{
element = cost;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TRight, bool TBottom, typename TSpec, typename TElement, typename TCost>
inline void
_initFirstColumn(AlignConfig<TTop, true, TRight, TBottom, TSpec> const,
TElement& element,
TCost const)
{
element = 0;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TLeft, bool TRight, bool TBottom, typename TSpec, typename TElement, typename TCost>
inline void
_initFirstRow(AlignConfig<false, TLeft, TRight, TBottom, TSpec> const,
TElement& element,
TCost const cost)
{
element = cost;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TLeft, bool TRight, bool TBottom, typename TSpec, typename TElement, typename TCost>
inline void
_initFirstRow(AlignConfig<true, TLeft, TRight, TBottom, TSpec> const,
TElement& element,
TCost const)
{
element = 0;
}
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TRight, typename TSpec, typename TValue1, typename TIndex1, typename TValue2, typename TIndex2>
inline void
_lastRow(AlignConfig<TTop, TLeft, TRight, false, TSpec> const,
TValue1&,
TIndex1&,
TValue2 const,
TIndex2 const)
{
// Nop
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TRight, typename TSpec, typename TValue1, typename TIndex1, typename TValue2, typename TIndex2>
inline void
_lastRow(AlignConfig<TTop, TLeft, TRight, true, TSpec> const,
TValue1& maxValue,
TIndex1& maxIndex,
TValue2 const val,
TIndex2 const index)
{
if (val > maxValue[0]) {
maxValue[0] = val;
maxIndex[0] = index;
}
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TBottom, typename TSpec, typename TValue1, typename TIndex1, typename TColumn>
inline void
_lastColumn(AlignConfig<TTop, TLeft, false, TBottom, TSpec> const,
TValue1& maxValue,
TIndex1&,
TColumn const& column)
{
maxValue[1] = column[length(column) - 1];
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TBottom, typename TSpec, typename TValue1, typename TIndex1, typename TColumn>
inline void
_lastColumn(AlignConfig<TTop, TLeft, true, TBottom, TSpec> const,
TValue1& maxValue,
TIndex1& maxIndex,
TColumn const& column)
{
typedef typename Size<TColumn>::Type TSize;
typedef typename Iterator<TColumn, Standard>::Type TColIter;
TSize limit = length(column) - 1;
maxValue[1] = column[limit];
TColIter itCol = begin(column, Standard());
TColIter itColEnd = end(column, Standard());
for(TSize i = 0;itCol != itColEnd; ++i, ++itCol) {
if (*itCol > maxValue[1]) {
maxValue[1] = *itCol;
maxIndex[1] = i;
}
}
}
//////////////////////////////////////////////////////////////////////////////
template<typename TScoreValue, bool TTop, bool TLeft, typename TSpec, typename TValue, typename TIndex, typename TSize>
inline TScoreValue
_maxOfAlignment(AlignConfig<TTop, TLeft, false, false, TSpec> const,
TValue& maxValue,
TIndex&,
TSize const,
TSize const)
{
return maxValue[1];
}
//////////////////////////////////////////////////////////////////////////////
template<typename TScoreValue, bool TTop, bool TLeft, typename TSpec, typename TValue, typename TIndex, typename TSize>
inline TScoreValue
_maxOfAlignment(AlignConfig<TTop, TLeft, true, false, TSpec> const,
TValue& maxValue,
TIndex& maxIndex,
TSize const len1,
TSize const)
{
maxIndex[0] = len1;
return maxValue[1];
}
//////////////////////////////////////////////////////////////////////////////
template<typename TScoreValue, bool TTop, bool TLeft, typename TSpec, typename TValue, typename TIndex, typename TSize>
inline TScoreValue
_maxOfAlignment(AlignConfig<TTop, TLeft, false, true, TSpec> const,
TValue& maxValue,
TIndex& maxIndex,
TSize const,
TSize const len2)
{
maxIndex[1] = len2;
return maxValue[0];
}
//////////////////////////////////////////////////////////////////////////////
template<typename TScoreValue, bool TTop, bool TLeft, typename TSpec, typename TValue, typename TIndex, typename TSize>
inline TScoreValue
_maxOfAlignment(AlignConfig<TTop, TLeft, true, true, TSpec> const,
TValue& maxValue,
TIndex& maxIndex,
TSize const len1,
TSize const len2)
{
// Find the maximum
if (maxValue[1] > maxValue[0]) maxIndex[0] = len1;
else maxIndex[1] = len2;
return (maxValue[0] > maxValue[1]) ? maxValue[0] : maxValue[1];
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TBottom, typename TSpec, typename TValue1, typename TIndex1, typename TValue2, typename TIndex2>
inline void
_lastColumn(AlignConfig<TTop, TLeft, false, TBottom, TSpec> const,
TValue1& maxValue,
TIndex1& maxIndex,
TValue2 const val,
TIndex2 const row,
TIndex2 const col)
{
maxValue[1] = val; maxIndex[2] = row; maxIndex[3] = col;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TBottom, typename TSpec, typename TValue1, typename TIndex1, typename TValue2, typename TIndex2>
inline void
_lastColumn(AlignConfig<TTop, TLeft, true, TBottom, TSpec> const,
TValue1& maxValue,
TIndex1& maxIndex,
TValue2 const val,
TIndex2 const row,
TIndex2 const col)
{
if (val > maxValue[1]) {maxValue[1] = val; maxIndex[2] = row; maxIndex[3] = col; }
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TRight, typename TSpec, typename TValue1, typename TIndex1, typename TValue2, typename TIndex2>
inline void
_lastRow(AlignConfig<TTop, TLeft, TRight, false, TSpec> const,
TValue1& maxValue,
TIndex1& maxIndex,
TValue2 const val,
TIndex2 const row,
TIndex2 const col)
{
maxValue[0] = val; maxIndex[0] = row; maxIndex[1] = col;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TRight, typename TSpec, typename TValue1, typename TIndex1, typename TValue2, typename TIndex2>
inline void
_lastRow(AlignConfig<TTop, TLeft, TRight, true, TSpec> const,
TValue1& maxValue,
TIndex1& maxIndex,
TValue2 const val,
TIndex2 const row,
TIndex2 const col)
{
if (val > maxValue[0]) {maxValue[0] = val; maxIndex[0] = row; maxIndex[1] = col; }
}
//////////////////////////////////////////////////////////////////////////////
template<bool TLeft, bool TRight, bool TBottom, typename TSpec>
inline bool
_configValueTop(AlignConfig<true, TLeft, TRight, TBottom, TSpec> const)
{
return true;
}
template<bool TLeft, bool TRight, bool TBottom, typename TSpec>
inline bool
_configValueTop(AlignConfig<false, TLeft, TRight, TBottom, TSpec> const)
{
return false;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TRight, bool TBottom, typename TSpec>
inline bool
_configValueLeft(AlignConfig<TTop, true, TRight, TBottom, TSpec> const)
{
return true;
}
template<bool TTop, bool TRight, bool TBottom, typename TSpec>
inline bool
_configValueLeft(AlignConfig<TTop, false, TRight, TBottom, TSpec> const)
{
return false;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TBottom, typename TSpec>
inline bool
_configValueRight(AlignConfig<TTop, TLeft, true, TBottom, TSpec> const)
{
return true;
}
template<bool TTop, bool TLeft, bool TBottom, typename TSpec>
inline bool
_configValueRight(AlignConfig<TTop, TLeft, false, TBottom, TSpec> const)
{
return false;
}
//////////////////////////////////////////////////////////////////////////////
template<bool TTop, bool TLeft, bool TRight, typename TSpec>
inline bool
_configValueBottom(AlignConfig<TTop, TLeft, TRight, true, TSpec> const)
{
return true;
}
template<bool TTop, bool TLeft, bool TRight, typename TSpec>
inline bool
_configValueBottom(AlignConfig<TTop, TLeft, TRight, false, TSpec> const)
{
return false;
}
} // namespace seqan2
#endif // #ifndef SEQAN_INCLUDE_SEQAN_ALIGN_ALIGN_CONFIG_H_
|