Skip to content

Commit 36e35ce

Browse files
authored
fix crispr brain (#187)
1 parent 8c2dec8 commit 36e35ce

File tree

3 files changed

+95
-87
lines changed

3 files changed

+95
-87
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PIS"
3-
version = "26.03.0-dev.6"
3+
version = "26.03.0-dev.7"
44
description = "Open Targets Pipeline Input Stage"
55
readme = "README.md"
66
requires-python = ">=3.11,<3.14"

src/pis/tasks/crispr_brain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def run(self) -> Self:
9292
session = requests.session()
9393
for study_id in study_ids:
9494
src = f'{self.spec.study_prefix_url}{quote(study_id)}.csv.gz'
95-
h_study = StorageHandle(f'{self.dst_studies}{study_id}.csv.gz', self.context.config)
95+
h_study = StorageHandle(f'{self.dst_studies}/{study_id}.csv.gz', self.context.config)
9696
dst = h_study.open('wb')
9797
response = session.get(src, timeout=60)
9898
response.raise_for_status()

0 commit comments

Comments
 (0)