Please find documentation here.
To get the most out of NGLui (interacting with source info, uploading skeletons, and more), we suggest installing the full version of NGLui, which includes the cloud-volume
dependency:
pip install nglui[full]
You can also install a more minimal version of NGLui without the cloud-volume dependency:
pip install nglui
However, note that cloud-volume is required for some features such as uploading skeletons and getting information about sources during state generation.
Here, let's use the Hemibrain dataset information to build a Neuroglancer state.
from nglui import statebuilder
viewer_state = (
statebuilder.ViewerState(dimensions=[8,8,8])
.add_image_layer(
source='precomputed://gs://neuroglancer-janelia-flyem-hemibrain/emdata/clahe_yz/jpeg',
name='emdata'
)
.add_segmentation_layer(
source='precomputed://gs://neuroglancer-janelia-flyem-hemibrain/v1.2/segmentation',
name='seg',
segments=[5813034571],
)
.add_annotation_layer(
source='precomputed://gs://neuroglancer-janelia-flyem-hemibrain/v1.2/synapses',
linked_segmentation={'pre_synaptic_cell': 'seg'},
filter_by_segmentation=True,
color='tomato',
)
)
viewer_state.to_link(target_url='https://hemibrain-dot-neuroglancer-demo.appspot.com')
This will return the link: Neuroglancer link.
NGLui also has additional features such as:
- CAVE: Broad integrations with existing CAVE tooling.
- Parser: Parse neuroglancer states to extract information about layers and annotations.
- SegmentProperties: Easily build segment property lists from data to make segmentation views more discoverable.
- SkeletonManager: Upload skeletons to cloud buckets and push quickly into neuroglancer (requires cloud-volume, see Installation).
- Shaders: Support for better default shaders for neuroglancer layers.
If you want to clone the repository and develop on NGLui, note that it uses uv for development and packaging, material for mkdocs for documentation, and pre-commit with ruff for code quality checks.
Poe-the-poet is used to simplify repetitive tasks, and you can run poe help
to see the available tasks.
If you are migrating from nglui
v3.x to v4.0.0+, you will need to dramatically update your code.
First and foremost, nglui
now only works with contemporary versions of neuroglancer, not the older Seung-lab version.
If you still need to support the older deployment, do not upgrade.
Please read the new usage documentation!
The main change is that it is now recommended to create states directly where possible, and there are now many more convenience functions.
Instead of making a bunch of layer configs, now you make a ViewerState
object and directly add layers and their information with functions like add_image_layer
, add_segmentation_layer
, and add_annotation_layer
.
Instead of always mapping annotation rules and data separately, you can now directly add annotation data through functions like add_points
and then export with functions like to_url
.
You can still use the old pattern of rendering a state and mapping data with DataMap objects.
A new "pipeline" pattern makes it more efficient to build complex states in a smaller number of lines of code.