From 17fcbfacd4da421167372b9bf34865ba4455e8be Mon Sep 17 00:00:00 2001 From: Sofia Stamouli <91951607+sofstam@users.noreply.github.com> Date: Thu, 11 Jan 2024 10:53:20 +0100 Subject: [PATCH] Update cg/meta/workflow/nf_analysis.py Co-authored-by: Sebastian Diaz --- cg/meta/workflow/nf_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cg/meta/workflow/nf_analysis.py b/cg/meta/workflow/nf_analysis.py index 6ecadd89b0..a818f252a0 100644 --- a/cg/meta/workflow/nf_analysis.py +++ b/cg/meta/workflow/nf_analysis.py @@ -175,7 +175,7 @@ def verify_sample_sheet_exists(self, case_id: str, dry_run: bool = False) -> Non raise ValueError(f"No config file found for case {case_id}") def verify_deliverables_file_exists(self, case_id: str) -> None: - """Raise an error if deliverables file is not found.""" + """Raise an error if a deliverable file is not found.""" if not Path(self.get_deliverables_file_path(case_id=case_id)).exists(): raise CgError(f"No deliverables file found for case {case_id}")