From 9d8a3b365b4b0a50448099dbf3194a18f9462636 Mon Sep 17 00:00:00 2001 From: Anandashankar Anil Date: Thu, 12 Dec 2024 17:08:44 +0100 Subject: [PATCH 1/2] Forgot to commit fix in PR: Add ONT FCs to bioinfo tab #446 --- taca/utils/bioinfo_tab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taca/utils/bioinfo_tab.py b/taca/utils/bioinfo_tab.py index 4e80c052..14e68681 100644 --- a/taca/utils/bioinfo_tab.py +++ b/taca/utils/bioinfo_tab.py @@ -260,7 +260,7 @@ def get_status_ont(ont_run): """Gets status of a ONT sample run, based on flowcell info.""" # Default state, should never occur status = "ERROR" - run_status = ont_run.get_demultiplexing_status() + run_status = ont_run.db.check_run_status(ont_run) if run_status in ["finished"]: status = "New" From e8d6cc9ed4a91758103eb52240ceb61bc50146c1 Mon Sep 17 00:00:00 2001 From: Anandashankar Anil Date: Thu, 12 Dec 2024 17:45:17 +0100 Subject: [PATCH 2/2] Versionlog --- VERSIONLOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VERSIONLOG.md b/VERSIONLOG.md index 459c03a5..e4e5c126 100644 --- a/VERSIONLOG.md +++ b/VERSIONLOG.md @@ -1,5 +1,9 @@ # TACA Version Log +## 20241212.2 + +Fix for ONT demultiplexing status in bioinfo deliveries script + ## 20241212.1 Add ONT instrument data to bioinfo_tab