Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
addressing Niko's final comments, cleaning code
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorpm committed Jan 22, 2024
1 parent bd1f185 commit d0f81ab
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bg_atlasgen/validate_atlases.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,12 @@ def validate_mesh_matches_image_extents(atlas: BrainGlobeAtlas):


def open_for_visual_check():
# implement visual checks later
pass


def validate_checksum():
# implement later
pass


Expand All @@ -110,7 +112,6 @@ def validate_atlas(atlas_name, version, all_validation_functions):
updated = get_atlases_lastversions()[atlas_name]["updated"]
if not updated:
update_atlas(atlas_name)
Path(get_brainglobe_dir()) / f"{atlas_name}_v{version}"

validation_function_parameters = [
# validate_atlas_files(atlas_path: Path)
Expand All @@ -123,8 +124,6 @@ def validate_atlas(atlas_name, version, all_validation_functions):
(),
# check_additional_references()
(),
# validate_atlas(atlas_name, version)
(atlas_name, version),
]

# list to store the errors of the failed validations
Expand Down

0 comments on commit d0f81ab

Please sign in to comment.