Skip to content

Commit

Permalink
Additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjunnebo committed Dec 11, 2024
1 parent c72a19a commit 847ad87
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions taca/illumina/Runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,11 @@ def _get_samplesheet(self):
if os.path.exists(ssname):
return ssname
else:
logger.warning(
f"Not able to find samplesheet {self.flowcell_id}.csv in {self.CONFIG["samplesheets_dir"]}"
)
raise RuntimeError(
"not able to find samplesheet {}.csv in {}".format(
self.flowcell_id, self.CONFIG["samplesheets_dir"]
)
f"Not able to find samplesheet {self.flowcell_id}.csv in {self.CONFIG["samplesheets_dir"]}"
)

def _is_demultiplexing_done(self):
Expand Down

0 comments on commit 847ad87

Please sign in to comment.