From 9d8a3b365b4b0a50448099dbf3194a18f9462636 Mon Sep 17 00:00:00 2001 From: Anandashankar Anil Date: Thu, 12 Dec 2024 17:08:44 +0100 Subject: [PATCH] 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"