pymaid.get_skeleton_ids

pymaid.get_skeleton_ids(created_by: Optional[int] = None, reviewed_by: Optional[int] = None, from_date: Optional[date] = None, to_date: Optional[date] = None, nodecount_gt: Optional[int] = None, remote_instance: Optional[CatmaidInstance] = None) Set[int][source]

Get all skeleton IDs from the project matching given filters.

Parameters
  • created_by (int, optional) – Created by user with this ID.

  • reviewed_by (int, optional) – Reviewed by user with this ID.

  • from_date (datetime.date, optional) – Has nodes created after this date.

  • to_date (datetime.date, optional) – Has nodes created before this date.

  • nodecount_gt (int, optional) – Has greater than this number of nodes. This will remove all other criteria.

  • remote_instance (pymaid.CatmaidInstance, optional) – Catmaid instance, by default None

Returns

Skeleton IDs matching the given criteria.

Return type

set[int]