Skip to content

Commit

Permalink
ENH better handling of temp directory for downloading subjects
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdoc committed Jun 21, 2024
1 parent d942fc0 commit c195307
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
2 changes: 2 additions & 0 deletions cortex/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ def test_download_subject():
assert "fsaverage" not in cortex.db.subjects
cortex.utils.download_subject(subject_id='fsaverage')
assert "fsaverage" in cortex.db.subjects
# test that downloading it again works
cortex.utils.download_subject(subject_id='fsaverage', download_again=True)
29 changes: 16 additions & 13 deletions cortex/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1079,25 +1079,28 @@ def download_subject(subject_id='fsaverage', url=None, pycortex_store=None,
"the subject again.".format(subject_id))
return
# Map codes to URLs; more coming eventually
id_to_url = dict(fsaverage='https://ndownloader.figshare.com/files/17827577?private_link=4871247dce31e188e758',
)
id_to_url = dict(
fsaverage='https://ndownloader.figshare.com/files/17827577?private_link=4871247dce31e188e758',
)
if url is None:
if not subject_id in id_to_url:
if subject_id not in id_to_url:
raise ValueError('Unknown subject_id!')
url = id_to_url[subject_id]
print("Downloading from: {}".format(url))
# Download to temp dir
tmp_dir = tempfile.gettempdir()
wget.download(url, tmp_dir)
print('Downloaded subject {} to {}'.format(subject_id, tmp_dir))
# Un-tar to pycortex store
# Setup pycortex store location
if pycortex_store is None:
# Default location is current filestore in cortex.db
pycortex_store = db.filestore
pycortex_store = os.path.expanduser(pycortex_store)
with tarfile.open(os.path.join(tmp_dir, subject_id + '.tar.gz'), "r:gz") as tar:
print("Extracting subject {} to {}".format(subject_id, pycortex_store))
tar.extractall(path=pycortex_store)
pycortex_store = os.path.abspath(os.path.expanduser(pycortex_store))
# Download to temp dir
print("Downloading from: {}".format(url))
with tempfile.TemporaryDirectory() as tmp_dir:
print('Downloading subject {} to {}'.format(subject_id, tmp_dir))
wget.download(url, tmp_dir)
print('Done downloading')
# Un-tar to pycortex store
with tarfile.open(os.path.join(tmp_dir, subject_id + '.tar.gz'), "r:gz") as tar:
print("Extracting subject {} to {}".format(subject_id, pycortex_store))
tar.extractall(path=pycortex_store)

# reload all subjects from the filestore
db.reload_subjects()
Expand Down

0 comments on commit c195307

Please sign in to comment.