Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeClaudi committed Jun 2, 2020
1 parent e655be5 commit 63ecaeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion atlas_gen/atlas_scripts/allen_mouse_atlas.py
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion brainatlas_api/bg_atlas.py
Expand Up @@ -111,7 +111,7 @@ class RatAtlas(BrainGlobeAtlas):

class AllenBrain25Um(BrainGlobeAtlas):
atlas_name = "allenbrain25um"
version = "0.1"
version = "0.2"


class AllenHumanBrain500Um(BrainGlobeAtlas):
Expand Down

0 comments on commit 63ecaeb

Please sign in to comment.