Skip to content

Commit

Permalink
Merge pull request #193 from ttngu207/dev_per_field_processing
Browse files Browse the repository at this point in the history
fix: bugfix getting abs path
  • Loading branch information
ttngu207 authored Apr 18, 2024
2 parents 170cff9 + 7d13eef commit 7d28d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion element_calcium_imaging/field_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def make(self, key):
)

image_file = (scan.ScanInfo.ScanFile & key).fetch("file_path", limit=1)[0]
pv_dir = pathlib.Path(image_file).parent
pv_dir = find_full_path(scan.get_imaging_root_data_dir(), image_file).parent
PVmeta = PrairieViewMeta(pv_dir)

channel = (
Expand Down

0 comments on commit 7d28d24

Please sign in to comment.