Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c3c15c7

Browse files
committedJan 30, 2025
fixed issue where genes.tsv would not be downloaded if only one specific dataset was retrieved
1 parent ee973b3 commit c3c15c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎coderdata/download/downloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def download(
6868
file
6969
for file
7070
in data['files']
71-
if file['name'].startswith(name)
71+
if file['name'].startswith(name) or 'genes' in file['name']
7272
]
7373
else:
7474
filtered_files = data['files']

0 commit comments

Comments
 (0)
Please sign in to comment.