From b44fcfb2a0bad9d2363f671b108118c15f5395ea Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Thu, 8 Jun 2023 16:40:03 +0200 Subject: [PATCH] Correct a bug related to the renaming of the forward_mismatch and reverse_mismatch to forward_error and reverse_error Former-commit-id: c0d6cfda0d8e50364616fd79313c5711ed7bb43e --- pkg/obitools/obitagpcr/pcrtag.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/obitools/obitagpcr/pcrtag.go b/pkg/obitools/obitagpcr/pcrtag.go index 351c0be..b9ed8b1 100644 --- a/pkg/obitools/obitagpcr/pcrtag.go +++ b/pkg/obitools/obitagpcr/pcrtag.go @@ -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)