mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
same as previous commit
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
package obiconvert
|
||||
|
||||
import (
|
||||
log "github.com/sirupsen/logrus"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
||||
"git.metabarcoding.org/lecasofts/go/obitools/pkg/obiformats"
|
||||
"git.metabarcoding.org/lecasofts/go/obitools/pkg/obiiter"
|
||||
"git.metabarcoding.org/lecasofts/go/obitools/pkg/obioptions"
|
||||
@ -136,7 +137,11 @@ func ReadBioSequencesBatch(filenames ...string) (obiiter.IBioSequenceBatch, erro
|
||||
}
|
||||
|
||||
if len(others) > 0 {
|
||||
iterator = iterator.Concat(others...)
|
||||
if NoInputOrder() {
|
||||
iterator = iterator.Pool(others...)
|
||||
} else {
|
||||
iterator = iterator.Concat(others...)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user