mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Adds some stats in obiparing about fast align results
Former-commit-id: 44f6d6538e759dd7dc1db068a812957f6b20f50d
This commit is contained in:
@ -352,7 +352,7 @@ func PERightAlign(seqA, seqB *obiseq.BioSequence, gap float64,
|
||||
|
||||
func PEAlign(seqA, seqB *obiseq.BioSequence,
|
||||
gap float64, delta int,
|
||||
arena PEAlignArena) (int, []int) {
|
||||
arena PEAlignArena) (int, []int, int, int) {
|
||||
var score, shift int
|
||||
var startA, startB int
|
||||
var partLen, over int
|
||||
@ -467,5 +467,5 @@ func PEAlign(seqA, seqB *obiseq.BioSequence,
|
||||
arena.pointer.path = append(arena.pointer.path, extra3, 0)
|
||||
}
|
||||
|
||||
return score, arena.pointer.path
|
||||
return score, arena.pointer.path, fastScore, over
|
||||
}
|
||||
|
Reference in New Issue
Block a user