From 8dd32dc1bf621a413ed5390438ff58b7c87825f3 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Thu, 12 Mar 2026 18:48:20 +0100 Subject: [PATCH] Fix CompressStream call to use compressed variable Replace hardcoded boolean with the `compressed` variable in CompressStream call to ensure correct compression behavior. --- pkg/obitools/obiclean/graph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/obitools/obiclean/graph.go b/pkg/obitools/obiclean/graph.go index 9952c5e..e6ac7fa 100644 --- a/pkg/obitools/obiclean/graph.go +++ b/pkg/obitools/obiclean/graph.go @@ -64,7 +64,7 @@ func EmpiricalDistCsv(filename string, data [][]Ratio, compressed bool) { fmt.Println(err) } - destfile, err := obiutils.CompressStream(file, true, true) + destfile, err := obiutils.CompressStream(file, compressed, true) if err != nil { fmt.Println(err) }