Files
obitools4/pkg/obiformats/fastseq_write_fastq.go

172 lines
3.6 KiB
Go
Raw Normal View History

2022-01-13 23:27:39 +01:00
package obiformats
import (
"bytes"
"fmt"
"io"
"log"
"os"
"time"
2022-01-13 23:43:01 +01:00
"git.metabarcoding.org/lecasofts/go/obitools/pkg/obiseq"
2022-01-13 23:27:39 +01:00
)
func FormatFastq(seq obiseq.BioSequence, quality_shift int, formater FormatHeader) string {
l := seq.Length()
q := seq.Qualities()
ascii := make([]byte, seq.Length())
for j := 0; j < l; j++ {
ascii[j] = uint8(q[j]) + uint8(quality_shift)
}
info := ""
if formater != nil {
info = formater(seq)
}
return fmt.Sprintf("@%s %s %s\n%s\n+\n%s",
seq.Id(), info,
seq.Definition(),
string(seq.Sequence()),
string(ascii),
)
}
func FormatFastqBatch(batch obiseq.BioSequenceBatch, quality_shift int,
formater FormatHeader) []byte {
var bs bytes.Buffer
for _, seq := range batch.Slice() {
bs.WriteString(FormatFastq(seq, quality_shift, formater))
bs.WriteString("\n")
}
return bs.Bytes()
}
func WriteFastq(iterator obiseq.IBioSequence, file io.Writer, options ...WithOption) error {
opt := MakeOptions(options)
header_format := opt.FormatFastSeqHeader()
quality := opt.QualityShift()
for iterator.Next() {
seq := iterator.Get()
fmt.Fprintln(file, FormatFastq(seq, quality, header_format))
}
return nil
}
func WriteFastqToFile(iterator obiseq.IBioSequence,
filename string,
options ...WithOption) error {
file, err := os.Create(filename)
if err != nil {
log.Fatalf("open file error: %v", err)
return err
}
return WriteFastq(iterator, file, options...)
}
func WriteFastqToStdout(iterator obiseq.IBioSequence, options ...WithOption) error {
return WriteFastq(iterator, os.Stdout, options...)
}
type FileChunck struct {
text []byte
order int
}
func WriteFastqBatch(iterator obiseq.IBioSequenceBatch, file io.Writer, options ...WithOption) (obiseq.IBioSequenceBatch, error) {
opt := MakeOptions(options)
2022-01-13 23:27:39 +01:00
buffsize := iterator.BufferSize()
2022-01-14 17:32:12 +01:00
newIter := obiseq.MakeIBioSequenceBatch(buffsize)
2022-01-13 23:27:39 +01:00
nwriters := opt.ParallelWorkers()
2022-01-13 23:27:39 +01:00
chunkchan := make(chan FileChunck)
header_format := opt.FormatFastSeqHeader()
quality := opt.QualityShift()
2022-01-14 17:32:12 +01:00
newIter.Add(nwriters)
2022-01-13 23:27:39 +01:00
go func() {
2022-01-14 17:32:12 +01:00
newIter.Wait()
2022-01-13 23:27:39 +01:00
for len(chunkchan) > 0 {
time.Sleep(time.Millisecond)
}
close(chunkchan)
2022-01-14 17:32:12 +01:00
for len(newIter.Channel()) > 0 {
2022-01-13 23:27:39 +01:00
time.Sleep(time.Millisecond)
}
2022-01-14 17:32:12 +01:00
close(newIter.Channel())
2022-01-13 23:27:39 +01:00
}()
ff := func(iterator obiseq.IBioSequenceBatch) {
for iterator.Next() {
batch := iterator.Get()
chunk := FileChunck{
2022-01-13 23:27:39 +01:00
FormatFastqBatch(batch, quality, header_format),
batch.Order(),
}
chunkchan <- chunk
2022-01-14 17:32:12 +01:00
newIter.Channel() <- batch
2022-01-13 23:27:39 +01:00
}
2022-01-14 17:32:12 +01:00
newIter.Done()
2022-01-13 23:27:39 +01:00
}
log.Println("Start of the fastq file writing")
for i := 0; i < nwriters-1; i++ {
2022-01-13 23:27:39 +01:00
go ff(iterator.Split())
}
go ff(iterator)
2022-01-13 23:27:39 +01:00
next_to_send := 0
received := make(map[int]FileChunck, 100)
go func() {
for chunk := range chunkchan {
if chunk.order == next_to_send {
file.Write(chunk.text)
next_to_send++
chunk, ok := received[next_to_send]
for ok {
file.Write(chunk.text)
delete(received, next_to_send)
next_to_send++
chunk, ok = received[next_to_send]
}
} else {
received[chunk.order] = chunk
}
}
}()
2022-01-14 17:32:12 +01:00
return newIter, nil
2022-01-13 23:27:39 +01:00
}
func WriteFastqBatchToStdout(iterator obiseq.IBioSequenceBatch, options ...WithOption) (obiseq.IBioSequenceBatch, error) {
return WriteFastqBatch(iterator, os.Stdout, options...)
}
func WriteFastqBatchToFile(iterator obiseq.IBioSequenceBatch,
filename string,
options ...WithOption) (obiseq.IBioSequenceBatch, error) {
file, err := os.Create(filename)
if err != nil {
log.Fatalf("open file error: %v", err)
return obiseq.NilIBioSequenceBatch, err
}
return WriteFastqBatch(iterator, file, options...)
}