forked from DaehwanKimLab/centrifuge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aln_sink.h
2010 lines (1827 loc) · 61 KB
/
aln_sink.h
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
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2011, Ben Langmead <[email protected]>
*
* This file is part of Bowtie 2.
*
* Bowtie 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Bowtie 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Bowtie 2. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ALN_SINK_H_
#define ALN_SINK_H_
#include <limits>
#include <utility>
#include <map>
#include "read.h"
#include "ds.h"
#include "simple_func.h"
#include "outq.h"
#include "aligner_result.h"
#include "hyperloglogplus.h"
// Forward decl
template <typename index_t>
class SeedResults;
enum {
OUTPUT_SAM = 1
};
struct ReadCounts {
uint32_t n_reads;
uint32_t sum_score;
double summed_hit_len;
double weighted_reads;
uint32_t n_unique_reads;
};
/**
* Metrics summarizing the species level information we have
*/
struct SpeciesMetrics {
SpeciesMetrics():mutex_m() {
reset();
}
void reset() {
species_counts.clear();
//for(map<uint32_t, HyperLogLogPlusMinus<uint64_t> >::iterator it = this->species_kmers.begin(); it != this->species_kmers.end(); ++it) {
// it->second.reset();
//} //TODO: is this required?
species_kmers.clear();
}
void init(
map<uint32_t,ReadCounts> species_counts_,
map<uint32_t,HyperLogLogPlusMinus<uint64_t> > species_kmers_)
{
species_counts = species_counts_;
species_kmers = species_kmers_;
}
/**
* Merge (add) the counters in the given ReportingMetrics object
* into this object. This is the only safe way to update a
* ReportingMetrics shared by multiple threads.
*/
void merge(const SpeciesMetrics& met, bool getLock = false) {
ThreadSafe ts(&mutex_m, getLock);
// update species read count
for(map<uint32_t,ReadCounts>::const_iterator it = met.species_counts.begin(); it != met.species_counts.end(); ++it) {
if (species_counts.find(it->first) == species_counts.end()) {
species_counts[it->first] = it->second;
} else {
species_counts[it->first].n_reads += it->second.n_reads;
species_counts[it->first].sum_score += it->second.sum_score;
species_counts[it->first].summed_hit_len += it->second.summed_hit_len;
species_counts[it->first].weighted_reads += it->second.weighted_reads;
species_counts[it->first].n_unique_reads += it->second.n_unique_reads;
}
}
// update species k-mers
for(map<uint32_t, HyperLogLogPlusMinus<uint64_t> >::const_iterator it = met.species_kmers.begin(); it != met.species_kmers.end(); ++it) {
species_kmers[it->first].merge(&(it->second));
}
}
void addSpeciesCounts(uint32_t species, uint32_t score, double summed_hit_len, double weighted_read, bool is_unique) {
species_counts[species].n_reads += 1;
species_counts[species].sum_score += score;
species_counts[species].weighted_reads += weighted_read;
species_counts[species].summed_hit_len += summed_hit_len;
if (is_unique) {
species_counts[species].n_unique_reads += 1;
}
}
void addAllKmers(uint32_t species, const BTDnaString &btdna, size_t begin, size_t len) {
#ifndef NDEBUG //FB
cerr << "add all kmers for " << species << " from " << begin << " for " << len << ": " << string(btdna.toZBuf()).substr(begin,len) << endl;
#endif
uint64_t kmer = btdna.int_kmer<uint64_t>(begin,begin+len);
species_kmers[species].add(kmer);
size_t i = begin;
while (i+32 < len) {
kmer = btdna.next_kmer(kmer,i);
species_kmers[species].add(kmer);
++i;
}
}
size_t nDistinctKmers(uint32_t species) {
return(species_kmers[species].cardinality());
}
map<uint32_t,ReadCounts> species_counts; // read count per species
map<uint32_t,HyperLogLogPlusMinus<uint64_t> > species_kmers; // unique k-mer count per species
MUTEX_T mutex_m;
};
/**
* Metrics summarizing the work done by the reporter and summarizing
* the number of reads that align, that fail to align, and that align
* non-uniquely.
*/
struct ReportingMetrics {
ReportingMetrics():mutex_m() {
reset();
}
void reset() {
init(0, 0, 0, 0);
}
void init(
uint64_t nread_,
uint64_t npaired_,
uint64_t nunpaired_,
uint64_t nconcord_uni_)
{
nread = nread_;
npaired = npaired_;
nunpaired = nunpaired_;
nconcord_uni = nconcord_uni_;
}
/**
* Merge (add) the counters in the given ReportingMetrics object
* into this object. This is the only safe way to update a
* ReportingMetrics shared by multiple threads.
*/
void merge(const ReportingMetrics& met, bool getLock = false) {
ThreadSafe ts(&mutex_m, getLock);
nread += met.nread;
npaired += met.npaired;
nunpaired += met.nunpaired;
nconcord_uni += met.nconcord_uni;
}
uint64_t nread; // # reads
uint64_t npaired; // # pairs
uint64_t nunpaired; // # unpaired reads
// Paired
// Concordant
uint64_t nconcord_uni; // # pairs with unique concordant alns
MUTEX_T mutex_m;
};
// Type for expression numbers of hits
typedef int64_t THitInt;
/**
* Parameters affecting reporting of alignments, specifically -k & -a,
* -m & -M.
*/
struct ReportingParams {
explicit ReportingParams(
THitInt khits_)
{
init(khits_);
}
void init(
THitInt khits_)
{
khits = khits_; // -k (or high if -a)
}
#ifndef NDEBUG
/**
* Check that reporting parameters are internally consistent.
*/
bool repOk() const {
assert_geq(khits, 1);
return true;
}
#endif
inline THitInt mult() const {
return khits;
}
// Number of alignments to report
THitInt khits;
};
/**
* A state machine keeping track of the number and type of alignments found so
* far. Its purpose is to inform the caller as to what stage the alignment is
* in and what categories of alignment are still of interest. This information
* should allow the caller to short-circuit some alignment work. Another
* purpose is to tell the AlnSinkWrap how many and what type of alignment to
* report.
*
* TODO: This class does not keep accurate information about what
* short-circuiting took place. If a read is identical to a previous read,
* there should be a way to query this object to determine what work, if any,
* has to be re-done for the new read.
*/
class ReportingState {
public:
enum {
NO_READ = 1, // haven't got a read yet
CONCORDANT_PAIRS, // looking for concordant pairs
DONE // finished looking
};
// Flags for different ways we can finish out a category of potential
// alignments.
enum {
EXIT_DID_NOT_EXIT = 1, // haven't finished
EXIT_DID_NOT_ENTER, // never tried search
EXIT_SHORT_CIRCUIT_k, // -k exceeded
EXIT_NO_ALIGNMENTS, // none found
EXIT_WITH_ALIGNMENTS // some found
};
ReportingState(const ReportingParams& p) : p_(p) { reset(); }
/**
* Set all state to uninitialized defaults.
*/
void reset() {
state_ = ReportingState::NO_READ;
paired_ = false;
nconcord_ = 0;
doneConcord_ = false;
exitConcord_ = ReportingState::EXIT_DID_NOT_ENTER;
done_ = false;
}
/**
* Return true iff this ReportingState has been initialized with a call to
* nextRead() since the last time reset() was called.
*/
bool inited() const { return state_ != ReportingState::NO_READ; }
/**
* Initialize state machine with a new read. The state we start in depends
* on whether it's paired-end or unpaired.
*/
void nextRead(bool paired);
/**
* Caller uses this member function to indicate that one additional
* concordant alignment has been found.
*/
bool foundConcordant();
/**
* Caller uses this member function to indicate that one additional
* discordant alignment has been found.
*/
bool foundUnpaired(bool mate1);
/**
* Called to indicate that the aligner has finished searching for
* alignments. This gives us a chance to finalize our state.
*
* TODO: Keep track of short-circuiting information.
*/
void finish();
/**
* Populate given counters with the number of various kinds of alignments
* to report for this read. Concordant alignments are preferable to (and
* mutually exclusive with) discordant alignments, and paired-end
* alignments are preferable to unpaired alignments.
*
* The caller also needs some additional information for the case where a
* pair or unpaired read aligns repetitively. If the read is paired-end
* and the paired-end has repetitive concordant alignments, that should be
* reported, and 'pairMax' is set to true to indicate this. If the read is
* paired-end, does not have any conordant alignments, but does have
* repetitive alignments for one or both mates, then that should be
* reported, and 'unpair1Max' and 'unpair2Max' are set accordingly.
*
* Note that it's possible in the case of a paired-end read for the read to
* have repetitive concordant alignments, but for one mate to have a unique
* unpaired alignment.
*/
void getReport(uint64_t& nconcordAln) const; // # concordant alignments to report
/**
* Return an integer representing the alignment state we're in.
*/
inline int state() const { return state_; }
/**
* If false, there's no need to solve any more dynamic programming problems
* for finding opposite mates.
*/
inline bool doneConcordant() const { return doneConcord_; }
/**
* Return true iff all alignment stages have been exited.
*/
inline bool done() const { return done_; }
inline uint64_t numConcordant() const { return nconcord_; }
inline int exitConcordant() const { return exitConcord_; }
/**
* Return ReportingParams object governing this ReportingState.
*/
const ReportingParams& params() const {
return p_;
}
protected:
const ReportingParams& p_; // reporting parameters
int state_; // state we're currently in
bool paired_; // true iff read we're currently handling is paired
uint64_t nconcord_; // # concordants found so far
bool doneConcord_; // true iff we're no longner interested in concordants
int exitConcord_; // flag indicating how we exited concordant state
bool done_; // done with all alignments
};
/**
* Global hit sink for hits from the MultiSeed aligner. Encapsulates
* all aspects of the MultiSeed aligner hitsink that are global to all
* threads. This includes aspects relating to:
*
* (a) synchronized access to the output stream
* (b) the policy to be enforced by the per-thread wrapper
*
* TODO: Implement splitting up of alignments into separate files
* according to genomic coordinate.
*/
template <typename index_t>
class AlnSink {
typedef EList<std::string> StrList;
public:
explicit AlnSink(
OutputQueue& oq,
const StrList& refnames,
bool quiet) :
oq_(oq),
refnames_(refnames),
quiet_(quiet)
{
}
/**
* Destroy HitSinkobject;
*/
virtual ~AlnSink() { }
/**
* Called when the AlnSink is wrapped by a new AlnSinkWrap. This helps us
* keep track of whether the main lock or any of the per-stream locks will
* be contended by multiple threads.
*/
void addWrapper() { numWrappers_++; }
/**
* Append a single hit to the given output stream. If
* synchronization is required, append() assumes the caller has
* already grabbed the appropriate lock.
*/
virtual void append(
BTString& o,
size_t threadId,
const Read *rd1,
const Read *rd2,
const TReadId rdid,
AlnRes *rs1,
AlnRes *rs2,
const AlnSetSumm& summ,
const PerReadMetrics& prm,
SpeciesMetrics& sm,
bool report2,
size_t n_results) = 0;
/**
* Report a given batch of hits for the given read or read pair.
* Should be called just once per read pair. Assumes all the
* alignments are paired, split between rs1 and rs2.
*
* The caller hasn't decided which alignments get reported as primary
* or secondary; that's up to the routine. Because the caller might
* want to know this, we use the pri1 and pri2 out arguments to
* convey this.
*/
virtual void reportHits(
BTString& o, // write to this buffer
size_t threadId, // which thread am I?
const Read *rd1, // mate #1
const Read *rd2, // mate #2
const TReadId rdid, // read ID
const EList<size_t>& select1, // random subset of rd1s
const EList<size_t>* select2, // random subset of rd2s
EList<AlnRes> *rs1, // alignments for mate #1
EList<AlnRes> *rs2, // alignments for mate #2
bool maxed, // true iff -m/-M exceeded
const AlnSetSumm& summ, // summary
const PerReadMetrics& prm, // per-read metrics
SpeciesMetrics& sm, // species metrics
bool getLock = true) // true iff lock held by caller
{
assert(rd1 != NULL || rd2 != NULL);
assert(rs1 != NULL || rs2 != NULL);
for(size_t i = 0; i < select1.size(); i++) {
AlnRes* r1 = ((rs1 != NULL) ? &rs1->get(select1[i]) : NULL);
AlnRes* r2 = ((rs2 != NULL) ? &rs2->get(select1[i]) : NULL);
append(o, threadId, rd1, rd2, rdid, r1, r2, summ, prm, sm, true, select1.size());
}
}
/**
* Report an unaligned read. Typically we do nothing, but we might
* want to print a placeholder when output is chained.
*/
virtual void reportUnaligned(
BTString& o, // write to this string
size_t threadId, // which thread am I?
const Read *rd1, // mate #1
const Read *rd2, // mate #2
const TReadId rdid, // read ID
const AlnSetSumm& summ, // summary
const PerReadMetrics& prm, // per-read metrics
bool report2, // report alns for both mates?
bool getLock = true) // true iff lock held by caller
{
// FIXME: reportUnaligned does nothing
//append(o, threadId, rd1, rd2, rdid, NULL, NULL, summ, prm, NULL,report2);
}
/**
* Print summary of how many reads aligned, failed to align and aligned
* repetitively. Write it to stderr. Optionally write Hadoop counter
* updates.
*/
void printAlSumm(
const ReportingMetrics& met,
size_t repThresh, // threshold for uniqueness, or max if no thresh
bool discord, // looked for discordant alignments
bool mixed, // looked for unpaired alignments where paired failed?
bool hadoopOut); // output Hadoop counters?
/**
* Called when all alignments are complete. It is assumed that no
* synchronization is necessary.
*/
void finish(
size_t repThresh,
bool discord,
bool mixed,
bool hadoopOut)
{
// Close output streams
if(!quiet_) {
printAlSumm(
met_,
repThresh,
discord,
mixed,
hadoopOut);
}
}
#ifndef NDEBUG
/**
* Check that hit sink is internally consistent.
*/
bool repOk() const { return true; }
#endif
//
// Related to reporting seed hits
//
/**
* Given a Read and associated, filled-in SeedResults objects,
* print a record summarizing the seed hits.
*/
void reportSeedSummary(
BTString& o,
const Read& rd,
TReadId rdid,
size_t threadId,
const SeedResults<index_t>& rs,
bool getLock = true);
/**
* Given a Read, print an empty record (all 0s).
*/
void reportEmptySeedSummary(
BTString& o,
const Read& rd,
TReadId rdid,
size_t threadId,
bool getLock = true);
/**
* Append a batch of unresolved seed alignment results (i.e. seed
* alignments where all we know is the reference sequence aligned
* to and its SA range, not where it falls in the reference
* sequence) to the given output stream in Bowtie's seed-alignment
* verbose-mode format.
*/
virtual void appendSeedSummary(
BTString& o,
const Read& rd,
const TReadId rdid,
size_t seedsTried,
size_t nonzero,
size_t ranges,
size_t elts,
size_t seedsTriedFw,
size_t nonzeroFw,
size_t rangesFw,
size_t eltsFw,
size_t seedsTriedRc,
size_t nonzeroRc,
size_t rangesRc,
size_t eltsRc);
/**
* Merge given metrics in with ours by summing all individual metrics.
*/
void mergeMetrics(const ReportingMetrics& met, bool getLock = true) {
met_.merge(met, getLock);
}
/**
* Return mutable reference to the shared OutputQueue.
*/
OutputQueue& outq() {
return oq_;
}
protected:
OutputQueue& oq_; // output queue
int numWrappers_; // # threads owning a wrapper for this HitSink
const StrList& refnames_; // reference names
bool quiet_; // true -> don't print alignment stats at the end
ReportingMetrics met_; // global repository of reporting metrics
};
/**
* Per-thread hit sink "wrapper" for the MultiSeed aligner. Encapsulates
* aspects of the MultiSeed aligner hit sink that are per-thread. This
* includes aspects relating to:
*
* (a) Enforcement of the reporting policy
* (b) Tallying of results
* (c) Storing of results for the previous read in case this allows us to
* short-circuit some work for the next read (i.e. if it's identical)
*
* PHASED ALIGNMENT ASSUMPTION
*
* We make some assumptions about how alignment proceeds when we try to
* short-circuit work for identical reads. Specifically, we assume that for
* each read the aligner proceeds in a series of stages (or perhaps just one
* stage). In each stage, the aligner either:
*
* (a) Finds no alignments, or
* (b) Finds some alignments and short circuits out of the stage with some
* random reporting involved (e.g. in -k and/or -M modes), or
* (c) Finds all of the alignments in the stage
*
* In the event of (a), the aligner proceeds to the next stage and keeps
* trying; we can skip the stage entirely for the next read if it's identical.
* In the event of (b), or (c), the aligner stops and does not proceed to
* further stages. In the event of (b1), if the next read is identical we
* would like to tell the aligner to start again at the beginning of the stage
* that was short-circuited.
*
* In any event, the rs1_/rs2_/rs1u_/rs2u_ fields contain the alignments found
* in the last alignment stage attempted.
*
* HANDLING REPORTING LIMITS
*
* The user can specify reporting limits, like -k (specifies number of
* alignments to report out of those found) and -M (specifies a ceiling s.t. if
* there are more alignments than the ceiling, read is called repetitive and
* best found is reported). Enforcing these limits is straightforward for
* unpaired alignments: if a new alignment causes us to exceed the -M ceiling,
* we can stop looking.
*
* The case where both paired-end and unpaired alignments are possible is
* trickier. Once we have a number of unpaired alignments that exceeds the
* ceiling, we can stop looking *for unpaired alignments* - but we can't
* necessarily stop looking for paired-end alignments, since there may yet be
* more to find. However, if the input read is not a pair, then we can stop at
* this point. If the input read is a pair and we have a number of paired
* aligments that exceeds the -M ceiling, we can stop looking.
*
* CONCORDANT & DISCORDANT, PAIRED & UNPAIRED
*
* A note on paired-end alignment: Clearly, if an input read is
* paired-end and we find either concordant or discordant paired-end
* alignments for the read, then we would like to tally and report
* those alignments as such (and not as groups of 2 unpaired
* alignments). And if we fail to find any paired-end alignments, but
* we do find some unpaired alignments for one mate or the other, then
* we should clearly tally and report those alignments as unpaired
* alignments (if the user so desires).
*
* The situation is murkier when there are no paired-end alignments,
* but there are unpaired alignments for *both* mates. In this case,
* we might want to pick out zero or more pairs of mates and classify
* those pairs as discordant paired-end alignments. And we might want
* to classify the remaining alignments as unpaired. But how do we
* pick which pairs if any to call discordant?
*
* Because the most obvious use for discordant pairs is for identifying
* large-scale variation, like rearrangements or large indels, we would
* usually like to be conservative about what we call a discordant
* alignment. If there's a good chance that one or the other of the
* two mates has a good alignment to another place on the genome, this
* compromises the evidence for the large-scale variant. For this
* reason, Bowtie 2's policy is: if there are no paired-end alignments
* and there is *exactly one alignment each* for both mates, then the
* two alignments are paired and treated as a discordant paired-end
* alignment. Otherwise, all alignments are treated as unpaired
* alignments.
*
* When both paired and unpaired alignments are discovered by the
* aligner, only the paired alignments are reported by default. This
* is sensible considering relative likelihoods: if a good paired-end
* alignment is found, it is much more likely that the placement of
* the two mates implied by that paired alignment is correct than any
* placement implied by an unpaired alignment.
*
*
*/
template <typename index_t>
class AlnSinkWrap {
public:
AlnSinkWrap(
AlnSink<index_t>& g, // AlnSink being wrapped
const ReportingParams& rp, // Parameters governing reporting
size_t threadId, // Thread ID
bool secondary = false) : // Secondary alignments
g_(g),
rp_(rp),
threadid_(threadId),
secondary_(secondary),
init_(false),
maxed1_(false), // read is pair and we maxed out mate 1 unp alns
maxed2_(false), // read is pair and we maxed out mate 2 unp alns
maxedOverall_(false), // alignments found so far exceed -m/-M ceiling
bestPair_(std::numeric_limits<TAlScore>::min()),
best2Pair_(std::numeric_limits<TAlScore>::min()),
bestUnp1_(std::numeric_limits<TAlScore>::min()),
best2Unp1_(std::numeric_limits<TAlScore>::min()),
bestUnp2_(std::numeric_limits<TAlScore>::min()),
best2Unp2_(std::numeric_limits<TAlScore>::min()),
bestSplicedPair_(0),
best2SplicedPair_(0),
bestSplicedUnp1_(0),
best2SplicedUnp1_(0),
bestSplicedUnp2_(0),
best2SplicedUnp2_(0),
rd1_(NULL), // mate 1
rd2_(NULL), // mate 2
rdid_(std::numeric_limits<TReadId>::max()), // read id
rs_(), // mate 1 alignments for paired-end alignments
select_(), // for selecting random subsets for mate 1
st_(rp) // reporting state - what's left to do?
{
assert(rp_.repOk());
}
AlnSink<index_t>& getSink() {
return(g_);
}
/**
* Initialize the wrapper with a new read pair and return an
* integer >= -1 indicating which stage the aligner should start
* at. If -1 is returned, the aligner can skip the read entirely.
* at. If . Checks if the new read pair is identical to the
* previous pair. If it is, then we return the id of the first
* stage to run.
*/
int nextRead(
// One of the other of rd1, rd2 will = NULL if read is unpaired
const Read* rd1, // new mate #1
const Read* rd2, // new mate #2
TReadId rdid, // read ID for new pair
bool qualitiesMatter);// aln policy distinguishes b/t quals?
/**
* Inform global, shared AlnSink object that we're finished with
* this read. The global AlnSink is responsible for updating
* counters, creating the output record, and delivering the record
* to the appropriate output stream.
*/
void finishRead(
const SeedResults<index_t> *sr1, // seed alignment results for mate 1
const SeedResults<index_t> *sr2, // seed alignment results for mate 2
bool exhaust1, // mate 1 exhausted?
bool exhaust2, // mate 2 exhausted?
bool nfilt1, // mate 1 N-filtered?
bool nfilt2, // mate 2 N-filtered?
bool scfilt1, // mate 1 score-filtered?
bool scfilt2, // mate 2 score-filtered?
bool lenfilt1, // mate 1 length-filtered?
bool lenfilt2, // mate 2 length-filtered?
bool qcfilt1, // mate 1 qc-filtered?
bool qcfilt2, // mate 2 qc-filtered?
bool sortByScore, // prioritize alignments by score
RandomSource& rnd, // pseudo-random generator
ReportingMetrics& met, // reporting metrics
SpeciesMetrics& smet, // species metrics
const PerReadMetrics& prm, // per-read metrics
bool suppressSeedSummary = true,
bool suppressAlignments = false);
/**
* Called by the aligner when a new unpaired or paired alignment is
* discovered in the given stage. This function checks whether the
* addition of this alignment causes the reporting policy to be
* violated (by meeting or exceeding the limits set by -k, -m, -M),
* in which case true is returned immediately and the aligner is
* short circuited. Otherwise, the alignment is tallied and false
* is returned.
*/
bool report(
int stage,
const AlnRes* rs);
#ifndef NDEBUG
/**
* Check that hit sink wrapper is internally consistent.
*/
bool repOk() const {
if(init_) {
assert(rd1_ != NULL);
assert_neq(std::numeric_limits<TReadId>::max(), rdid_);
}
return true;
}
#endif
/**
* Return true iff no alignments have been reported to this wrapper
* since the last call to nextRead().
*/
bool empty() const {
return rs_.empty();
}
/**
* Return true iff we have already encountered a number of alignments that
* exceeds the -m/-M ceiling. TODO: how does this distinguish between
* pairs and mates?
*/
bool maxed() const {
return maxedOverall_;
}
/**
* Return true if the current read is paired.
*/
bool readIsPair() const {
return rd1_ != NULL && rd2_ != NULL;
}
/**
* Return true iff nextRead() has been called since the last time
* finishRead() was called.
*/
bool inited() const { return init_; }
/**
* Return a const ref to the ReportingState object associated with the
* AlnSinkWrap.
*/
const ReportingState& state() const { return st_; }
const ReportingParams& reportingParams() { return rp_;}
SpeciesMetrics& speciesMetrics() { return g_.speciesMetrics(); }
/**
* Return true iff at least two alignments have been reported so far for an
* unpaired read or mate 1.
*/
bool hasSecondBestUnp1() const {
return best2Unp1_ != std::numeric_limits<TAlScore>::min();
}
/**
* Return true iff at least two alignments have been reported so far for
* mate 2.
*/
bool hasSecondBestUnp2() const {
return best2Unp2_ != std::numeric_limits<TAlScore>::min();
}
/**
* Return true iff at least two paired-end alignments have been reported so
* far.
*/
bool hasSecondBestPair() const {
return best2Pair_ != std::numeric_limits<TAlScore>::min();
}
/**
* Get best score observed so far for an unpaired read or mate 1.
*/
TAlScore bestUnp1() const {
return bestUnp1_;
}
/**
* Get second-best score observed so far for an unpaired read or mate 1.
*/
TAlScore secondBestUnp1() const {
return best2Unp1_;
}
/**
* Get best score observed so far for mate 2.
*/
TAlScore bestUnp2() const {
return bestUnp2_;
}
/**
* Get second-best score observed so far for mate 2.
*/
TAlScore secondBestUnp2() const {
return best2Unp2_;
}
/**
* Get best score observed so far for paired-end read.
*/
TAlScore bestPair() const {
return bestPair_;
}
/**
* Get second-best score observed so far for paired-end read.
*/
TAlScore secondBestPair() const {
return best2Pair_;
}
/**
*
*/
void getPair(const EList<AlnRes>*& rs) const { rs = &rs_; }
protected:
/**
* Return true iff the read in rd1/rd2 matches the last read handled, which
* should still be in rd1_/rd2_.
*/
bool sameRead(
const Read* rd1,
const Read* rd2,
bool qualitiesMatter);
/**
* Given that rs is already populated with alignments, consider the
* alignment policy and make random selections where necessary. E.g. if we
* found 10 alignments and the policy is -k 2 -m 20, select 2 alignments at
* random. We "select" an alignment by setting the parallel entry in the
* 'select' list to true.
*/
size_t selectAlnsToReport(
const EList<AlnRes>& rs, // alignments to select from
uint64_t num, // number of alignments to select
EList<size_t>& select, // list to put results in
RandomSource& rnd)
const;
/**
* rs1 (possibly together with rs2 if reads are paired) are populated with
* alignments. Here we prioritize them according to alignment score, and
* some randomness to break ties. Priorities are returned in the 'select'
* list.
*/
size_t selectByScore(
const EList<AlnRes>* rs, // alignments to select from (mate 1)
uint64_t num, // number of alignments to select
EList<size_t>& select, // prioritized list to put results in
RandomSource& rnd)
const;
AlnSink<index_t>& g_; // global alignment sink
ReportingParams rp_; // reporting parameters: khits, mhits etc
size_t threadid_; // thread ID
bool secondary_; // allow for secondary alignments
bool init_; // whether we're initialized w/ read pair
bool maxed1_; // true iff # unpaired mate-1 alns reported so far exceeded -m/-M
bool maxed2_; // true iff # unpaired mate-2 alns reported so far exceeded -m/-M
bool maxedOverall_; // true iff # paired-end alns reported so far exceeded -m/-M
TAlScore bestPair_; // greatest score so far for paired-end
TAlScore best2Pair_; // second-greatest score so far for paired-end
TAlScore bestUnp1_; // greatest score so far for unpaired/mate1
TAlScore best2Unp1_; // second-greatest score so far for unpaired/mate1
TAlScore bestUnp2_; // greatest score so far for mate 2
TAlScore best2Unp2_; // second-greatest score so far for mate 2
index_t bestSplicedPair_;
index_t best2SplicedPair_;
index_t bestSplicedUnp1_;
index_t best2SplicedUnp1_;
index_t bestSplicedUnp2_;
index_t best2SplicedUnp2_;
const Read* rd1_; // mate #1
const Read* rd2_; // mate #2
TReadId rdid_; // read ID (potentially used for ordering)
EList<AlnRes> rs_; // paired alignments for mate #1
EList<size_t> select_; // parallel to rs1_/rs2_ - which to report
ReportingState st_; // reporting state - what's left to do?
EList<std::pair<TAlScore, size_t> > selectBuf_;
BTString obuf_;
};
/**
* An AlnSink concrete subclass for printing SAM alignments. The user might
* want to customize SAM output in various ways. We encapsulate all these
* customizations, and some of the key printing routines, in the SamConfig
* class in sam.h/sam.cpp.
*/
template <typename index_t>
class AlnSinkSam : public AlnSink<index_t> {
typedef EList<std::string> StrList;
public:
AlnSinkSam(
OutputQueue& oq, // output queue
const StrList& refnames, // reference names
bool quiet) :
AlnSink<index_t>(
oq,
refnames,
quiet)
{ }