From 42910c7db90cff1fe830c016faf59576f06c2b23 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Wed, 29 Apr 2026 15:29:21 +0200 Subject: [PATCH] :wrench: Rename mismatch fields to error in pcrtag.go - Renamed `obimultiplex_forward_mismatches` to "error" for consistency - Similarly renamed `obimultiplex_reverse_mismatches` to "error" - Applied changes in both annotation dictionaries (aanot, banot) --- pkg/obitools/obitagpcr/pcrtag.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/obitools/obitagpcr/pcrtag.go b/pkg/obitools/obitagpcr/pcrtag.go index 6215c2a..bd32402 100644 --- a/pkg/obitools/obitagpcr/pcrtag.go +++ b/pkg/obitools/obitagpcr/pcrtag.go @@ -114,10 +114,10 @@ func IPCRTagPESequencesBatch(iterator obiiter.IBioSequence, aanot["obimultiplex_direction"] = direction aanot["obimultiplex_forward_match"] = forward_match - aanot["obimultiplex_forward_mismatches"] = forward_mismatches + aanot["obimultiplex_forward_error"] = forward_mismatches aanot["obimultiplex_reverse_match"] = reverse_match - aanot["obimultiplex_reverse_mismatches"] = reverse_mismatches + aanot["obimultiplex_reverse_error"] = reverse_mismatches aanot["sample"] = sample aanot["experiment"] = experiment @@ -125,10 +125,10 @@ func IPCRTagPESequencesBatch(iterator obiiter.IBioSequence, banot["obimultiplex_direction"] = direction banot["obimultiplex_forward_match"] = forward_match - banot["obimultiplex_forward_mismatches"] = forward_mismatches + banot["obimultiplex_forward_error"] = forward_mismatches banot["obimultiplex_reverse_match"] = reverse_match - banot["obimultiplex_reverse_mismatches"] = reverse_mismatches + banot["obimultiplex_reverse_error"] = reverse_mismatches banot["sample"] = sample banot["experiment"] = experiment