-
Notifications
You must be signed in to change notification settings - Fork 77
/
pat.cpp
1239 lines (1181 loc) · 31.4 KB
/
pat.cpp
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
#include <cmath>
#include <inttypes.h>
#include <iostream>
#include <string>
#include <stdexcept>
#include <string.h>
#include "assert_helpers.h"
#include "filebuf.h"
#include "pat.h"
#include "sstring.h"
using namespace std;
/**
* Calculate a per-read random seed based on a combination of
* the read data (incl. sequence, name, quals) and the global
* seed in '_randSeed'.
*/
static uint32_t genRandSeed(
const BTDnaString& qry,
const BTString& qual,
const BTString& name,
uint32_t seed)
{
// Calculate a per-read random seed based on a combination of
// the read data (incl. sequence, name, quals) and the global
// seed
uint32_t rseed = (seed + 101) * 59 * 61 * 67 * 71 * 73 * 79 * 83;
size_t qlen = qry.length();
// Throw all the characters of the read into the random seed
for(size_t i = 0; i < qlen; i++) {
int p = (int)qry[i];
assert_leq(p, 4);
size_t off = ((i & 15) << 1);
rseed ^= (p << off);
}
// Throw all the quality values for the read into the random
// seed
for(size_t i = 0; i < qlen; i++) {
int p = (int)qual[i];
assert_leq(p, 255);
size_t off = ((i & 3) << 3);
rseed ^= (p << off);
}
// Throw all the characters in the read name into the random
// seed
size_t namelen = name.length();
for(size_t i = 0; i < namelen; i++) {
int p = (int)name[i];
assert_leq(p, 255);
size_t off = ((i & 3) << 3);
rseed ^= (p << off);
}
return rseed;
}
/**
* Once name/sequence/qualities have been parsed for an
* unpaired read, set all the other key fields of the Read
* struct.
*/
void PatternSourcePerThread::finalize(Read& ra) {
ra.mate = 0;
ra.constructRevComps();
ra.constructReverses();
ra.seed = genRandSeed(ra.patFw, ra.qual, ra.name, seed_);
}
/**
* Once name/sequence/qualities have been parsed for a
* paired-end read, set all the other key fields of the Read
* structs.
*/
void PatternSourcePerThread::finalizePair(Read& ra, Read& rb) {
ra.mate = 1;
ra.constructRevComps();
ra.constructReverses();
ra.fixMateName(1);
ra.seed = genRandSeed(ra.patFw, ra.qual, ra.name, seed_);
rb.mate = 2;
rb.constructRevComps();
rb.constructReverses();
rb.fixMateName(2);
rb.seed = genRandSeed(rb.patFw, rb.qual, rb.name, seed_);
}
/**
* Get the next paired or unpaired read from the wrapped
* PatternComposer. Returns a pair of bools; first indicates
* whether we were successful, second indicates whether we're
* done.
*/
pair<bool, bool> PatternSourcePerThread::nextReadPair() {
// Prepare batch
if(buf_.exhausted()) {
pair<bool, int> res = nextBatch();
if(res.first && res.second == 0) {
return make_pair(false, true);
}
last_batch_ = res.first;
last_batch_size_ = res.second;
assert_eq(0, buf_.cur_buf_);
} else {
buf_.next(); // advance cursor
assert_gt(buf_.cur_buf_, 0);
}
bool this_is_last = buf_.cur_buf_ == last_batch_size_-1;
if(buf_.rdid() < skip_) {
return make_pair(false, this_is_last ? last_batch_ : false);
}
// Parse read/pair
assert(!buf_.read_a().readOrigBuf.empty());
assert(buf_.read_a().empty());
if(!parse(buf_.read_a(), buf_.read_b())) {
return make_pair(false, false);
}
// Finalize read/pair
if(paired()) {
finalizePair(buf_.read_a(), buf_.read_b());
} else {
finalize(buf_.read_a());
}
return make_pair(true, this_is_last ? last_batch_ : false);
}
/**
* The main member function for dispensing pairs of reads or
* singleton reads. Returns true iff ra and rb contain a new
* pair; returns false if ra contains a new unpaired read.
*/
pair<bool, int> SoloPatternComposer::nextBatch(PerThreadReadBuf& pt) {
uint32_t cur = cur_;
while(cur < src_.size()) {
// Patterns from srca_[cur_] are unpaired
pair<bool, int> res;
do {
res = src_[cur]->nextBatch(
pt,
true, // batch A (or pairs)
true); // grab lock below
} while(!res.first && res.second == 0);
if(res.second == 0) {
ThreadSafe ts(&mutex_m);
if(cur + 1 > cur_) {
cur_++;
}
cur = cur_;
continue; // on to next pair of PatternSources
}
return res;
}
assert_leq(cur, src_.size());
return make_pair(true, 0);
}
/**
* The main member function for dispensing pairs of reads or
* singleton reads. Returns true iff ra and rb contain a new
* pair; returns false if ra contains a new unpaired read.
*/
pair<bool, int> DualPatternComposer::nextBatch(PerThreadReadBuf& pt) {
// 'cur' indexes the current pair of PatternSources
uint32_t cur = cur_;
while(cur < srca_.size()) {
if(srcb_[cur] == NULL) {
pair<bool, int> res = srca_[cur]->nextBatch(
pt,
true, // batch A (or pairs)
true); // grab lock below
bool done = res.first;
if(!done && res.second == 0) {
ThreadSafe ts(&mutex_m);
if(cur + 1 > cur_) cur_++;
cur = cur_; // Move on to next PatternSource
continue; // on to next pair of PatternSources
}
return make_pair(done, res.second);
} else {
pair<bool, int> resa, resb;
// Lock to ensure that this thread gets parallel reads
// in the two mate files
{
ThreadSafe ts(&mutex_m);
resa = srca_[cur]->nextBatch(
pt,
true, // batch A
false); // don't grab lock below
resb = srcb_[cur]->nextBatch(
pt,
false, // batch B
false); // don't grab lock below
assert_eq(srca_[cur]->readCount(),
srcb_[cur]->readCount());
}
if(resa.second < resb.second) {
cerr << "Error, fewer reads in file specified with -1 "
<< "than in file specified with -2" << endl;
throw 1;
} else if(resa.second == 0 && resb.second == 0) {
ThreadSafe ts(&mutex_m);
if(cur + 1 > cur_) {
cur_++;
}
cur = cur_; // Move on to next PatternSource
continue; // on to next pair of PatternSources
} else if(resb.second < resa.second) {
cerr << "Error, fewer reads in file specified with -2 "
<< "than in file specified with -1" << endl;
throw 1;
}
assert_eq(resa.first, resb.first);
assert_eq(resa.second, resb.second);
return make_pair(resa.first, resa.second);
}
}
assert_leq(cur, srca_.size());
return make_pair(true, 0);
}
/**
* Fill Read with the sequence, quality and name for the next
* read in the list of read files. This function gets called by
* all the search threads, so we must handle synchronization.
*
* Returns pair<bool, int> where bool indicates whether we're
* completely done, and int indicates how many reads were read.
*/
pair<bool, int> CFilePatternSource::nextBatchImpl(
PerThreadReadBuf& pt,
bool batch_a)
{
bool done = false;
size_t nread = 0;
pt.setReadId(readCnt_);
while(true) { // loop that moves on to next file when needed
do {
pair<bool, int> ret = nextBatchFromFile(pt, batch_a, nread);
done = ret.first;
nread = ret.second;
} while(!done && nread == 0); // not sure why this would happen
if(done && filecur_ < infiles_.size()) { // finished with this file
open();
resetForNextFile(); // reset state to handle a fresh file
filecur_++;
if(nread == 0 || nread < pt.max_buf_) {
continue;
}
done = false;
}
break;
}
assert_geq(nread, 0);
readCnt_ += nread;
return make_pair(done, nread);
}
pair<bool, int> CFilePatternSource::nextBatch(
PerThreadReadBuf& pt,
bool batch_a,
bool lock)
{
if(lock) {
// synchronization at this level because both reading and manipulation of
// current file pointer have to be protected
ThreadSafe ts(&mutex);
return nextBatchImpl(pt, batch_a);
} else {
return nextBatchImpl(pt, batch_a);
}
}
/**
* Open the next file in the list of input files.
*/
void CFilePatternSource::open() {
if(is_open_) {
is_open_ = false;
if (compressed_) {
gzclose(zfp_);
zfp_ = NULL;
}
else if (fp_ != stdin) {
fclose(fp_);
fp_ = NULL;
}
if(qfp_ != NULL && qfp_ != stdin) {
fclose(qfp_);
qfp_ = NULL;
}
}
while(filecur_ < infiles_.size()) {
// Open read
if(infiles_[filecur_] == "-") {
compressed_ = true;
int fn = dup(fileno(stdin));
zfp_ = gzdopen(fn, "rb");
}
else {
compressed_ = false;
if (is_gzipped_file(infiles_[filecur_])) {
compressed_ = true;
zfp_ = gzopen(infiles_[filecur_].c_str(), "rb");
}
else {
fp_ = fopen(infiles_[filecur_].c_str(), "rb");
}
if ((compressed_ && zfp_ == NULL) || (!compressed_ && fp_ == NULL)) {
if(!errs_[filecur_]) {
cerr << "Warning: Could not open read file \""
<< infiles_[filecur_] << "\" for reading; skipping..."
<< endl;
errs_[filecur_] = true;
}
filecur_++;
continue;
}
}
is_open_ = true;
if (compressed_) {
#if ZLIB_VERNUM < 0x1235
cerr << "Warning: gzbuffer added in zlib v1.2.3.5. Unable to change "
"buffer size from default of 8192." << endl;
#else
gzbuffer(zfp_, 64*1024);
#endif
}
else {
setvbuf(fp_, buf_, _IOFBF, 64*1024);
}
if(!qinfiles_.empty()) {
if(qinfiles_[filecur_] == "-") {
qfp_ = stdin;
} else if((qfp_ = fopen(qinfiles_[filecur_].c_str(), "rb")) == NULL) {
if(!errs_[filecur_]) {
cerr << "Warning: Could not open quality file \""
<< qinfiles_[filecur_] << "\" for reading; skipping..."
<< endl;
errs_[filecur_] = true;
}
filecur_++;
continue;
}
assert(qfp_ != NULL);
setvbuf(qfp_, qbuf_, _IOFBF, 64*1024);
}
return;
}
throw 1;
}
/**
* Constructor for vector pattern source, used when the user has
* specified the input strings on the command line using the -c
* option.
*/
VectorPatternSource::VectorPatternSource(
const EList<string>& seqs,
int trim3,
int trim5) :
TrimmingPatternSource(trim3, trim5),
cur_(0),
paired_(false),
tokbuf_(),
bufs_()
{
// Install sequences in buffers, ready for immediate copying in
// nextBatch(). Formatting of the buffer is just like
// TabbedPatternSource.
const size_t seqslen = seqs.size();
for(size_t i = 0; i < seqslen; i++) {
tokbuf_.clear();
tokenize(seqs[i], ":", tokbuf_, 2);
assert_gt(tokbuf_.size(), 0);
assert_leq(tokbuf_.size(), 2);
// Get another buffer ready
bufs_.resize(bufs_.size()+1);
bufs_.back().clear();
// Install name
itoa10<TReadId>(static_cast<TReadId>(i), nametmp_);
bufs_.back() = nametmp_;
bufs_.back().push_back('\t');
// Install sequence
bufs_.back().append(tokbuf_[0].c_str());
bufs_.back().push_back('\t');
// Install qualities
if(tokbuf_.size() > 1) {
bufs_.back().append(tokbuf_[1].c_str());
} else {
const size_t len = tokbuf_[0].length();
for(size_t i = 0; i < len; i++) {
bufs_.back().push_back('I');
}
}
}
}
/**
* Read next batch. However, batch concept is not very applicable for this
* PatternSource where all the info has already been parsed into the fields
* in the contsructor. This essentially modifies the pt as though we read
* in some number of patterns.
*/
pair<bool, int> VectorPatternSource::nextBatchImpl(
PerThreadReadBuf& pt,
bool batch_a)
{
pt.setReadId(cur_);
EList<Read>& readbuf = batch_a ? pt.bufa_ : pt.bufb_;
size_t readi = 0;
for(; readi < pt.max_buf_ && cur_ < bufs_.size(); readi++, cur_++) {
readbuf[readi].readOrigBuf.append(bufs_[cur_].c_str());
}
readCnt_ += readi;
return make_pair(cur_ == bufs_.size(), readi);
}
pair<bool, int> VectorPatternSource::nextBatch(
PerThreadReadBuf& pt,
bool batch_a,
bool lock)
{
if(lock) {
ThreadSafe ts(&mutex);
return nextBatchImpl(pt, batch_a);
} else {
return nextBatchImpl(pt, batch_a);
}
}
/**
* Finishes parsing outside the critical section.
*/
bool VectorPatternSource::parse(Read& ra, Read& rb, TReadId rdid) const {
// Very similar to TabbedPatternSource
// Light parser (nextBatchFromFile) puts unparsed data
// into Read& r, even when the read is paired.
assert(ra.empty());
assert(!ra.readOrigBuf.empty()); // raw data for read/pair is here
int c = '\t';
size_t cur = 0;
const size_t buflen = ra.readOrigBuf.length();
// Loop over the two ends
for(int endi = 0; endi < 2 && c == '\t'; endi++) {
Read& r = ((endi == 0) ? ra : rb);
assert(r.name.empty());
// Parse name if (a) this is the first end, or
// (b) this is tab6
if(endi < 1 || paired_) {
// Parse read name
c = ra.readOrigBuf[cur++];
while(c != '\t' && cur < buflen) {
r.name.append(c);
c = ra.readOrigBuf[cur++];
}
assert_eq('\t', c);
if(cur >= buflen) {
return false; // record ended prematurely
}
} else if(endi > 0) {
// if this is the second end and we're parsing
// tab5, copy name from first end
rb.name = ra.name;
}
// Parse sequence
assert(r.patFw.empty());
c = ra.readOrigBuf[cur++];
int nchar = 0;
while(c != '\t' && cur < buflen) {
if(isalpha(c)) {
assert_in(toupper(c), "ACGTN");
if(nchar++ >= this->trim5_) {
assert_neq(0, asc2dnacat[c]);
r.patFw.append(asc2dna[c]); // ascii to int
}
}
c = ra.readOrigBuf[cur++];
}
assert_eq('\t', c);
if(cur >= buflen) {
return false; // record ended prematurely
}
// record amt trimmed from 5' end due to --trim5
r.trimmed5 = (int)(nchar - r.patFw.length());
// record amt trimmed from 3' end due to --trim3
r.trimmed3 = (int)(r.patFw.trimEnd(this->trim3_));
// Parse qualities
assert(r.qual.empty());
c = ra.readOrigBuf[cur++];
int nqual = 0;
while(c != '\t' && c != '\n' && c != '\r') {
if(c == ' ') {
wrongQualityFormat(r.name);
return false;
}
char cadd = charToPhred33(c, false, false);
if(++nqual > this->trim5_) {
r.qual.append(cadd);
}
if(cur >= buflen) break;
c = ra.readOrigBuf[cur++];
}
if(nchar > nqual) {
tooFewQualities(r.name);
return false;
} else if(nqual > nchar) {
tooManyQualities(r.name);
return false;
}
r.qual.trimEnd(this->trim3_);
assert(c == '\t' || c == '\n' || c == '\r' || cur >= buflen);
assert_eq(r.patFw.length(), r.qual.length());
}
ra.parsed = true;
if(!rb.parsed && rb.readOrigBuf.length() > 0) {
return parse(rb, ra, rdid);
}
return true;
}
/**
* Light-parse a FASTA batch into the given buffer.
*/
pair<bool, int> FastaPatternSource::nextBatchFromFile(
PerThreadReadBuf& pt,
bool batch_a,
size_t readi)
{
int c;
EList<Read>& readbuf = batch_a ? pt.bufa_ : pt.bufb_;
if(first_) {
c = getc_wrapper();
if(c == EOF) {
return make_pair(true, 0);
}
while(c == '\r' || c == '\n') {
c = getc_wrapper();
}
if(c != '>') {
cerr << "Error: reads file does not look like a FASTA file" << endl;
throw 1;
}
first_ = false;
}
bool done = false;
// Read until we run out of input or until we've filled the buffer
for(; readi < pt.max_buf_ && !done; readi++) {
readbuf[readi].readOrigBuf.append('>');
while(true) {
c = getc_wrapper();
if(c < 0 || c == '>') {
done = c < 0;
break;
}
readbuf[readi].readOrigBuf.append(c);
}
}
// Immediate EOF case
if(done && readbuf[readi-1].readOrigBuf.length() == 1) {
readi--;
}
return make_pair(done, readi);
}
/**
* Finalize FASTA parsing outside critical section.
*/
bool FastaPatternSource::parse(Read& r, Read& rb, TReadId rdid) const {
// We assume the light parser has put the raw data for the separate ends
// into separate Read objects. That doesn't have to be the case, but
// that's how we've chosen to do it for FastqPatternSource
assert(!r.readOrigBuf.empty());
assert(r.empty());
int c = -1;
size_t cur = 1;
const size_t buflen = r.readOrigBuf.length();
// Parse read name
assert(r.name.empty());
while(cur < buflen) {
c = r.readOrigBuf[cur++];
if(c == '\n' || c == '\r') {
do {
c = r.readOrigBuf[cur++];
} while((c == '\n' || c == '\r') && cur < buflen);
break;
}
r.name.append(c);
}
if(cur >= buflen) {
return false; // FASTA ended prematurely
}
// Parse sequence
int nchar = 0;
assert(r.patFw.empty());
assert(c != '\n' && c != '\r');
assert_lt(cur, buflen);
while(c != '\n' && cur < buflen) {
if(c == '.') {
c = 'N';
}
if(isalpha(c)) {
// If it's past the 5'-end trim point
if(nchar++ >= this->trim5_) {
r.patFw.append(asc2dna[c]);
}
}
assert_lt(cur, buflen);
c = r.readOrigBuf[cur++];
}
// record amt trimmed from 5' end due to --trim5
r.trimmed5 = (int)(nchar - r.patFw.length());
// record amt trimmed from 3' end due to --trim3
r.trimmed3 = (int)(r.patFw.trimEnd(this->trim3_));
for(size_t i = 0; i < r.patFw.length(); i++) {
r.qual.append('I');
}
// Set up a default name if one hasn't been set
if(r.name.empty()) {
char cbuf[20];
itoa10<TReadId>(static_cast<TReadId>(rdid), cbuf);
r.name.install(cbuf);
}
r.parsed = true;
if(!rb.parsed && rb.readOrigBuf.length() > 0) {
return parse(rb, r, rdid);
}
return true;
}
/**
* Light-parse a FASTA-continuous batch into the given buffer.
* This is trickier for FASTA-continuous than for other formats,
* for several reasons:
*
* 1. Reads are substrings of a longer FASTA input string
* 2. Reads may overlap w/r/t the longer FASTA string
* 3. Read names depend on the most recently observed FASTA
* record name
*/
pair<bool, int> FastaContinuousPatternSource::nextBatchFromFile(
PerThreadReadBuf& pt,
bool batch_a,
size_t readi)
{
int c = -1;
EList<Read>& readbuf = batch_a ? pt.bufa_ : pt.bufb_;
while(readi < pt.max_buf_) {
c = getc_wrapper();
if(c < 0) {
break;
}
if(c == '>') {
resetForNextFile();
c = getc_wrapper();
bool sawSpace = false;
while(c != '\n' && c != '\r') {
if(!sawSpace) {
sawSpace = isspace(c);
}
if(!sawSpace) {
// Put it in the name prefix buffer so we
// can re-use this prefix for all the reads
// that are substrings of this FASTA sequence
name_prefix_buf_.push_back(c);
}
c = getc_wrapper();
}
while(c == '\n' || c == '\r') {
c = getc_wrapper();
}
if(c < 0) {
break;
}
name_prefix_buf_.push_back('_');
}
int cat = asc2dnacat[c];
if(cat >= 2) c = 'N';
if(cat == 0) {
// Non-DNA, non-IUPAC char; skip
continue;
} else {
// DNA char
buf_[bufCur_++] = c;
if(bufCur_ == 1024) {
bufCur_ = 0; // wrap around circular buf
}
if(eat_ > 0) {
eat_--;
// Try to keep readCnt_ aligned with the offset
// into the reference; that lets us see where
// the sampling gaps are by looking at the read
// name
if(!beginning_) {
cur_++;
}
continue;
}
// install name
readbuf[readi].readOrigBuf.append(name_prefix_buf_.c_str());
itoa10<TReadId>(cur_ - last_, name_int_buf_);
readbuf[readi].readOrigBuf.append(name_int_buf_);
readbuf[readi].readOrigBuf.append('\t');
// install sequence
for(size_t i = 0; i < length_; i++) {
if(length_ - i <= bufCur_) {
c = buf_[bufCur_ - (length_ - i)];
} else {
// Rotate
c = buf_[bufCur_ - (length_ - i) + 1024];
}
readbuf[readi].readOrigBuf.append(c);
}
eat_ = freq_-1;
cur_++;
beginning_ = false;
readi++;
}
}
return make_pair(c < 0, readi);
}
/**
* Finalize FASTA-continuous parsing outside critical section.
*/
bool FastaContinuousPatternSource::parse(
Read& ra,
Read& rb,
TReadId rdid) const
{
// Light parser (nextBatchFromFile) puts unparsed data
// into Read& r, even when the read is paired.
assert(ra.empty());
assert(rb.empty());
assert(!ra.readOrigBuf.empty()); // raw data for read/pair is here
assert(rb.readOrigBuf.empty());
int c = '\t';
size_t cur = 0;
const size_t buflen = ra.readOrigBuf.length();
// Parse read name
c = ra.readOrigBuf[cur++];
while(c != '\t' && cur < buflen) {
ra.name.append(c);
c = ra.readOrigBuf[cur++];
}
assert_eq('\t', c);
if(cur >= buflen) {
return false; // record ended prematurely
}
// Parse sequence
assert(ra.patFw.empty());
int nchar = 0;
while(cur < buflen) {
c = ra.readOrigBuf[cur++];
if(isalpha(c)) {
assert_in(toupper(c), "ACGTN");
if(nchar++ >= this->trim5_) {
assert_neq(0, asc2dnacat[c]);
ra.patFw.append(asc2dna[c]); // ascii to int
}
}
}
// record amt trimmed from 5' end due to --trim5
ra.trimmed5 = (int)(nchar - ra.patFw.length());
// record amt trimmed from 3' end due to --trim3
ra.trimmed3 = (int)(ra.patFw.trimEnd(this->trim3_));
// Make fake qualities
assert(ra.qual.empty());
for(size_t i = 0; i < ra.patFw.length(); i++) {
ra.qual.append('I');
}
ra.parsed = true;
return true;
}
/**
* "Light" parser. This is inside the critical section, so the key is to do
* just enough parsing so that another function downstream (finalize()) can do
* the rest of the parsing. Really this function's only job is to stick every
* for lines worth of the input file into a buffer (r.readOrigBuf). finalize()
* then parses the contents of r.readOrigBuf later.
*/
pair<bool, int> FastqPatternSource::nextBatchFromFile(
PerThreadReadBuf& pt,
bool batch_a,
size_t readi)
{
int c = 0;
EList<Read>* readBuf = batch_a ? &pt.bufa_ : &pt.bufb_;
if(first_) {
c = getc_wrapper();
while(c == '\r' || c == '\n') {
c = getc_wrapper();
}
if(c != '@') {
cerr << "Error: reads file does not look like a FASTQ file" << endl;
throw 1;
}
first_ = false;
(*readBuf)[readi].readOrigBuf.append('@');
}
bool done = false, aborted = false;
// Read until we run out of input or until we've filled the buffer
while (readi < pt.max_buf_ && !done) {
Read::TBuf& buf = (*readBuf)[readi].readOrigBuf;
assert(readi == 0 || (*readBuf)[readi].readOrigBuf.length() == 0);
int newlines = 4;
while(newlines) {
c = getc_wrapper();
done = c < 0;
if(c == '\n' || (done && newlines == 1)) {
// Saw newline, or EOF that we're
// interpreting as final newline
newlines--;
c = '\n';
} else if(done) {
if (newlines == 4) {
newlines = 0;
} else {
aborted = true; // Unexpected EOF
}
break;
}
buf.append(c);
}
if (c > 0) {
if (interleaved_) {
// alternate between read buffers
batch_a = !batch_a;
readBuf = batch_a ? &pt.bufa_ : &pt.bufb_;
// increment read counter after each pair gets read
readi = batch_a ? readi + 1 : readi;
}
else {
readi++;
}
}
}
if(aborted) {
readi--;
}
return make_pair(done, readi);
}
/**
* Finalize FASTQ parsing outside critical section.
*/
bool FastqPatternSource::parse(Read &r, Read& rb, TReadId rdid) const {
// We assume the light parser has put the raw data for the separate ends
// into separate Read objects. That doesn't have to be the case, but
// that's how we've chosen to do it for FastqPatternSource
assert(!r.readOrigBuf.empty());
assert(r.empty());
int c;
size_t cur = 1;
const size_t buflen = r.readOrigBuf.length();
// Parse read name
assert(r.name.empty());
while(true) {
assert_lt(cur, buflen);
c = r.readOrigBuf[cur++];
if(c == '\n' || c == '\r') {
do {
c = r.readOrigBuf[cur++];
} while(c == '\n' || c == '\r');
break;
}
r.name.append(c);
}
// Parse sequence
int nchar = 0;
assert(r.patFw.empty());
while(c != '+' && cur < buflen) {
if(c == '.') {
c = 'N';
}
if(isalpha(c)) {
// If it's past the 5'-end trim point
if(nchar++ >= this->trim5_) {
r.patFw.append(asc2dna[c]);
}
}
assert_lt(cur, buflen);
c = r.readOrigBuf[cur++];
}
// record amt trimmed from 5' end due to --trim5
r.trimmed5 = (int)(nchar - r.patFw.length());
// record amt trimmed from 3' end due to --trim3
r.trimmed3 = (int)(r.patFw.trimEnd(this->trim3_));
assert_eq('+', c);
do {
assert_lt(cur, buflen);
c = r.readOrigBuf[cur++];
} while(c != '\n' && c != '\r');
while(cur < buflen && (c == '\n' || c == '\r')) {
c = r.readOrigBuf[cur++];
}
assert(r.qual.empty());
int nqual = 0;
if (intQuals_) {
int cur_int = 0;
while(c != '\t' && c != '\n' && c != '\r') {
cur_int *= 10;
cur_int += (int)(c - '0');
c = r.readOrigBuf[cur++];
if(c == ' ' || c == '\t' || c == '\n' || c == '\r') {
char cadd = intToPhred33(cur_int, solQuals_);
cur_int = 0;
if (c == ' ')
c = r.readOrigBuf[cur++];
assert_geq(cadd, 33);
if(++nqual > this->trim5_) {
r.qual.append(cadd);
}
}
}
} else {
c = charToPhred33(c, solQuals_, phred64Quals_);
if(nqual++ >= r.trimmed5) {
r.qual.append(c);
}
while(cur < buflen) {
c = r.readOrigBuf[cur++];
if (c == ' ') {
wrongQualityFormat(r.name);
return false;
}
if(c == '\r' || c == '\n') {
break;
}
c = charToPhred33(c, solQuals_, phred64Quals_);
if(nqual++ >= r.trimmed5) {
r.qual.append(c);
}
}
r.qual.trimEnd(r.trimmed3);
if(r.qual.length() < r.patFw.length()) {
tooFewQualities(r.name);
return false;
} else if(r.qual.length() > r.patFw.length()) {
tooManyQualities(r.name);
return false;
}
}
// Set up a default name if one hasn't been set
if(r.name.empty()) {
char cbuf[20];
itoa10<TReadId>(static_cast<TReadId>(rdid), cbuf);
r.name.install(cbuf);
}
r.parsed = true;
if(!rb.parsed && rb.readOrigBuf.length() > 0) {
return parse(rb, r, rdid);
}
return true;
}
/**
* Light-parse a batch of tabbed-format reads into given buffer.
*/
pair<bool, int> TabbedPatternSource::nextBatchFromFile(
PerThreadReadBuf& pt,
bool batch_a,
size_t readi)
{
int c = getc_wrapper();
while(c >= 0 && (c == '\n' || c == '\r')) {
c = getc_wrapper();
}
EList<Read>& readbuf = batch_a ? pt.bufa_ : pt.bufb_;
// Read until we run out of input or until we've filled the buffer
for(; readi < pt.max_buf_ && c >= 0; readi++) {
readbuf[readi].readOrigBuf.clear();
while(c >= 0 && c != '\n' && c != '\r') {
readbuf[readi].readOrigBuf.append(c);
c = getc_wrapper();
}
if (c == '\n') {
readbuf[readi].readOrigBuf.append(c);
c = getc_wrapper();
if (c == '\r')