Skip to content

Commit c8cf8e9

Browse files
authoredNov 22, 2021
Merge pull request #311 from icbi-lab/grst-patch-1
Fix that vdjdb cannot be downloaded if cache dir does not exist
2 parents 2b6aac7 + 0183eaf commit c8cf8e9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎scirpy/datasets/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from datetime import datetime
1414
from ..util import tqdm
1515
from scanpy import logging
16+
import os.path
1617

1718
HERE = Path(__file__).parent
1819

@@ -91,7 +92,7 @@ def maynard2020() -> AnnData:
9192
return adata
9293

9394

94-
def vdjdb(cached: bool = True) -> AnnData:
95+
def vdjdb(cached: bool = True, *, cache_path="data/vdjdb.h5ad") -> AnnData:
9596
"""\
9697
Download VDJdb and process it into an AnnData object.
9798
@@ -109,7 +110,6 @@ def vdjdb(cached: bool = True) -> AnnData:
109110
Each entry is represented as if it was a cell, but without gene expression.
110111
Metadata is stored in `adata.uns["DB"]`.
111112
"""
112-
cache_path = f"data/vdjdb.h5ad"
113113
if cached:
114114
try:
115115
return sc.read_h5ad(cache_path)
@@ -201,6 +201,7 @@ def vdjdb(cached: bool = True) -> AnnData:
201201
adata.uns["DB"] = {"name": "VDJDB", "date_downloaded": datetime.now().isoformat()}
202202

203203
# store cache
204+
os.makedirs(os.path.dirname(os.path.abspath(cache_path)), exist_ok=True)
204205
adata.write_h5ad(cache_path)
205206

206207
return adata

0 commit comments

Comments
 (0)