Skip to content

Commit

Permalink
fix(skeletons): test in skeleton forging for global voxel cts outdated
Browse files Browse the repository at this point in the history
Needs to look for an IntMap file, not a MapBuffer file.
  • Loading branch information
william-silversmith committed Jan 8, 2025
1 parent c62a96e commit bc5f019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion igneous/task_creation/skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def create_skeletonizing_tasks(

if dust_threshold > 0 and dust_global:
cf = CloudFiles(cloudpath)
vxctfile = cf.join(vol.key, 'stats', 'voxel_counts.mb')
vxctfile = cf.join(vol.key, 'stats', 'voxel_counts.im')
if not cf.exists(vxctfile):
raise FileNotFoundError(
f"To use global dust thresholds, you must pre-compute the global voxel"
Expand Down

0 comments on commit bc5f019

Please sign in to comment.