We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5317ad commit 4d4da2eCopy full SHA for 4d4da2e
bu_isciii/new_service.py
@@ -92,7 +92,9 @@ def __init__(
92
def check_md5(self):
93
# Path to the .md5 file
94
project_name = self.service_samples[0]["project_name"]
95
- md5_file_path = f'{self.conf["fastq_repo"]}/{project_name}/md5sum_{project_name}.md5'
+ md5_file_path = (
96
+ f'{self.conf["fastq_repo"]}/{project_name}/md5sum_{project_name}.md5'
97
+ )
98
if not os.path.exists(md5_file_path):
99
stderr.print(f"[red]ERROR: .md5 file not found at {md5_file_path}")
100
sys.exit(1)
0 commit comments