Skip to content

Commit

Permalink
Merge pull request NationalGenomicsInfrastructure#425 from kedhammar/…
Browse files Browse the repository at this point in the history
…master

Fix erroneous name of pod5 output dir for ONT runs
  • Loading branch information
kedhammar authored May 20, 2024
2 parents 395d830 + 64fc26c commit 7f75636
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

## 20240520.1

Fix erroneous name of pod5 output dir for ONT runs.

## 20240507.1

Broaden ONT transfer script's categorization of QC runs to either experiment dir or sample dir starting with "QC\_".
Expand Down
2 changes: 1 addition & 1 deletion taca/nanopore/ONT_run_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def has_fastq_output(self) -> bool:
def has_raw_seq_output(self) -> bool:
"""Check whether run has sequencing data output."""

raw_seq_dirs = ["pod5_pass", "fast5_pass"]
raw_seq_dirs = ["pod5", "fast5_pass"]

for dir in raw_seq_dirs:
if os.path.exists(os.path.join(self.run_abspath, dir)):
Expand Down

0 comments on commit 7f75636

Please sign in to comment.