Skip to content

Commit

Permalink
add more print statements so progress is easier to observe
Browse files Browse the repository at this point in the history
  • Loading branch information
PolarBean committed Sep 12, 2024
1 parent 1fd2290 commit 178d92e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ def retrieve_reference_and_annotation():
tuple: A tuple containing two numpy arrays. The first array is the
reference volume, and the second array is the annotation volume.
"""
print("loading reference and annotation volume")
download_dir_path = BG_ROOT_DIR / "downloads"
atlas_files_dir = download_dir_path / "atlas_files"

Check warning on line 146 in brainglobe_atlasapi/atlas_generation/atlas_scripts/perens_stereotaxic_mri_mouse.py

View check run for this annotation

Codecov / codecov/patch

brainglobe_atlasapi/atlas_generation/atlas_scripts/perens_stereotaxic_mri_mouse.py#L144-L146

Added lines #L144 - L146 were not covered by tests

Expand Down Expand Up @@ -212,6 +213,8 @@ def retrieve_or_construct_meshes():
In other cases we need to construct the meshes ourselves. For this we have
helper functions to achieve this.
"""
print("constructing meshes")

Check warning on line 216 in brainglobe_atlasapi/atlas_generation/atlas_scripts/perens_stereotaxic_mri_mouse.py

View check run for this annotation

Codecov / codecov/patch

brainglobe_atlasapi/atlas_generation/atlas_scripts/perens_stereotaxic_mri_mouse.py#L216

Added line #L216 was not covered by tests

download_dir_path = BG_ROOT_DIR / "downloads"
meshes_dir_path = download_dir_path / "meshes"
meshes_dir_path.mkdir(exist_ok=True)

Check warning on line 220 in brainglobe_atlasapi/atlas_generation/atlas_scripts/perens_stereotaxic_mri_mouse.py

View check run for this annotation

Codecov / codecov/patch

brainglobe_atlasapi/atlas_generation/atlas_scripts/perens_stereotaxic_mri_mouse.py#L218-L220

Added lines #L218 - L220 were not covered by tests
Expand Down

0 comments on commit 178d92e

Please sign in to comment.