From 11496d3ac014b7cad8986a2d8ba12b7b9ebd30fb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <amuoz@ed.ac.uk>
Date: Mon, 7 Mar 2022 11:53:21 +0000
Subject: [PATCH] use legacy last time point

---
 aliby/pipeline.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/aliby/pipeline.py b/aliby/pipeline.py
index 4d4cc57c..8fe7e9e1 100644
--- a/aliby/pipeline.py
+++ b/aliby/pipeline.py
@@ -282,13 +282,13 @@ class Pipeline(ProcessABC):
                                 )
                                 for k, v in process_from.items():
                                     if not ow[k]:
-
-                                        process_from[k] = f[
-                                            self.writer_groups[k][-1]
-                                        ].attrs.get(
-                                            "last_processed",
-                                            legacy_get_last_tp[k](f),
-                                        )
+                                        process_from[k] = legacy_get_last_tp[k](f)
+                                        # process_from[k] = f[
+                                        #     self.writer_groups[k][-1]
+                                        # ].attrs.get(
+                                        #     "last_processed",
+                                        #     legacy_get_last_tp[k](f),
+                                        # )
                                         process_from[k] += 1
                                 # get state array
                                 if not ow["baby"]:
-- 
GitLab