First version of obisplit and patch a bug in the new workers API

Former-commit-id: f28af9f104c08d68e29fd866739d8dd58241da63
This commit is contained in:
2024-03-03 11:16:24 -04:00
parent 0f3871d203
commit 7bd073ccd4
7 changed files with 507 additions and 37 deletions

View File

@ -34,7 +34,7 @@ func (iterator IBioSequence) MakeIWorker(worker obiseq.SeqWorker,
}()
sw := obiseq.SeqToSliceWorker(worker, true, breakOnError)
sw := obiseq.SeqToSliceWorker(worker, breakOnError)
f := func(iterator IBioSequence) {
var err error
@ -90,7 +90,7 @@ func (iterator IBioSequence) MakeIConditionalWorker(predicate obiseq.SequencePre
}()
sw := obiseq.SeqToSliceConditionalWorker(predicate, worker, true, breakOnError)
sw := obiseq.SeqToSliceConditionalWorker(predicate, worker, breakOnError)
f := func(iterator IBioSequence) {
var err error