File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 13
13
from datetime import datetime
14
14
from ..util import tqdm
15
15
from scanpy import logging
16
+ import os .path
16
17
17
18
HERE = Path (__file__ ).parent
18
19
@@ -91,7 +92,7 @@ def maynard2020() -> AnnData:
91
92
return adata
92
93
93
94
94
- def vdjdb (cached : bool = True ) -> AnnData :
95
+ def vdjdb (cached : bool = True , * , cache_path = "data/vdjdb.h5ad" ) -> AnnData :
95
96
"""\
96
97
Download VDJdb and process it into an AnnData object.
97
98
@@ -109,7 +110,6 @@ def vdjdb(cached: bool = True) -> AnnData:
109
110
Each entry is represented as if it was a cell, but without gene expression.
110
111
Metadata is stored in `adata.uns["DB"]`.
111
112
"""
112
- cache_path = f"data/vdjdb.h5ad"
113
113
if cached :
114
114
try :
115
115
return sc .read_h5ad (cache_path )
@@ -201,6 +201,7 @@ def vdjdb(cached: bool = True) -> AnnData:
201
201
adata .uns ["DB" ] = {"name" : "VDJDB" , "date_downloaded" : datetime .now ().isoformat ()}
202
202
203
203
# store cache
204
+ os .makedirs (os .path .dirname (os .path .abspath (cache_path )), exist_ok = True )
204
205
adata .write_h5ad (cache_path )
205
206
206
207
return adata
You can’t perform that action at this time.
0 commit comments