mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Correct the bug in embl reader
Former-commit-id: 579d397ca16e8c4cf2f8ba01e503e62b2fffa06f
This commit is contained in:
@ -133,7 +133,7 @@ func _ParseEmblFile(source string, input <-chan _FileChunk, out obiiter.IBioSequ
|
||||
}
|
||||
case strings.HasPrefix(line, " "):
|
||||
parts := strings.SplitN(line[5:], " ", 7)
|
||||
np := len(parts)
|
||||
np := len(parts) - 1
|
||||
for i := 0; i < np; i++ {
|
||||
seqBytes.WriteString(parts[i])
|
||||
}
|
||||
|
Reference in New Issue
Block a user