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 284fff8 commit 1a4ee1fCopy full SHA for 1a4ee1f
src/datasets/loaders/allen_brain_cell_atlas/script.py
@@ -79,10 +79,10 @@
79
print("Downloading and reading expression matrices", flush=True)
80
abca_data_subdir="WMB-10Xv2"
81
abca_region_files = [
82
- [re.sub(r"/raw$", "", file), region]
83
- for file in abc_cache.list_data_files(abca_data_subdir)
+ [file_name, region]
+ for file_name in abc_cache.list_data_files(abca_data_subdir)
84
for region in REGIONS
85
- if re.match(f"WMB-10Xv2-{region}[\\-0-9]*/raw", file)
+ if re.match(f"WMB-10Xv2-{region}[\\-0-9]*/raw", file_name)
86
]
87
88
adatas = []
0 commit comments