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:
2023-06-08 16:40:03 +02:00
parent 1cedc0765d
commit b44fcfb2a0

View File

@ -65,11 +65,11 @@ func IPCRTagPESequencesBatch(iterator obiiter.IBioSequence,
direction := annot["direction"].(string) direction := annot["direction"].(string)
forward_match := annot["forward_match"].(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) forward_tag := annot["forward_tag"].(string)
reverse_match := annot["reverse_match"].(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) reverse_tag := annot["reverse_tag"].(string)
sample := annot["sample"].(string) sample := annot["sample"].(string)