Skip to content

Commit

Permalink
Merge pull request #458 from aanil/aviti_bioinfo_tab
Browse files Browse the repository at this point in the history
Forgot to commit fix in PR:  Add ONT FCs to bioinfo tab #446
  • Loading branch information
aanil authored Dec 12, 2024
2 parents 70b77a8 + e8d6cc9 commit 160479c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion taca/utils/bioinfo_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 160479c

Please sign in to comment.