Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

## 20251007.2

Skip check for pod5/fast5 files

## 20251007.1

Skip toulligqc on ONT data if pod5/fast5 is missing
Expand Down
2 changes: 1 addition & 1 deletion taca/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Main TACA module"""

__version__ = "1.6.6"
__version__ = "1.6.7"
12 changes: 6 additions & 6 deletions taca/nanopore/ONT_run_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ def assert_contents(self):
assert self.has_file("/final_summary*.txt")

# Raw seq files
assert any(
[
dir in os.listdir(self.run_abspath)
for dir in ["pod5", "pod5_pass", "fast5", "fast5_pass"]
]
)
# assert any(
# [
# dir in os.listdir(self.run_abspath)
# for dir in ["pod5", "pod5_pass", "fast5", "fast5_pass"]
# ]
# ) TODO: put this back when we want to run toulligqc again

# NGI files from instrument
assert self.has_file("/pore_count_history.csv")
Expand Down