Note
This project is under active development but you can already use it to explore your clustering datasets. If you have any feedback or questions, please open an issue here on GitHub.
bigclust2 is a re-design of bigclust, a graphical interface for interactively exploring clusterings of high-dimensional connectomic data.
Typically this means morphological or connectivity-based embeddings but it can be used for any kind of distances or features.
Highlights:
- Interactive 2D scatter plots: Explore large clusterings interactively with zoom, pan, and selection.
- Neuroglancer-like 3D viewer: Visualize neuron morphology in a 3D viewer.
- Widgets for days: All the tools you need to explore and cluster your data: cluster methods, dimensionality reduction, fidelity metrics, feature selection, connectivity explorer, etc.
- Annotations: Push annotation straight to supported backends (e.g. Clio or SeaTable) or export them as CSV/Parquet files.
A totally reworked GUI aside, this new version also fundamentally changes how data is represented: previously, data artifacts (distances, features, etc.) had to be manually loaded and passed to BigClust widgets. For this new version, we have switched to a Neuroglancer-like approach where data sources are whole directories (local or remote) containing both the data itself as well as metadata files describing the setup. Here is a simple example structure:
/my_clustering/
info <- JSON-formatted settings for the dataset
meta.parquet <- per-neuron metadata in Parquet (recommended) or Apache Arrow Feather format
distances.parquet <- pairwise distances in Parquet (recommended) or Apache Arrow Feather format (optional)
embeddings.parquet <- low-dimensional embeddings in Parquet (recommended) or Apache Arrow Feather format (optional)
features.parquet <- high-dimensional features in Parquet (recommended) or Apache Arrow Feather format (optional)
See the Data Format documentation for details on the expected files and how to set up your project.
First make sure you have the Python package manager uv installed. Then run:
uvx --from git+https://github.com/flyconnectome/bigclust2@main bigclust2This will install the latest released version of bigclust2 from this repository and start the GUI.
Tip
Note the @main in above command? This is asking uvx to always use the latest version of bigclust2.
Because of how uvx works, this can lead to slow start-up times when there are new releases. You can
avoid this by pinning to a specific version (e.g. @0.1.0) or a specific commit (e.g. @02ea911).
Most UI elements are hopefully self-explanatory - when in doubt look for the tooltip.
-
left click to move the view
-
shift + left click to draw a selection box (add + cmd to add to selection)
-
shift + control + left click to draw a lasso selection (add + cmd to add to selection)
-
ESCto deselect all points -
Cto toggle the control panel -
Lto toggle labels -
left/right arrows increase/decrease font size of labels
-
up/down arrows increase/decrease marker size
-
double-click on a label to highlight points with the same label
-
shift + double-click on a label to select points with the same label
-
CMD/control + shift + double-click on a label to add points with the same label to the current selection
- left click + hold to rotate the view
- middle button + hold to pan
- scroll to zoom in and out
Cto toggle the legend- to align the view:
1(front),2(side),3(top)
| Error | Solution |
|---|---|
Running uvx ... fails with an error containing realpath: command not found |
If you're on Mac, make sure your OS version is at least 13.x |
- Clone this repository
cd bigclust2to change into this directoryuv run run.py --debugto start the GUI
Data sources are whole directories (local or remote) containing the data itself plus metadata files describing the setup. The full specification — the info file, the meta/distances/embeddings/features files, KNN graphs, multiple embeddings, multiple datasets, and best practices for Parquet formatting — lives in DATA_FORMAT.md.
- Enable multiple embeddings per dataset (with a dropdown to select embedding)
- Allow selecting sets of features (e.g. upstream vs downstream or isomorphic vs dimorphic connections; this could simply use the multi-columns)
- Support pushing updated annotations back to annotation backends (e.g. Clio/FlyTable)
- Add support for Graph Exploration
- Allow users to change project settings (e.g. neuroglancer sources) before or after loading
- Support loading up-to-date annotations when opening a project (e.g. from Clio or Neuprint)
- Add more detailed documentation about data formats and structure
- Caching system for remote data sources for faster start-up times
- this turns out to not really be a problem from the client side; could still implement to reduce traffic on the server side
- Support sharing figure state (e.g.
uvx bigclust --state <state_id>) - Fine-control over hover info
