File: bisar_score.h

package info (click to toggle)
seqan2 2.4.0%2Bdfsg-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 224,180 kB
  • sloc: cpp: 256,886; ansic: 91,672; python: 8,330; sh: 995; xml: 570; makefile: 252; awk: 51; javascript: 21
file content (556 lines) | stat: -rw-r--r-- 21,585 bytes parent folder | download | duplicates (7)
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
#ifndef APPS_BS_TOOLS_BISAR_SCORE_H_
#define APPS_BS_TOOLS_BISAR_SCORE_H_


namespace seqan {

struct MyFragmentStoreConfig;

template<>
struct FragmentStoreConfig<MyFragmentStoreConfig> :
	public FragmentStoreConfig<>
{
	typedef double		TMappingQuality;    // ?
};

template <typename T = void>
struct TranslateTableDna5OrdValueToDna5OrdValueComplement_
{
    static int const VALUE[5];
};

template <typename T>
int const TranslateTableDna5OrdValueToDna5OrdValueComplement_<T>::VALUE[5] = {3, 2, 1, 0, 4};

template <typename TValue> struct FunctorDna5OrdValueComplement;

template <>
struct FunctorDna5OrdValueComplement<int> : public std::unary_function<int,int>
{
    inline int operator()(int x) const
    {
        return TranslateTableDna5OrdValueToDna5OrdValueComplement_<>::VALUE[x];
    }
};

////////////////////////////////////////////////////////////////////////////////////
/// Metafunction SequenceEntryForScore                       [Bs Score]
///////////////////////////////////////////////////////////////////////////////////


template <typename TSequence>
struct SequenceEntryForScore<Score<int, BsCaseCT >, TSequence>
{
    typedef typename Value<TSequence>::Type Type;   // For the beginning, base and quality are enough
};

template <typename TSequence>
struct SequenceEntryForScore<Score<int, BsCaseGA >, TSequence>
{
    typedef typename Value<TSequence>::Type Type;
};

template <typename TSequence, typename TPosition>
inline typename Value<TSequence>::Type
sequenceEntryForScore(Score<int, BsCaseCT > const & /*scoringScheme*/, TSequence const & seq, TPosition pos)
{
    return seq[pos];
}

template <typename TSequence, typename TPosition>
inline typename Value<TSequence>::Type
sequenceEntryForScore(Score<int, BsCaseGA > const & /*scoringScheme*/, TSequence const & seq, TPosition pos)
{
    return seq[pos];
}

//////////////////////////////////////////////////////////////////////
// Match/ Mismatch Bs scores
//////////////////////////////////////////////////////////////////////


template<typename TScore, typename TSubstMatrix, typename TSeqErrorFreqs>
inline void
computeBsScores(TScore &sc_data,
                TSubstMatrix const &s,
                TSeqErrorFreqs const &seqErrorFreqs,
                BsCaseCT const &,
                Left const &)
{
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned i = 0; i < 5; ++i)    // Ref base
        {
            resize(sc_data[q][i], 5, Exact());
            for (unsigned j = 0; j < 5; ++j)    // Read base
            {
                sc_data[q][i][j] = s[i*5 + j] * (1.0-e);   // No seq error

                for (unsigned o = 0; o < 5; ++o)
                {
                    if (o != j) sc_data[q][i][j] += s[i*5 + o] * e * seqErrorFreqs[o*5 + j]; // Seq error
                    //if (q == 62 && i == 1  && (j == 1 || j == 3) )
                        //std::cout << "Ref:C read:C/T: " << (Dna5)j << " o: " << (Dna5)o << "  subScore: " << (s[i*5 + o] * e * seqErrorFreqs[o*5 + j]) << " s: " << s[i*5 + o] << "  seqError:" << seqErrorFreqs[o*5 + j] << std::endl;
                }
            }
        }
    }
}

template<typename TScore, typename TSubstMatrix, typename TSeqErrorFreqs>
inline void
computeBsScores(TScore &sc_data,
                TSubstMatrix const &s,
                TSeqErrorFreqs const &seqErrorFreqs,
                BsCaseCT const &,
                Right const &)
{
    FunctorDna5OrdValueComplement<int> fCompl;
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned i = 0; i < 5; ++i)    // Ref base
        {
            resize(sc_data[q][i], 5, Exact());
            for (unsigned j = 0; j < 5; ++j)    // Read base
            {
                sc_data[q][i][j] = s[i*5 + j] * (1.0-e);   // No seq error

                for (unsigned o = 0; o < 5; ++o)
                {
                    if (o != j) sc_data[q][i][j] += s[i*5 + o] * e * seqErrorFreqs[fCompl(o)*5 + fCompl(j)]; // Seq error (regarding original read sequence)
                }
            }
        }
    }
}

template<typename TScore, typename TSubstMatrix, typename TSeqErrorFreqs>
inline void
computeBsScores(TScore &sc_data,
                TSubstMatrix const &s,
                TSeqErrorFreqs const &seqErrorFreqs,
                BsCaseGA const &,
                Left const &)
{
    FunctorDna5OrdValueComplement<int> fCompl;
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned i = 0; i < 5; ++i)    // Ref base
        {
            resize(sc_data[q][i], 5, Exact());
            for (unsigned j = 0; j < 5; ++j)    // Read base
            {
                sc_data[q][i][j] = s[i*5 + j] * (1.0-e);   // No seq error

                for (unsigned o = 0; o < 5; ++o)
                {
                    if (o != j) sc_data[q][i][j] += s[i*5 + o] * e * seqErrorFreqs[fCompl(o)*5 + fCompl(j)]; // Seq error (regarding original read sequence)
                }
            }
        }
    }
}


template<typename TScore, typename TSubstMatrix, typename TSeqErrorFreqs>
inline void
computeBsScores(TScore &sc_data,
                TSubstMatrix const &s,
                TSeqErrorFreqs const &seqErrorFreqs,
                BsCaseGA const &,
                Right const &)
{
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned i = 0; i < 5; ++i)    // Ref base
        {
            resize(sc_data[q][i], 5, Exact());
            for (unsigned j = 0; j < 5; ++j)    // Read base
            {
                sc_data[q][i][j] = s[i*5 + j] * (1.0-e);   // No seq error

                for (unsigned o = 0; o < 5; ++o)
                {
                    if (o != j) sc_data[q][i][j] += s[i*5 + o] * e * seqErrorFreqs[o*5 + j]; // Seq error
                    //if (q == 62 && i == 1  && (j == 1 || j == 3) )
                        //std::cout << "Ref:C read:C/T: " << (Dna5)j << " o: " << (Dna5)o << "  subScore: " << (s[i*5 + o] * e * seqErrorFreqs[o*5 + j]) << " s: " << s[i*5 + o] << "  seqError:" << seqErrorFreqs[o*5 + j] << std::endl;
                }
            }
        }
    }
}

//////////////////////////////////////////////////////////////////////
// ReadGapScores
//////////////////////////////////////////////////////////////////////


template<typename TScores, typename TValue, typename TSubstMatrix, typename TDelErrorFreqs, typename TOptions>
inline void
computeReadGapScores(TScores &sc_data,
                     TValue const &gapScore,
                     TSubstMatrix const &s,
                     TDelErrorFreqs const &delErrorFreqs,
                     TOptions &options,
                     BsCaseCT const &,
                     Left const &)
{
    resize(sc_data, 5, Exact());
    TValue e = options.delErrorRate;
    for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be deleted
    {
        sc_data[b] = exp(gapScore*options.lambda) * (1.0-e);   // Genome deletion, but no seq error
        for (unsigned i = 0; i < 5; ++i)
        {
            sc_data[b] += s[b*5 + i] * e * delErrorFreqs[i] * options.scalingFactorDelErrors;  // No genome deletion, but deletion seq error -> Match/Mismatch
        }
    }
}

template<typename TScores, typename TValue, typename TSubstMatrix, typename TDelErrorFreqs, typename TOptions>
inline void
computeReadGapScores(TScores &sc_data,
                     TValue const &gapScore,
                     TSubstMatrix const &s,
                     TDelErrorFreqs const &delErrorFreqs,
                     TOptions &options,
                     BsCaseCT const &,
                     Right const &)
{
    FunctorDna5OrdValueComplement<int> fCompl;
    resize(sc_data, 5, Exact());
    TValue e = options.delErrorRate;
    for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be deleted
    {
        sc_data[b] = exp(gapScore*options.lambda) * (1.0-e);   // Genome deletion, but no seq error
        for (unsigned i = 0; i < 5; ++i)
        {
            sc_data[b] += s[b*5 + i] * e * delErrorFreqs[fCompl(i)] * options.scalingFactorDelErrors;  // No genome deletion, but deletion seq error -> Match/Mismatch
        }
    }
}

template<typename TScores, typename TValue, typename TSubstMatrix, typename TDelErrorFreqs, typename TOptions>
inline void
computeReadGapScores(TScores &sc_data,
                     TValue const &gapScore,
                     TSubstMatrix const &s,
                     TDelErrorFreqs const &delErrorFreqs,
                     TOptions &options,
                     BsCaseGA const &,
                     Left const &)
{
    FunctorDna5OrdValueComplement<int> fCompl;
    resize(sc_data, 5, Exact());
    TValue e = options.delErrorRate;
    for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be deleted
    {
        sc_data[b] = exp(gapScore*options.lambda) * (1.0-e);   // Genome deletion, but no seq error
        for (unsigned i = 0; i < 5; ++i)
        {
            sc_data[b] += s[b*5 + i] * e * delErrorFreqs[fCompl(i)] * options.scalingFactorDelErrors;  // No genome deletion, but deletion seq error -> Match/Mismatch
        }
    }
}

template<typename TScores, typename TValue, typename TSubstMatrix, typename TDelErrorFreqs, typename TOptions>
inline void
computeReadGapScores(TScores &sc_data,
                     TValue const &gapScore,
                     TSubstMatrix const &s,
                     TDelErrorFreqs const &delErrorFreqs,
                     TOptions &options,
                     BsCaseGA const &,
                     Right const &)
{
    resize(sc_data, 5, Exact());
    TValue e = options.delErrorRate;
    for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be deleted
    {
        sc_data[b] = exp(gapScore*options.lambda) * (1.0-e);   // Genome deletion, but no seq error
        for (unsigned i = 0; i < 5; ++i)
        {
            sc_data[b] += s[b*5 + i] * e * delErrorFreqs[i] * options.scalingFactorDelErrors;  // No genome deletion, but deletion seq error -> Match/Mismatch
        }
    }
}


//////////////////////////////////////////////////////////////////////
// RefGapScores
//////////////////////////////////////////////////////////////////////


template<typename TScores, typename TValue, typename TInsErrorFreqs, typename TSeqErrorFreqs, typename TOptions>
inline void
computeRefGapScores(TScores &sc_data,
                    TValue const &simpleScore,
                    TInsErrorFreqs * &insErrorFreqs,
                    TSeqErrorFreqs * &seqErrorFreqs,
                    TOptions &options,
                    BsCaseCT const &,
                    Left const &)
{
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be inserted
        {
            sc_data[q][b] = exp(simpleScore*options.lambda) * (1.0-e);   // Genome insertion, but no seq error
            sc_data[q][b] += 1.0 * e * insErrorFreqs[b];               // No genome insertion, but insertion seq error
            for (unsigned i = 0; i < 5; ++i)
            {
                if (i != b) sc_data[q][b] += exp(simpleScore*options.lambda) * e * seqErrorFreqs[i*5 + b];  // Genome insertion and seq error
            } // Assuming genome insertions are equally distributed
        }
    }
}

template<typename TScores, typename TValue, typename TInsErrorFreqs, typename TSeqErrorFreqs, typename TOptions>
inline void
computeRefGapScores(TScores &sc_data,
                    TValue const &simpleScore,
                    TInsErrorFreqs * &insErrorFreqs,
                    TSeqErrorFreqs * &seqErrorFreqs,
                    TOptions &options,
                    BsCaseCT const &,
                    Right const &)
{
    FunctorDna5OrdValueComplement<int> fCompl;
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be inserted
        {
            sc_data[q][b] = exp(simpleScore*options.lambda) * (1.0-e);   // Genome insertion, but no seq error
            sc_data[q][b] += 1.0 * e * insErrorFreqs[fCompl(b)];               // No genome insertion, but insertion seq error
            for (unsigned i = 0; i < 5; ++i)
            {
                if (i != b) sc_data[q][b] += exp(simpleScore*options.lambda) * e * seqErrorFreqs[fCompl(i)*5 + fCompl(b)];  // Genome insertion and seq error
            }
        }
    }
}

template<typename TScores, typename TValue, typename TInsErrorFreqs, typename TSeqErrorFreqs, typename TOptions>
inline void
computeRefGapScores(TScores &sc_data,
                    TValue const &simpleScore,
                    TInsErrorFreqs * &insErrorFreqs,
                    TSeqErrorFreqs * &seqErrorFreqs,
                    TOptions &options,
                    BsCaseGA const &,
                    Left const &)
{
    FunctorDna5OrdValueComplement<int> fCompl;
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be inserted
        {
            sc_data[q][b] = exp(simpleScore*options.lambda) * (1.0-e);   // Genome insertion, but no seq error
            sc_data[q][b] += 1.0 * e * insErrorFreqs[fCompl(b)];               // No genome insertion, but insertion seq error
            for (unsigned i = 0; i < 5; ++i)
            {
                if (i != b) sc_data[q][b] += exp(simpleScore*options.lambda) * e * seqErrorFreqs[fCompl(i)*5 + fCompl(b)];  // Genome insertion and seq error
            }
        }
    }
}

template<typename TScores, typename TValue, typename TInsErrorFreqs, typename TSeqErrorFreqs, typename TOptions>
inline void
computeRefGapScores(TScores &sc_data,
                    TValue const &simpleScore,
                    TInsErrorFreqs * &insErrorFreqs,
                    TSeqErrorFreqs * &seqErrorFreqs,
                    TOptions &options,
                    BsCaseGA const &,
                    Right const &)
{
    resize(sc_data, 63, Exact());
    for (unsigned q = 0; q < 63; ++q)
    {
        long double e = pow(10, -(long double)q/10.0);

        resize(sc_data[q], 5, Exact());
        for (unsigned b = 0; b < 5; ++b)    // Base which is assumed to be inserted
        {
            sc_data[q][b] = exp(simpleScore*options.lambda) * (1.0-e);   // Genome insertion, but no seq error
            sc_data[q][b] += 1.0 * e * insErrorFreqs[b];               // No genome insertion, but insertion seq error
            for (unsigned i = 0; i < 5; ++i)
            {
                if (i != b) sc_data[q][b] += exp(simpleScore*options.lambda) * e * seqErrorFreqs[i*5 + b];  // Genome insertion and seq error
            }
        }
    }
}

//////////////////////////////////////////////////////////////////////
// Bs score
//////////////////////////////////////////////////////////////////////


template<typename TBsCase, typename TModel, typename TSegment>
class Score<int, BsTagList<TBsCase, TModel, TSegment> >
{
public:
    String<String<String<double> > > data;  // precomputed score values for all possible qual values, bases etc.

    // The gap extension score.
    String<String<double> >     data_gap_extend_ref;    // Score dependent on read base and qual
    String<double>              data_gap_extend_read;   // Score dependent on ref base

    // The gap open score.
    String<String<double> >     data_gap_open_ref;      // Score dependent on read base and qual
    String<double>              data_gap_open_read;     // Score dependent on ref base

    double lambda;

    // Use default values apart of gap costs
    /*template<typename TOptions>
    Score(TValue simple_gap_extend, TValue simple_gap_open, TValue delErrorRate, TOptions &options)
    {
        BsSubstitutionMatrix<TValue, TBsCase, BsSimple> bsSubstitutionMatrix;
        TValue const * seqErrorFreqs = SeqErrorFreqs<TValue, BsNonSimple>::getData();
        TValue const * insErrorFreqs = InsErrorFreqs<TValue, BsNonSimple>::getData();
        TValue const * delErrorFreqs = DelErrorFreqs<TValue, BsNonSimple>::getData();
        computeBsScores((*this).data, bsSubstitutionMatrix.data_tab, seqErrorFreqs, TBsCase(), TSegment());
        computeReadGapScores((*this).data_gap_open_read, options.gapOpenScore, bsSubstitutionMatrix.data_tab, delErrorFreqs, options, TBsCase(), TSegment());
        computeReadGapScores((*this).data_gap_extend_read, options.gapExtendScore, bsSubstitutionMatrix.data_tab, delErrorFreqs, options, TBsCase(), TSegment());
        computeRefGapScores((*this).data_gap_open_ref, options.gapOpenScore, insErrorFreqs, seqErrorFreqs, options, TBsCase(), TSegment());
        computeRefGapScores((*this).data_gap_extend_ref, options.gapExtendScore, insErrorFreqs, seqErrorFreqs, options, TBsCase(), TSegment());
    }*/

    // User defined rates
    template<typename TOptions, typename TBsSubstitutionMatrix, typename TValue>
    Score(TOptions &options,
            TBsSubstitutionMatrix &bsSubstitutionMatrix,
            TValue const * &seqErrorFreqs,
            TValue const * &insErrorFreqs,
            TValue const * &delErrorFreqs) : lambda(0.0)
    {
        computeBsScores((*this).data, bsSubstitutionMatrix.data_tab, seqErrorFreqs, TBsCase(), TSegment());

        computeReadGapScores((*this).data_gap_open_read, options.gapOpenScore, bsSubstitutionMatrix.data_tab, delErrorFreqs, options, TBsCase(), TSegment());
        computeReadGapScores((*this).data_gap_extend_read, options.gapExtendScore, bsSubstitutionMatrix.data_tab, delErrorFreqs, options, TBsCase(), TSegment());

        computeRefGapScores((*this).data_gap_open_ref, options.gapOpenScore, insErrorFreqs, seqErrorFreqs, options, TBsCase(), TSegment());
        computeRefGapScores((*this).data_gap_extend_ref, options.gapExtendScore, insErrorFreqs, seqErrorFreqs, options, TBsCase(), TSegment());
    }
};

///////////////////////////////////////////////////////////////////////////////////
// Bs scores functions
///////////////////////////////////////////////////////////////////////////////////

template <typename TBsCase, typename TModel, typename TSegment, typename TSeqHValue, typename TSeqVValue>
inline int
scoreGapOpenVertical(
    Score<int, BsTagList<TBsCase, TModel, TSegment> > const & me,
    TSeqHValue const & /*seqHVal*/,
    TSeqVValue const & seqVVal)
{
    unsigned int qual = getQualityValue(seqVVal);
    unsigned int j = (Dna5)seqVVal;  // Read base

    return (int)(std::log10(me.data_gap_open_ref[qual][j]) *10000 + 0.5);
}

template <typename TBsCase, typename TModel, typename TSegment, typename TSeqHValue, typename TSeqVValue>
inline int
scoreGapOpenHorizontal(
    Score<int, BsTagList<TBsCase, TModel, TSegment> > const & me,
    TSeqHValue const & seqHVal,
    TSeqVValue const & /*seqVVal*/)
{
    unsigned int i = (Dna5)seqHVal;  // Ref base
    return (int)(std::log10(me.data_gap_open_read[i]) *10000 + 0.5);
}

template <typename TBsCase, typename TModel, typename TSegment, typename TSeqHValue, typename TSeqVValue>
inline int
scoreGapExtendVertical(
    Score<int, BsTagList<TBsCase, TModel, TSegment> > const & me,
    TSeqHValue const & /*seqHVal*/,
    TSeqVValue const & seqVVal)
{
    unsigned int qual = getQualityValue(seqVVal);
    unsigned int j = (Dna5)seqVVal;  // Read base

    return (int)(std::log10(me.data_gap_extend_ref[qual][j]) *10000 + 0.5);
}

template <typename TBsCase, typename TModel, typename TSegment, typename TSeqHValue, typename TSeqVValue>
inline int
scoreGapExtendHorizontal(
    Score<int, BsTagList<TBsCase, TModel, TSegment> > const & me,
    TSeqHValue const & seqHVal,
    TSeqVValue const & /*seqVVal*/)
{
    unsigned int i = (Dna5)seqHVal;  // Ref base
    return (int)(std::log10(me.data_gap_extend_read[i]) *10000 + 0.5);
}

// Just for global alignment function to check, if open and extenc cost are the same
template <typename TBsCase, typename TModel, typename TSegment>
inline int
scoreGapExtend(Score<int, BsTagList<TBsCase, TModel, TSegment> > const & /*me*/) {
    //std::cout << "This should happen only once: scoreGapExtend()"<< std::endl;
    return (int)-100;
}
template <typename TBsCase, typename TModel, typename TSegment>
inline int
scoreGapOpen(Score<int, BsTagList<TBsCase, TModel, TSegment> > const & /*me*/) {
    //std::cout << "This should happen only once: scoreGapOpen()" << std::endl;
    return (int)-200;
}


template <typename TBsCase, typename TModel, typename TSegment, typename TVal1>
inline int
score(Score<int, BsTagList<TBsCase, TModel, TSegment> > const & sc, TVal1 val1, Dna5Q val2)
{
    unsigned int i = (Dna5) val1;
    unsigned int j = (Dna5) val2;
    int qual = getQualityValue(val2);

    //std::cout << "qual: " << qual << std::endl;
    return (int)(std::log10(sc.data[qual][i][j]) *10000 + 0.5);
}


}






#endif