Skip to content

Commit

Permalink
Merge pull request #292 from CAVEconnectome/skeletons_v4
Browse files Browse the repository at this point in the history
Bumped default skeleton version from 3 to 4.
  • Loading branch information
kebwi authored Dec 20, 2024
2 parents 591c0d8 + 8a12458 commit 884309e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions caveclient/skeletonservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ def get_skeleton(
self,
root_id: int,
datastack_name: Optional[str] = None,
skeleton_version: Optional[int] = 3,
skeleton_version: Optional[int] = 4,
output_format: Literal[
"dict",
"swc",
Expand Down Expand Up @@ -614,7 +614,7 @@ def get_bulk_skeletons(
self,
root_ids: List,
datastack_name: Optional[str] = None,
skeleton_version: Optional[int] = 3,
skeleton_version: Optional[int] = 4,
output_format: Literal[
"dict",
"swc",
Expand Down Expand Up @@ -743,7 +743,7 @@ def generate_bulk_skeletons_async(
logging.warning(
"The optional nature of the 'skeleton_version' parameter will be deprecated in the future. Please specify a skeleton version."
)
skeleton_version = -1
skeleton_version = 4

if isinstance(root_ids, np.ndarray):
root_ids = root_ids.tolist()
Expand Down

0 comments on commit 884309e

Please sign in to comment.