Neuroglancer views

This is the module that the user will use to connect to the database. This can be defined in either a web page or in a REST API call. This module is the ‘V’ in the MVC framework for the Neuroglancer app portion of the portal.

class neuroglancer.views.AnnotationPrivateViewSet(**kwargs)

A viewset for viewing and editing user instances.

get(request, session_id)
post(request)
put(request, session_id)
queryset
class neuroglancer.views.NeuroglancerPrivateViewSet(**kwargs)

A viewset for viewing and editing user instances.

queryset
serializer_class

alias of NeuroglancerStateSerializer

class neuroglancer.views.NeuroglancerPublicViewSet(**kwargs)

API endpoint that allows the neuroglancer states to be viewed by the public. Note, the update, and insert methods are over ridden in the serializer. It was more convienent to do them there than here.

get_queryset()

Optionally restricts the returned purchases to a given animal, by filtering against a animal query parameter in the URL.

pagination_class

alias of LimitOffsetPagination

permission_classes = [<class 'rest_framework.permissions.AllowAny'>]
serializer_class

alias of NeuroglancerNoStateSerializer

class neuroglancer.views.Segmentation(**kwargs)

Method to create a 3D volume from existing annotation

get(request, session_id)

Simpler version that does not use slurm or subprocess script

permission_classes = [<class 'rest_framework.permissions.AllowAny'>]
neuroglancer.views.create_state(request, *args, **kwargs)
neuroglancer.views.get_labels(request, *args, **kwargs)
neuroglancer.views.search_annotation(request, *args, **kwargs)
neuroglancer.views.search_label(request, *args, **kwargs)