diff --git a/atlas_gen/atlas_scripts/allen_mouse_atlas.py b/atlas_gen/atlas_scripts/allen_mouse_atlas.py index a8206c0..1b10337 100644 --- a/atlas_gen/atlas_scripts/allen_mouse_atlas.py +++ b/atlas_gen/atlas_scripts/allen_mouse_atlas.py @@ -19,7 +19,9 @@ ORIENTATION = "asl" # Working path on disk: -bg_root_dir = Path.home() / "brainglobe_workingdir" / "mouse" +working_dir = Path.home() / "brainglobe_workingdir" +working_dir.mkdir(exist_ok=True) +bg_root_dir = working_dir / "mouse" bg_root_dir.mkdir(exist_ok=True) # Temporary folder for nrrd files download: diff --git a/brainatlas_api/bg_atlas.py b/brainatlas_api/bg_atlas.py index 0f96c03..9ec534e 100644 --- a/brainatlas_api/bg_atlas.py +++ b/brainatlas_api/bg_atlas.py @@ -111,7 +111,7 @@ class RatAtlas(BrainGlobeAtlas): class AllenBrain25Um(BrainGlobeAtlas): atlas_name = "allenbrain25um" - version = "0.1" + version = "0.2" class AllenHumanBrain500Um(BrainGlobeAtlas):