From bd91530608dae019b007a3cda3c7e0539a3f5238 Mon Sep 17 00:00:00 2001 From: Jasper Phelps Date: Sat, 20 May 2023 15:58:49 +0200 Subject: [PATCH] Return rootIDs as int64, not uint64, for consistency with other fns See https://github.com/seung-lab/cloud-volume/issues/586 --- fanc/lookup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanc/lookup.py b/fanc/lookup.py index e04397cc..aaab4dc9 100644 --- a/fanc/lookup.py +++ b/fanc/lookup.py @@ -209,7 +209,7 @@ def segids_from_pts(pts, else: cv = auth.get_cloudvolume() - return cv.get_roots(svids, timestamp=timestamp) + return cv.get_roots(svids, timestamp=timestamp).astype(np.int64) anchor_point_sources = ['somas_dec2022', 'peripheral_nerves', 'neck_connective']