mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Correct a bug related to the renaming of the forward_mismatch and reverse_mismatch to forward_error and reverse_error
Former-commit-id: c0d6cfda0d8e50364616fd79313c5711ed7bb43e
This commit is contained in:
@ -65,11 +65,11 @@ func IPCRTagPESequencesBatch(iterator obiiter.IBioSequence,
|
||||
direction := annot["direction"].(string)
|
||||
|
||||
forward_match := annot["forward_match"].(string)
|
||||
forward_mismatches := annot["forward_mismatches"].(int)
|
||||
forward_mismatches := annot["forward_error"].(int)
|
||||
forward_tag := annot["forward_tag"].(string)
|
||||
|
||||
reverse_match := annot["reverse_match"].(string)
|
||||
reverse_mismatches := annot["reverse_mismatches"].(int)
|
||||
reverse_mismatches := annot["reverse_error"].(int)
|
||||
reverse_tag := annot["reverse_tag"].(string)
|
||||
|
||||
sample := annot["sample"].(string)
|
||||
|
Reference in New Issue
Block a user