File: pipe_sampler.h

package info (click to toggle)
seqan2 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228,748 kB
  • sloc: cpp: 257,602; ansic: 91,967; python: 8,326; sh: 1,056; xml: 570; makefile: 229; awk: 51; javascript: 21
file content (662 lines) | stat: -rw-r--r-- 21,804 bytes parent folder | download
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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
// ==========================================================================
//                 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: David Weese <david.weese@fu-berlin.de>
// ==========================================================================

#ifndef SEQAN_HEADER_PIPE_SAMPLER_H
#define SEQAN_HEADER_PIPE_SAMPLER_H

namespace seqan2
{

//namespace seqan2_NAMESPACE_PIPELINING
//{

    template <int I, typename T = void>
    struct SkewDC_;

//////////////////////////////////////////////////////////////////////////////

    template < unsigned m, typename TPack = Pack >
    struct Sampler;

    template < typename TInput, unsigned m, typename TPack >
    struct Value< Pipe< TInput, Sampler<m, TPack> > >
    {
        typedef Tuple<typename Value<TInput>::Type, m, TPack>    mTuple;
        typedef Pair<typename Size<TInput>::Type, mTuple, Pack> Type;
    };

//////////////////////////////////////////////////////////////////////////////

    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    struct Value< Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > >
    {
        typedef Tuple<typename Value<TInput>::Type, m, TPack>    mTuple;
        typedef Pair<TPair, mTuple, Pack> Type;
    };

//////////////////////////////////////////////////////////////////////////////

// TODO(holtgrew): Documentation bug with DC!

/*!
 * @class Sampler
 * @extends Pipe
 * @headerfile <seqan/pipe.h>
 * @brief Outputs m-tuples beginning at a position of difference cover DC.
 *
 * @signature template <typename TInput, unsigned M[, typename TPack]>
 *            class Pipe<TInput, Sampler<M, TPack> >;
 *
 * @tparam TInput The type of the pipeline module this module reads from.
 * @tparam m      The tuple size.
 * @tparam TPack  Specifies the packing method of the tuples (<tt>void</tt> = no packing), default is <tt>Pack</tt>.
 *
 * The output type is a Pair of size type and Tuple of input elements and length m (i.e. <tt>Pair&lt;Size&lt;TInput&gt;::Type,
 * Tuple&lt;Value&lt;TInput&gt;::Type, m, TPack&gt; &gt;</tt>).
 *
 * The first output field contains the number of remaining pipe elements. The m-tuple in the second field contains the
 * first m elements of them. The m-tuples are substrings of the input stream beginning at positions <tt>i</tt>, with
 * <tt>(n-i) mod m</tt> is element of the set DC (n is the input stream length).
 *
 * @section Examples
 *
 * The set <tt>{1,2,4}</tt> is represented by <tt>int DC[] = { 3, 1, 2, 4 }</tt>.
 *
 * @see BitPackedTuple
 */

    //////////////////////////////////////////////////////////////////////////////
    // sampler class
    template < typename TInput, unsigned m, typename TPack >
    struct Pipe< TInput, Sampler<m, TPack> >
    {
        typedef typename Value<Pipe>::Type  TOutValue;
        typedef typename Size<Pipe>::Type   TSize;

        TInput        &in;
        bool        filter[m];
        TSize       idx, _size, _rest;
        unsigned    idxMod;
        TOutValue   tmp1, tmp2;
        TOutValue   *outRef, *tmpRef;
        bool        last;

        Pipe(TInput& _in):
            in(_in),
            outRef(&tmp1),
            tmpRef(&tmp2) {}

        inline void prepare()
        {
            for (unsigned i = 0; i < m; ++i)
                filter[i] = 0;
            for(unsigned i = 1; i <= SkewDC_<m>::VALUE[0]; i++)
                filter[SkewDC_<m>::VALUE[i]] = true;

            idx = length(in);
            idxMod = idx % m;

            while (!filter[idxMod] && !eof(in))
            {
                ++in;
                if (idxMod == 0) idxMod = m;
                --idxMod; --idx;
            }
            _rest = length(*this);
            fill();
            swap();
        }

        inline void fill()
        {
            unsigned i;
            for(i = 0; i < m && !eof(in); ++i, ++in)
                tmpRef->i2.i[i] = *in;
            last = eof(in);
            for(; i < m; ++i)
                tmpRef->i2.i[i] = 0;
            tmpRef->i1 = idx;
        }

        inline void rotate(unsigned r)
        {
            for(unsigned i = 0; i < m; ++i, ++r)
            {
                if (r == m) r = 0;
                tmpRef->i2.i[i] = outRef->i2.i[r];
            }
        }

        inline void swap()
        {
            TOutValue *newOutRef = tmpRef;
            tmpRef = outRef;
            outRef = newOutRef;
        }

        inline TOutValue const& operator*()
        {
            return *outRef;
        }

        Pipe& operator++()
        {
            unsigned skipped = 0;
            if (--_rest)
            {
                if (!last)
                {
                    do
                    {
#if defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER) && (__GNUC__ >= 12)
#    pragma GCC diagnostic push
#    pragma GCC diagnostic ignored "-Wstringop-overflow="
#endif
                        outRef->i2.i[skipped++] = *in;
#if defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER) && (__GNUC__ >= 12)
#    pragma GCC diagnostic pop
#endif
                        ++in;
                        if (idxMod == 0) idxMod = m;
                        --idxMod; --idx;
                        if (eof(in))
                        {
                            last = true;
                            while (!filter[idxMod])
                            {
                                outRef->i2.i[skipped++] = 0;
                                if (idxMod == 0) idxMod = m;
                                --idxMod; --idx;
                            }
                            break;
                        }
                    } while (!filter[idxMod]);
                }
                else
                {
                    do
                    {
                        // Do not go out of bounds
                        if (skipped < LENGTH<TInput>::VALUE)
                            outRef->i2.i[skipped] = 0;
                        // But always increment skipped
                        skipped += 1;
                        if (idxMod == 0) idxMod = m;
                        --idxMod; --idx;
                    }
                    while (!filter[idxMod]);
                }
            }
            rotate(skipped);
            tmpRef->i1 = idx;
            swap();
            return *this;
        }
    };


    //////////////////////////////////////////////////////////////////////////////
    // sampler class (uses packing)
    template < typename TInput, unsigned m >
    struct Pipe< TInput, Sampler<m, BitPacked<> > >
    {
        typedef typename Value<Pipe>::Type          TOutValue;
        typedef typename Size<Pipe>::Type           TSize;
        typedef typename Value<TOutValue, 2>::Type  TTuple;

        TInput        &in;
        bool        filter[m];
        TSize       _size, _rest;
        unsigned    idxMod;
        TOutValue   tmp;
        bool        last;

        Pipe(TInput & _in) : in(_in), _size(0), _rest(0), idxMod(0), last(false)
        {}

        inline void prepare()
        {
            for (unsigned i = 0; i < m; ++i)
                filter[i] = 0;
            for (unsigned i = 1; i <= SkewDC_<m>::VALUE[0]; i++)
                filter[SkewDC_<m>::VALUE[i]] = true;

            tmp.i1 = length(in);
            idxMod = tmp.i1 % m;

            while (!filter[idxMod] && !eof(in))
            {
                ++in;
                if (idxMod == 0) idxMod = m;
                --idxMod; --tmp.i1;
            }
            _rest = length(*this);
            fill();
        }

        inline void fill()
        {
            unsigned i;
            clear(tmp.i2);
            for(i = 0; i < m && !eof(in); ++i, ++in)
            {
                tmp.i2 <<= 1;
                tmp.i2 |= *in;
            }
            last = eof(in);
            tmp.i2 <<= (m - i);
        }

        inline TOutValue const& operator*()
        {
            return tmp;
        }

        Pipe& operator++()
        {
            if (--_rest)
            {
                if (!last)
                {
                    do
                    {
                        tmp.i2 <<= 1;
                        tmp.i2 |= *in;
                        ++in;
                        if (idxMod == 0) idxMod = m;
                        --idxMod; --tmp.i1;
                        if (eof(in))
                        {
                            last = true;
                            while (!filter[idxMod])
                            {
                                tmp.i2 <<= 1;
                                if (idxMod == 0) idxMod = m;
                                --idxMod; --tmp.i1;
                            }
                            break;
                        }
                    } while (!filter[idxMod]);
                }
                else
                {
                    do
                    {
                        tmp.i2 <<= 1;
                        if (idxMod == 0) idxMod = m;
                        --idxMod; --tmp.i1;
                    }
                    while (!filter[idxMod]);
                }
            }
            return *this;
        }
    };



    //////////////////////////////////////////////////////////////////////////////
    // global pipe functions
    template < typename TInput, unsigned m, typename TPack >
    inline bool control(Pipe< TInput, Sampler<m, TPack> > &me, ControlBeginRead const &command)
    {
        if (!control(me.in, command)) return false;
        me.prepare();
        return true;
    }

    template < typename TInput, unsigned m, typename TPack >
    inline bool control(Pipe< TInput, Sampler<m, TPack> > &me, ControlEof const &/*command*/)
    {
        return me._rest == 0;
    }

    template < typename TInput, unsigned m, typename TPack >
    inline typename Size< Pipe< TInput, Sampler<m, TPack> > >::Type
    length(Pipe< TInput, Sampler<m, TPack> > const &me)
    {
        typedef typename Size< Pipe< TInput, Sampler<m> > >::Type TSize;

        TSize sum = 0;
        TSize size = length(me.in);

        // sum up the number of tuples in each residue class
        // for a string of length n there are 1+(n-x)/m suffixes
        // whose lengths are in residue class x
        for (unsigned i = 1; i <= SkewDC_<m>::VALUE[0]; ++i)
        {
            sum += (size + m - SkewDC_<m>::VALUE[i]) / m;
            if (SkewDC_<m>::VALUE[i] == 0)
                --sum;  // we don't consider empty suffixes
        }
        return sum;
    }



//////////////////////////////////////////////////////////////////////////////

    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    struct Size< Pipe<TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > > :
        public Value<TLimitsString> {};

    //////////////////////////////////////////////////////////////////////////////
    // sampler class
    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    struct Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> >
    {
        typedef typename Value<Pipe>::Type  TOutValue;
        typedef typename Size<Pipe>::Type   TSize;

        typedef PairDecrementer_<TPair, TLimitsString, m> Decrementer;

        TInput        &in;
        bool        filter[m];
        Decrementer    localPos;
        TSize       _size, _rest;
        TOutValue   tmp1, tmp2;
        TOutValue   *outRef, *tmpRef;
        bool        last;

        TLimitsString const &limits;

        template <typename TLimitsString_>
        Pipe(TInput& _in, TLimitsString_ &_limits):  // const &_limits is intentionally omitted to suppress implicit casts (if types mismatch) and taking refs of them
            in(_in),
            outRef(&tmp1),
            tmpRef(&tmp2),
            limits(_limits) {}

        inline void prepare()
        {
            for (unsigned i = 0; i < m; ++i)
                filter[i] = 0;
            for(unsigned i = 1; i <= SkewDC_<m>::VALUE[0]; i++)
                filter[SkewDC_<m>::VALUE[i]] = true;

            setHost(localPos, limits);

            while (!filter[localPos.residue] && !eof(in))
            {
                ++in;
                --localPos;
            }
            _rest = length(*this);
            fill();
            swap();
        }

        inline void fill()
        {
            unsigned i;
            for(i = 0; i < m && !eof(in); ++i, ++in)
                tmpRef->i2.i[i] = *in;
            last = eof(in);
            for(; i < m; ++i)
                tmpRef->i2.i[i] = 0;
            tmpRef->i1 = localPos;
        }

        inline void rotate(unsigned r)
        {
            for(unsigned i = 0; i < m; ++i, ++r)
            {
                if (r == m) r = 0;
                tmpRef->i2.i[i] = outRef->i2.i[r];
            }
        }

        inline void swap()
        {
            TOutValue *newOutRef = tmpRef;
            tmpRef = outRef;
            outRef = newOutRef;
        }

        inline TOutValue const& operator*()
        {
            return *outRef;
        }

        Pipe& operator++()
        {
            unsigned skipped = 0;
            if (--_rest)
            {
                if (!last)
                {
                    do
                    {
                        outRef->i2.i[skipped++] = *in;
                        ++in;
                        --localPos;
                        if (eof(in))
                        {
                            last = true;
                            while (!filter[localPos.residue])
                            {
                                outRef->i2.i[skipped++] = 0;
                                --localPos;
                            }
                            break;
                        }
                    }
                    while (!filter[localPos.residue]);
                }
                else
                {
                    do
                    {
                        // Do not go out of bounds
                        if (skipped < LENGTH<TInput>::VALUE)
                            outRef->i2.i[skipped] = 0;
                        // But always increment skipped
                        skipped += 1;
                        --localPos;
                    }
                    while (!filter[localPos.residue]);
                }
                rotate(skipped);
                tmpRef->i1 = localPos;
                swap();
            }
            return *this;
        }
    };


    //////////////////////////////////////////////////////////////////////////////
    // sampler class (uses bit-packing)
    template < typename TInput, unsigned m, typename TPair, typename TLimitsString >
    struct Pipe< TInput, Multi<Sampler<m, BitPacked<> >, TPair, TLimitsString> >
    {
        typedef typename Value<Pipe>::Type          TOutValue;
        typedef typename Size<Pipe>::Type           TSize;
        typedef typename Value<TOutValue, 2>::Type  TTuple;

        typedef PairDecrementer_<TPair, TLimitsString, m> Decrementer;

        TInput        &in;
        bool        filter[m];
        TSize       _size, _rest;
        Decrementer localPos;
        TOutValue   tmp;
        bool        last;

        TLimitsString const &limits;

        template <typename TLimitsString_>
        Pipe(TInput& _in, TLimitsString_ &_limits):  // const &_limits is intentionally omitted to suppress implicit casts (if types mismatch) and taking refs of them
            in(_in),
            limits(_limits) {}

        inline void prepare()
        {
            for (unsigned i = 0; i < m; ++i)
                filter[i] = 0;
            for(unsigned i = 1; i <= SkewDC_<m>::VALUE[0]; i++)
                filter[SkewDC_<m>::VALUE[i]] = true;

            setHost(localPos, limits);

            while (!filter[localPos.residue] && !eof(in)) {
                ++in;
                --localPos;
            }
            _rest = length(*this);
            fill();
        }

        inline void fill()
        {
            unsigned i;
            clear(tmp.i2);
            for(i = 0; i < m && !eof(in); ++i, ++in) {
                tmp.i2 <<= 1;
                tmp.i2 |= *in;
            }
            last = eof(in);
            tmp.i2 <<= (m - i);
            tmp.i1 = localPos;
        }

        inline TOutValue const& operator*()
        {
            return tmp;
        }

        Pipe& operator++()
        {
            if (--_rest)
            {
                if (!last)
                {
                    do
                    {
                        tmp.i2 <<= 1;
                        tmp.i2 |= *in;
                        ++in;
                        --localPos;
                        if (eof(in))
                        {
                            last = true;
                            while (!filter[localPos.residue])
                            {
                                tmp.i2 <<= 1;
                                --localPos;
                            }
                            break;
                        }
                    }
                    while (!filter[localPos.residue]);
                }
                else
                {
                    do
                    {
                        tmp.i2 <<= 1;
                        --localPos;
                    } while (!filter[localPos.residue]);
                }
            }
            tmp.i1 = localPos;
            return *this;
        }
    };



    //////////////////////////////////////////////////////////////////////////////
    // global pipe functions
    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    inline bool control(Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > &me, ControlBeginRead const &command)
    {
        if (!control(me.in, command))
            return false;
        me.prepare();
        return true;
    }

    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    inline bool control(Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > &me, ControlEof const &/*command*/)
    {
        return me._rest == 0;
    }

    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    inline bool control(Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > &me, ControlEos const &/*command*/)
    {
        return control(me, ControlEof());
    }

    template < typename TInput, unsigned m, typename TPack, typename TPair, typename TLimitsString >
    inline typename Size< Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > >::Type
    length(Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > const &me)
    {
        typedef typename Size< Pipe< TInput, Multi<Sampler<m, TPack>, TPair, TLimitsString> > >::Type TSize;

        if (empty(me.limits))
            return 0;

        TSize sum = 0;
        TLimitsString const &limits = me.limits;
        int64_t seqCountPlusOne = length(me.limits);

        SEQAN_OMP_PRAGMA(parallel for reduction(+:sum) if (seqCountPlusOne > 99))
        for (int64_t i = 1; i < seqCountPlusOne; ++i)
        {
            TSize prev = limits[i - 1];
            TSize cur = limits[i];

            SEQAN_ASSERT_LEQ(prev, cur);
            TSize size = cur - prev;

            // sum up the number of tuples in each residue class
            // for a string of length n there are 1+(n-x)/m suffixes
            // whose lengths are in residue class x
            for (unsigned i = 1; i <= SkewDC_<m>::VALUE[0]; ++i)
            {
                sum += (size + m - SkewDC_<m>::VALUE[i]) / m;
                if (SkewDC_<m>::VALUE[i] == 0)
                    --sum;  // we don't consider empty suffixes
            }
        }

        return sum;
    }
//}

}

#endif