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

Commit

Permalink
passing atlas_name to validate_mesh_structure_pairs function
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorpm committed Jan 22, 2024
1 parent c15a21a commit 21ed954
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bg_atlasgen/validate_atlases.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,11 @@ def validate_atlas(atlas_name, version, all_validation_functions):
(),
# check_additional_references()
(),
# validate_mesh_structure_pairs()
(Path(get_brainglobe_dir() / f"{atlas_name}_v{version}"),),
# validate_mesh_structure_pairs(atlas_name: str, atlas_path: Path):
(
atlas_name,
Path(get_brainglobe_dir() / f"{atlas_name}_v{version}"),
),
]

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

0 comments on commit 21ed954

Please sign in to comment.