Skip to content

Commit

Permalink
Substituted /srv/fastq_repo by its variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
victor5lm committed Oct 29, 2024
1 parent 254c480 commit 07ad89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bu_isciii/new_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def __init__(
def check_md5(self):
# Path to the .md5 file
project_name = self.service_samples[0]["project_name"]
md5_file_path = f"/srv/fastq_repo/{project_name}/md5sum_{project_name}.md5"
md5_file_path = f'{self.conf["fastq_repo"]}/{project_name}/md5sum_{project_name}.md5'
if not os.path.exists(md5_file_path):
stderr.print(f"[red]ERROR: .md5 file not found at {md5_file_path}")
sys.exit(1)
Expand Down

0 comments on commit 07ad89f

Please sign in to comment.