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
|
// ==========================================================================
// 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>
// ==========================================================================
// Code for the Simple Scoring Schema.
// ==========================================================================
#ifndef SEQAN_SSCORE_SIMPLE_H_
#define SEQAN_SSCORE_SIMPLE_H_
namespace seqan2 {
/*!
* @class SimpleScore
* @extends Score
* @headerfile <seqan/score.h>
* @brief Simple scoring scheme that has scores for matches, mismatches, opening gaps and extending gaps.
*
* @signature template <typename TValue>
* class Score<TValue, Simple>;
*
* @tparam TValue The score value to use.
*/
template <typename TValue>
class Score<TValue, Simple> {
public:
// The score for a match.
TValue data_match;
// The score for a mismatch.
TValue data_mismatch;
// The gap extension score.
TValue data_gap_extend;
// The gap open score.
TValue data_gap_open;
Score()
: data_match(0), data_mismatch(-1), data_gap_extend(-1),
data_gap_open(-1) {
}
Score(TValue _match, TValue _mismatch, TValue _gap)
: data_match(_match), data_mismatch(_mismatch),
data_gap_extend(_gap), data_gap_open(_gap) {
}
/*!
* @fn SimpleScore::Score
* @brief Constructor
*
* @signature Score::Score();
* @signature Score::Score(score);
* @signature Score::Score(match, mismatch, gap[, gapOpen]);
*
* @param[in] score Other SimpleScore object to copy from.
* @param[in] match Match score value, type TValue, default 0.
* @param[in] msmatch Mismatch score value, type TValue, default -1.
* @param[in] gap Gap extension value, type TValue, default -1.
* @param[in] gapOpen Gap open value (defaults to gap), type TValue.
*/
Score(TValue _match, TValue _mismatch, TValue _gap_extend, TValue _gap_open)
: data_match(_match), data_mismatch(_mismatch),
data_gap_extend(_gap_extend), data_gap_open(_gap_open) {
}
};
/*!
* @typedef SimpleScoreTypedef SimpleScore
* @headerfile <seqan/score.h>
* @brief Simple scoring scheme.
*
* @signature typedef Score<int, Simple> SimpleScore;
*/
typedef Score<int, Simple> SimpleScore;
/*!
* @fn SimpleScore#scoreMatch
* @brief Match score
*
* @signature TValue scoreMatch(score);
*
* @param[in] score The SimpleScore scoring scheme.
*
* @return TValue The match score.
*/
template <typename TValue, typename TSpec>
inline TValue
scoreMatch(Score<TValue, TSpec> const & me) {
return me.data_match;
}
/*!
* @fn SimpleScore#setScoreMatch
* @brief Set match score.
*
* @signature void setScoreMatch(score, value);
*
* @param[in,out] score The SimpleScore scoring scheme to set the value for.
* @param[in] value The value to set the match score to.
*/
template <typename TValue, typename TSpec>
inline void
setScoreMatch(Score<TValue, TSpec> & me, TValue const & value) {
me.data_match = value;
}
/*!
* @fn SimpleScore#scoreMismatch
* @brief Set mismatch score.
*
* @signature TValue scoreMismatch(score);
*
* @param[in] score The SimpleScore to query for its mismatch score.
*
* @return TValue The mismatch score.
*/
template <typename TValue, typename TSpec>
inline TValue
scoreMismatch(Score<TValue, TSpec> const & me) {
return me.data_mismatch;
}
/*!
* @fn SimpleScore#setScoreMismatch
* @brief Set mismatch score.
*
* @signature void setScoreMismatch(score, value);
*
* @param[in,out] score The SimpleScore scoring scheme to set the mismatch value for.
* @param[in] value The value to set the mismatch score to.
*/
template <typename TValue, typename TSpec>
inline void
setScoreMismatch(Score<TValue, TSpec> & me, TValue const & value) {
me.data_mismatch = value;
}
/*!
* @fn SimpleScore#scoreGapExtend
* @brief Set gap extension score.
*
* @signature TValue scoreGapExtend(score);
*
* @param[in] score The SimpleScore to query for its gap extension score.
*
* @return TValue The gap extension score.
*/
template <typename TValue, typename TSpec>
inline TValue
scoreGapExtend(Score<TValue, TSpec> const & me) {
return me.data_gap_extend;
}
/*!
* @fn SimpleScore#setScoreGapExtend
* @brief Set gap extend score.
*
* @signature void setScoreGapExtend(score, value);
*
* @param[in,out] score The SimpleScore scoring scheme to set the gap extend value for.
* @param[in] value The value to set the gap open score to.
*/
template <typename TValue, typename TSpec>
inline void
setScoreGapExtend(Score<TValue, TSpec> & me, TValue const & value) {
me.data_gap_extend = value;
}
/*!
* @fn SimpleScore#scoreGapOpen
* @brief Set gap open score.
*
* @signature TValue scoreGapOpen(score);
*
* @param[in] score The SimpleScore to query for its gap open score.
*
* @return TValue The gap open score.
*/
template <typename TValue, typename TSpec>
inline TValue
scoreGapOpen(Score<TValue, TSpec> const & me) {
return me.data_gap_open;
}
/*!
* @fn SimpleScore#setScoreGapOpen
* @brief Set gap open score.
*
* @signature void setScoreGapOpen(score, value);
*
* @param[in,out] score The SimpleScore scoring scheme to set the gap open value for.
* @param[in] value The value to set the gap open score to.
*/
template <typename TValue, typename TSpec>
inline void
setScoreGapOpen(Score<TValue, TSpec> & me, TValue const & value) {
me.data_gap_open = value;
}
/*!
* @fn SimpleScore#scoreGap
* @brief Set gap score.
*
* @signature TValue scoreGap(score);
*
* @param[in] score The SimpleScore to query for its gap score.
*
* @return TValue The gap score.
*/
// TODO(holtgrew): This shortcut/forward should live in score_base.h.
template <typename TValue, typename TSpec>
inline TValue
scoreGap(Score<TValue, TSpec> const & me) {
return scoreGapExtend(me);
}
/*!
* @fn SimpleScore#setScoreGap
* @brief Set gap score.
*
* @signature void setScoreGap(score, value);
*
* @param[in,out] score The SimpleScore scoring scheme to set the gap value for.
* @param[in] value The value to set the gap score to.
*/
template <typename TValue, typename TSpec>
inline void
setScoreGap(Score<TValue, TSpec> & me, TValue const & value) {
me.data_gap_open = value;
me.data_gap_extend = value;
}
// TODO(rmaerker): Remove this here!
//template <typename TValue, typename TSpec, typename TVal1, typename TVal2>
//inline TValue
//score(Score<TValue, TSpec> const & me, TVal1 left, TVal2 right) {
// if (left == right)
// return scoreMatch(me);
// else
// return scoreMismatch(me);
//}
} // namespace seqan2
#endif // SEQAN_SSCORE_SIMPLE_H_
|