-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreader.go
executable file
·608 lines (528 loc) · 15.3 KB
/
reader.go
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
package fastx
import (
"bytes"
"errors"
"fmt"
"io"
"regexp"
"sync"
"github.com/shenwei356/bio/seq"
"github.com/shenwei356/xopen"
)
// ErrNotFASTXFormat means that the file is not FASTA/Q
var ErrNotFASTXFormat = errors.New("fastx: invalid FASTA/Q format")
// ErrBadFASTQFormat means bad fastq format
var ErrBadFASTQFormat = errors.New("fastx: bad fastq format")
// ErrUnequalSeqAndQual means unequal sequence and quality
var ErrUnequalSeqAndQual = errors.New("fastx: unequal sequence and quality")
// ErrNoContent means nothing in the file or stream
var ErrNoContent = errors.New("fastx: no content found")
var bufSize = 65536
var poolReader = &sync.Pool{New: func() interface{} {
t := &Reader{}
t.buf = make([]byte, bufSize)
t.buffer = bytes.NewBuffer(make([]byte, 0, defaultBytesBufferSize))
t.seqBuffer = bytes.NewBuffer(make([]byte, 0, defaultBytesBufferSize))
t.qualBuffer = bytes.NewBuffer(make([]byte, 0, defaultBytesBufferSize))
t.record = &Record{
ID: nil,
Name: nil,
Desc: nil,
Seq: &seq.Seq{}, // can't be nil
}
return t
}}
// Reader seamlessly parse both FASTA and FASTQ formats
type Reader struct {
fh *xopen.Reader // file handle, xopen is such a wonderful package
buf []byte // for store readed data from fh
r int
buffer *bytes.Buffer // buffer of a record
needMoreCheckOfBuf bool
lastByte byte
checkSeqType bool
lastPart bool
finished bool
firstseq bool // for guess alphabet by the first seq
delim byte
IsFastq bool // if the file is fastq format
t *seq.Alphabet // alphabet
IDRegexp *regexp.Regexp // regexp for parsing record id
head, seq, qual []byte
seqBuffer *bytes.Buffer
qualBuffer *bytes.Buffer
record *Record
// only for compatibility of empty files
Err error
}
func (fastxReader *Reader) Reset() {
n := bufSize - len(fastxReader.buf)
for i := 0; i < n; i++ {
fastxReader.buf = append(fastxReader.buf, 0)
}
fastxReader.r = 0
fastxReader.buffer.Reset()
fastxReader.needMoreCheckOfBuf = false
fastxReader.lastByte = 0
fastxReader.checkSeqType = true
fastxReader.lastPart = false
fastxReader.finished = false
fastxReader.firstseq = true
fastxReader.delim = 0
fastxReader.IsFastq = false
fastxReader.seqBuffer.Reset()
fastxReader.qualBuffer.Reset()
fastxReader.head = nil
fastxReader.seq = nil
fastxReader.qual = nil
fastxReader.Err = nil
}
// regexp for checking idRegexp string.
// The regular expression must contain "(" and ")" to capture matched ID
var reCheckIDregexpStr = regexp.MustCompile(`\(.+\)`)
// DefaultIDRegexp is the default ID parsing regular expression
var DefaultIDRegexp = `^(\S+)\s?`
var isUsingDefaultIDRegexp bool
// NewDefaultReader automaticlly recognizes sequence type and parses id with default manner
func NewDefaultReader(file string) (*Reader, error) {
return NewReader(nil, file, "")
}
var defaultBytesBufferSize = 10 << 20
// NewReader is constructor of FASTX Reader.
//
// Parameters:
//
// t sequence alphabet
// if nil is given, it will guess alphabet by the first record
// file file name, "-" for stdin
// idRegexp id parsing regular expression string, must contains "(" and ")" to capture matched ID
// "" for default value: `^([^\s]+)\s?`
// if record head does not match the idRegxp, whole name will be the id
//
// Please call reader.Close() afer using the records!!!
func NewReader(t *seq.Alphabet, file string, idRegexp string) (*Reader, error) {
var r *regexp.Regexp
if idRegexp == "" {
r = regexp.MustCompile(DefaultIDRegexp)
isUsingDefaultIDRegexp = true
} else {
if !reCheckIDregexpStr.MatchString(idRegexp) {
return nil, fmt.Errorf(`fastx: regular expression must contain "(" and ")" to capture matched ID. default: %s`, DefaultIDRegexp)
}
var err error
r, err = regexp.Compile(idRegexp)
if err != nil {
return nil, fmt.Errorf("fastx: fail to compile regexp: %s", idRegexp)
}
if idRegexp == DefaultIDRegexp {
isUsingDefaultIDRegexp = true
}
}
fh, err := xopen.Ropen(file)
if err != nil {
if err == xopen.ErrNoContent {
fastxReader := poolReader.Get().(*Reader)
fastxReader.Reset()
fastxReader.Err = io.EOF // so the first call of Read will return an io.EOF error.
return fastxReader, nil
}
return nil, fmt.Errorf("fastx: %s", err)
}
fastxReader := poolReader.Get().(*Reader)
fastxReader.Reset()
fastxReader.fh = fh
fastxReader.t = t
fastxReader.IDRegexp = r
return fastxReader, nil
}
// NewReaderFromIO is constructor of FASTX Reader.
//
// Parameters:
//
// t sequence alphabet
// if nil is given, it will guess alphabet by the first record
// file an io.Reader
// idRegexp id parsing regular expression string, must contains "(" and ")" to capture matched ID
// "" for default value: `^([^\s]+)\s?`
// if record head does not match the idRegxp, whole name will be the id
//
// Please call reader.Close() afer using the records!!!
func NewReaderFromIO(t *seq.Alphabet, ioReader io.Reader, idRegexp string) (*Reader, error) {
var r *regexp.Regexp
if idRegexp == "" {
r = regexp.MustCompile(DefaultIDRegexp)
isUsingDefaultIDRegexp = true
} else {
if !reCheckIDregexpStr.MatchString(idRegexp) {
return nil, fmt.Errorf(`fastx: regular expression must contain "(" and ")" to capture matched ID. default: %s`, DefaultIDRegexp)
}
var err error
r, err = regexp.Compile(idRegexp)
if err != nil {
return nil, fmt.Errorf("fastx: fail to compile regexp: %s", idRegexp)
}
if idRegexp == DefaultIDRegexp {
isUsingDefaultIDRegexp = true
}
}
fh, err := xopen.Buf(ioReader)
if err != nil {
panic(err)
}
fastxReader := poolReader.Get().(*Reader)
fastxReader.Reset()
fastxReader.fh = fh
fastxReader.t = t
fastxReader.IDRegexp = r
return fastxReader, nil
}
// Close cleans up everything, the most important thing is recyling the reader.
// Please do remember to calls this method!!!
func (fastxReader *Reader) Close() {
poolReader.Put(fastxReader)
}
// close closes the file handler
func (fastxReader *Reader) close() {
if fastxReader.fh != nil {
fastxReader.fh.Close()
}
}
// Read reads and return one FASTA/Q record.
// Note that, similar to bytes.Buffer.Bytes() method,
// the current record will change after your another call of this method.
// So, you could use record.Clone() to make a copy.
func (fastxReader *Reader) Read() (*Record, error) {
if fastxReader.lastPart && fastxReader.finished {
return nil, io.EOF
}
if fastxReader.Err != nil { // only for empty file
err := fastxReader.Err
return nil, err
}
var n int
var err error
var p []byte
for {
if !fastxReader.needMoreCheckOfBuf && !fastxReader.lastPart {
n, err = fastxReader.fh.Read(fastxReader.buf)
if err != nil {
if err == io.EOF {
fastxReader.lastPart = true
} else {
return nil, err
}
} else if n == 0 {
fastxReader.close()
return nil, io.ErrUnexpectedEOF
}
// last part of file OR just because reader not fulfill the buf,
// like reading from stdin
if n < len(fastxReader.buf) {
// fastxReader.lastPart = true
fastxReader.buf = fastxReader.buf[0:n] // very important!
}
fastxReader.r = 0 /// TO CHECK
}
// check seq type via the first non-empty charator, run for onece
if fastxReader.checkSeqType {
pn := 0
FORCHECK:
for i := range fastxReader.buf {
switch fastxReader.buf[i] {
case '>':
fastxReader.checkSeqType = false
fastxReader.IsFastq = false
fastxReader.delim = '>'
fastxReader.r = i + 1
break FORCHECK
case '@':
fastxReader.IsFastq = true
fastxReader.delim = '@'
fastxReader.r = i + 1
break FORCHECK
case '\n': // allow some lines
pn++
if pn > 100 {
if i > 10240 { // ErrNotFASTXFormat
fastxReader.close()
return nil, ErrNotFASTXFormat
}
}
// break FORCHECK
default: // not typical FASTA/Q
// if i > 10240 || fastxReader.lastPart { // ErrNotFASTXFormat
fastxReader.close()
return nil, ErrNotFASTXFormat
// }
}
}
fastxReader.checkSeqType = false
}
var shorterQual bool
var i int
FORSEARCH:
for {
if i = bytes.IndexByte(fastxReader.buf[fastxReader.r:], fastxReader.delim); i >= 0 {
if i > 0 {
fastxReader.lastByte = fastxReader.buf[fastxReader.r+i-1]
} else {
p = fastxReader.buffer.Bytes()
if len(p) == 0 {
fastxReader.lastByte = '\x00'
} else {
fastxReader.lastByte = p[len(p)-1]
}
}
if fastxReader.lastByte == '\n' { // yes!
if i > 0 {
fastxReader.buffer.Write(dropCR(fastxReader.buf[fastxReader.r : fastxReader.r+i-1]))
} else {
fastxReader.buffer.WriteByte('\n')
}
// we have to avoid the case of quality line starting with "@"
shorterQual, err = fastxReader.parseRecord()
if fastxReader.IsFastq && err != nil && err == ErrUnequalSeqAndQual {
if shorterQual {
fastxReader.buffer.WriteByte('\n')
fastxReader.buffer.WriteByte(fastxReader.delim)
fastxReader.needMoreCheckOfBuf = true
fastxReader.r += i + 1
continue FORSEARCH
}
fastxReader.close()
return nil, ErrBadFASTQFormat
}
fastxReader.buffer.Reset()
fastxReader.needMoreCheckOfBuf = true
fastxReader.r += i + 1
return fastxReader.record, nil
}
// inline >/@
fastxReader.buffer.Write(fastxReader.buf[fastxReader.r : fastxReader.r+i+1])
fastxReader.r += i + 1
fastxReader.needMoreCheckOfBuf = true
continue FORSEARCH
}
fastxReader.buffer.Write(fastxReader.buf[fastxReader.r:])
if fastxReader.lastPart {
_, err = fastxReader.parseRecord()
if err != nil { // no any chance
fastxReader.close()
return nil, err
}
fastxReader.buffer.Reset()
fastxReader.close()
fastxReader.finished = true
return fastxReader.record, nil
}
fastxReader.needMoreCheckOfBuf = false
break FORSEARCH
}
}
}
// parseRecord parse a FASTA/Q record from the fastxReader.buffer
func (fastxReader *Reader) parseRecord() (bool, error) {
fastxReader.seqBuffer.Reset()
if fastxReader.IsFastq {
fastxReader.qualBuffer.Reset()
}
var p = fastxReader.buffer.Bytes()
if j := bytes.IndexByte(p, '\n'); j > 0 {
fastxReader.head = dropCR(p[0:j])
r := j + 1
if !fastxReader.IsFastq { // FASTA
for {
if k := bytes.IndexByte(p[r:], '\n'); k >= 0 {
fastxReader.seqBuffer.Write(dropCR(p[r : r+k]))
r += k + 1
continue
}
fastxReader.seqBuffer.Write(dropCR(p[r:]))
break
}
fastxReader.seq = fastxReader.seqBuffer.Bytes()
} else { // FASTQ
var isQual bool
for {
if k := bytes.IndexByte(p[r:], '\n'); k >= 0 {
if k > 0 && p[r] == '+' && !isQual {
isQual = true
} else if isQual {
fastxReader.qualBuffer.Write(dropCR(p[r : r+k]))
} else {
fastxReader.seqBuffer.Write(dropCR(p[r : r+k]))
}
r += k + 1
continue
}
if isQual {
fastxReader.qualBuffer.Write(dropCR(p[r:]))
}
break
}
// may be the case of quality line starts with "@"
if fastxReader.seqBuffer.Len() != fastxReader.qualBuffer.Len() {
return fastxReader.seqBuffer.Len() > fastxReader.qualBuffer.Len(), ErrUnequalSeqAndQual
}
fastxReader.seq = fastxReader.seqBuffer.Bytes()
fastxReader.qual = fastxReader.qualBuffer.Bytes()
}
} else {
fastxReader.head = dropCR(dropLF(p))
fastxReader.seq = []byte{}
fastxReader.qual = []byte{}
}
// guess alphabet
if fastxReader.firstseq {
if fastxReader.t == nil {
fastxReader.t = seq.GuessAlphabetLessConservatively(fastxReader.seq)
}
fastxReader.firstseq = false
}
if len(fastxReader.head) == 0 && len(fastxReader.seq) == 0 {
return false, io.EOF
}
var err error
// new record
if fastxReader.IsFastq { // fastq
fastxReader.record.Seq.Alphabet = fastxReader.t
fastxReader.record.ID, fastxReader.record.Desc = parseHeadIDAndDesc(fastxReader.IDRegexp, fastxReader.head)
fastxReader.record.Name = fastxReader.head
fastxReader.record.Seq.Seq = fastxReader.seq
fastxReader.record.Seq.Qual = fastxReader.qual
if seq.ValidateSeq {
err = fastxReader.t.IsValid(fastxReader.seq)
}
if len(fastxReader.seq) != len(fastxReader.qual) {
err = fmt.Errorf("seq: unmatched length of sequence (%d) and quality (%d)",
len(fastxReader.seq), len(fastxReader.qual))
}
} else { // fasta
fastxReader.record.Seq.Alphabet = fastxReader.t
fastxReader.record.ID, fastxReader.record.Desc = parseHeadIDAndDesc(fastxReader.IDRegexp, fastxReader.head)
fastxReader.record.Name = fastxReader.head
fastxReader.record.Seq.Seq = fastxReader.seq
if seq.ValidateSeq {
err = fastxReader.t.IsValid(fastxReader.seq)
}
}
return false, err
}
// ParseHeadID parse ID from head by IDRegexp. not used.
func ParseHeadID(idRegexp *regexp.Regexp, head []byte) []byte {
found := idRegexp.FindSubmatch(head)
if found == nil { // not match
return head
}
return found[1]
}
var emptyByteSlice = []byte{}
// var tabspace string = "\t "
func parseHeadIDAndDesc(idRegexp *regexp.Regexp, head []byte) ([]byte, []byte) {
if isUsingDefaultIDRegexp {
// i := bytes.IndexAny(head, tabspace) // slower
iTab := bytes.IndexByte(head, '\t')
iSpace := bytes.IndexByte(head, ' ')
i := -1
if iSpace >= 0 {
i = iSpace
if iTab >= 0 && iTab < iSpace {
i = iTab
}
} else if iTab >= 0 {
i = iTab
} else {
return head, emptyByteSlice
}
e := len(head)
j := i + 1
for ; j < e; j++ {
if head[j] == ' ' || head[j] == '\t' {
j++
} else {
break
}
}
if j >= e {
return head[0:i], emptyByteSlice
}
return head[0:i], head[j:]
}
found := idRegexp.FindSubmatch(head)
if found == nil { // not match
return head, emptyByteSlice
}
return found[1], emptyByteSlice
}
// Alphabet returns Alphabet of the file
func (fastxReader *Reader) Alphabet() *seq.Alphabet {
if fastxReader.t == nil {
return seq.Unlimit
}
return fastxReader.t
}
func dropCR(data []byte) []byte {
if len(data) > 0 && data[len(data)-1] == '\r' {
return data[0 : len(data)-1]
}
return data
}
func dropLF(data []byte) []byte {
if len(data) > 0 && data[len(data)-1] == '\n' {
return data[0 : len(data)-1]
}
return data
}
// -------------------------------------------------
// RecordChunk is chunk for records
type RecordChunk struct {
ID uint64
Data []*Record
Err error
}
// ChunkChan asynchronously reads FASTA/Q records, and returns a channel of
// Record Chunk, from which you can easily access the records.
// bufferSize is the number of buffered chunks, and chunkSize is the size
// of records in a chunk.
func (fastxReader *Reader) ChunkChan(bufferSize int, chunkSize int) chan RecordChunk {
var ch chan RecordChunk
if bufferSize <= 0 {
ch = make(chan RecordChunk)
} else {
ch = make(chan RecordChunk, bufferSize)
}
if chunkSize < 1 {
chunkSize = 1
}
go func() {
var i int
var id uint64
chunkData := make([]*Record, chunkSize)
for {
record, err := fastxReader.Read()
if err != nil {
if err == io.EOF {
if i == 0 { // no any seqs
close(ch)
return
}
break
}
ch <- RecordChunk{id, chunkData[0:i], err}
close(ch)
return
}
chunkData[i] = record.Clone()
i++
if i == chunkSize {
ch <- RecordChunk{id, chunkData[0:i], nil}
id++
i = 0
chunkData = make([]*Record, chunkSize)
}
}
ch <- RecordChunk{id, chunkData[0:i], nil}
close(ch)
}()
return ch
}