Skip to content

Commit 7d9d24c

Browse files
authored
Merge pull request #492 from ssjunnebo/pod5
Don't check for pod5/fast5 files
2 parents 6f3abd3 + 2dfde26 commit 7d9d24c

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

VERSIONLOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# TACA Version Log
22

3+
## 20251007.2
4+
5+
Skip check for pod5/fast5 files
6+
37
## 20251007.1
48

59
Skip toulligqc on ONT data if pod5/fast5 is missing

taca/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Main TACA module"""
22

3-
__version__ = "1.6.6"
3+
__version__ = "1.6.7"

taca/nanopore/ONT_run_classes.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ def assert_contents(self):
111111
assert self.has_file("/final_summary*.txt")
112112

113113
# Raw seq files
114-
assert any(
115-
[
116-
dir in os.listdir(self.run_abspath)
117-
for dir in ["pod5", "pod5_pass", "fast5", "fast5_pass"]
118-
]
119-
)
114+
# assert any(
115+
# [
116+
# dir in os.listdir(self.run_abspath)
117+
# for dir in ["pod5", "pod5_pass", "fast5", "fast5_pass"]
118+
# ]
119+
# ) TODO: put this back when we want to run toulligqc again
120120

121121
# NGI files from instrument
122122
assert self.has_file("/pore_count_history.csv")

0 commit comments

Comments
 (0)