AIND IBL Ephys Alignment Preprocessing
Preprocessing pipeline that prepares SmartSPIM histology and Neuropixels electrophysiology data for the IBL ephys alignment GUI. It registers histology volumes to the Allen Common Coordinate Framework (CCF), converts Neuroglancer probe-track annotations into atlas coordinates, and optionally extracts spike-sorted ephys data into IBL ALF format.
Installation
From PyPI:
pip install aind-ibl-ephys-alignment-preprocessing
From source:
git clone https://github.com/AllenNeuralDynamics/aind-ibl-ephys-alignment-preprocessing.git
cd aind-ibl-ephys-alignment-preprocessing
pip install .
Quick start
The package provides a CLI entry point, aind-ibl-preprocess:
aind-ibl-preprocess \
--data-root /path/to/data \
--results-root /path/to/results \
--neuroglancer neuroglancer.json \
--manifest manifest.csv
CLI options
| Flag | Description |
|---|---|
--data-root PATH |
(required) Root directory containing all input data |
--results-root PATH |
(required) Root directory for output |
--neuroglancer PATH |
(required) Neuroglancer JSON file (absolute, or relative to data_root) |
--manifest PATH |
(required) Manifest CSV file (absolute, or relative to data_root) |
--scratch-root PATH |
Scratch directory for temporary files (default: system temp) |
--skip-ephys |
Skip electrophysiology extraction |
--validate-only |
Run pre-flight validation checks and exit |
--datapackage-only |
Regenerate datapackage.json from existing outputs without rerunning histology or ephys preprocessing |
--source-results PATH |
Existing results asset/root or mouse output directory to copy into results_root before --datapackage-only regeneration |
--async |
Run the pipeline asynchronously with concurrency |
Validation
Before running the full pipeline, you can check that all required inputs are present and correctly structured:
aind-ibl-preprocess \
--data-root /path/to/data \
--results-root /path/to/results \
--neuroglancer neuroglancer.json \
--manifest manifest.csv \
--validate-only
This checks file existence, manifest structure, reference data availability, disk space (warns below 50 GB, errors below 10 GB), and available RAM (minimum 8 GB).
Regenerating only datapackage.json
If preprocessing has already produced the histology/ephys outputs, you can rewrite just the datapackage metadata:
aind-ibl-preprocess \
--data-root /path/to/data \
--results-root /path/to/results \
--neuroglancer neuroglancer.json \
--manifest manifest.csv \
--datapackage-only
This path rediscovers asset metadata, infers successful manifest rows from
existing xyz_picks*.json outputs, validates referenced files, and writes a
fresh datapackage.json. It does not rerun ANTs transforms, zarr reads, probe
track conversion, or ephys extraction.
On Code Ocean, previous /results assets are immutable when attached back to a
new capsule. Attach the old preprocessed results asset under /data, then copy
it into the new run's /results before rewriting the datapackage:
aind-ibl-preprocess \
--data-root /data \
--results-root /results \
--neuroglancer neuroglancer.json \
--manifest manifest.csv \
--datapackage-only \
--source-results /data/<old_preprocessed_results_asset>
--source-results may point either at the prior results asset root, containing
<mouseid>/datapackage.json, or directly at the <mouseid> output directory.
Python API
The package exposes a small public API:
from aind_ibl_ephys_alignment_preprocessing import (
PipelineConfig,
run_pipeline,
run_pipeline_async,
)
config = PipelineConfig(
data_root="/path/to/data",
results_root="/path/to/results",
neuroglancer_file="neuroglancer.json",
manifest_csv="manifest.csv",
skip_ephys=False, # set True to skip ephys extraction
desired_voxel_size_um=25.0, # multiscale zarr level selection
num_parallel_jobs=4, # parallel workers for ephys
)
# Synchronous
results = run_pipeline(config)
# Asynchronous (structured concurrency with TaskGroups)
import asyncio
results = asyncio.run(run_pipeline_async(config))
Each element of results is a ProcessResult containing the probe ID,
recording ID, list of files written, and an optional skip reason.
Input data requirements
Data root layout
All input paths can be absolute or relative to data_root. The expected
directory structure is:
data_root/
|
|-- neuroglancer.json
|-- manifest.csv
|
|-- smartspim_lca_template/
| +-- smartspim_lca_template_25.nii.gz
|
|-- allen_mouse_ccf/
| +-- average_template/
| +-- average_template_25.nii.gz
|
|-- allen_mouse_ccf_annotations_lateralized_compact/
| |-- ccf_2017_annotation_25_lateralized_compact.nrrd
| +-- ccf_2017_annotation_25_lateralized_unique_vals.npz
|
|-- iblatlas_allenatlas/
| +-- ...
|
|-- spim_template_to_ccf/
| |-- syn_0GenericAffine.mat
| +-- syn_1InverseWarp.nii.gz
|
|-- <smartspim_asset>/
| |-- image_tile_fusing/
| | +-- OMEZarr/
| | |-- <registration_channel>.zarr/
| | +-- <additional_channels>.zarr/
| +-- image_atlas_alignment/
| +-- <registration_channel_stem>/
| |-- ls_to_template_SyN_0GenericAffine.mat
| +-- ls_to_template_SyN_1InverseWarp.nii.gz
|
|-- <sorted_recording>/
| +-- ... (spike sorting output)
|
+-- **/<probe_file>.json
Each of these is described in detail below.
Manifest CSV
A CSV file describing how histology tracks map onto ephys collections. Each row represents one histology track (or one histology shank) mapped to one ephys collection and ephys shank.
The contract is declared once in types.MANIFEST_COLUMNS and drives both the
parser and pre-flight validation, so what a run accepts cannot drift from what
validation demands. Optional columns are never required: a manifest written
before a column existed stays valid.
Required columns:
| Column | Description |
|---|---|
mouseid |
Mouse identifier. All rows must reference the same mouse. |
sorted_recording |
Name of the spike-sorted recording folder under data_root. The recording ID is derived by stripping a _sorted suffix if present. |
probe_file |
Basename (without extension) of the Neuroglancer annotation file. Resolved via glob */<probe_file>.<annotation_format> under data_root. |
histology_track_id |
Neuroglancer layer / histology track identifier. Legacy alias: probe_id. |
ephys_collection |
Ephys ALF output folder produced by aind-ephys-ibl-gui-conversion (for example ProbeA). Legacy alias: probe_name. |
Optional columns:
| Column | Default | Description |
|---|---|---|
annotation_format |
json |
File extension for the annotation file (lowercase). |
logical_probe |
ephys_collection |
Physical/logical probe identity. Split quadbase streams can share one logical_probe while using different ephys_collection values. |
histology_shank |
probe_shank |
0-based shank index in the physical/histology probe. |
ephys_shank |
probe_shank, else histology_shank |
0-based shank index within ephys_collection. For split quadbase streams this is usually 0 even when histology_shank is 0..3. |
probe_id |
legacy | Alias for histology_track_id. |
probe_name |
legacy | Alias for ephys_collection. |
probe_shank |
legacy | Alias for both histology_shank and ephys_shank. |
surface_finding |
null | Path (relative to data_root) to a surface-finding file. |
registration_asset |
null | Path (relative to data_root) to a registration directory holding the ls_to_template_SyN_* transforms to use instead of the stitched asset's own -- e.g. SmartSPIM_750108_reg/ccf_Ex_639_Em_667. Per-brain: replicated across rows like mouseid, and rows must agree. The registration channel is taken from the directory name (a leading ccf_ is stripped), so the histology volume is built from the channel the transforms were computed from rather than the one processing.json names. |
Constraints:
- All rows must have the same
mouseid. - The tuple
(mouseid, histology_track_id, histology_shank)must be unique. - The tuple
(recording_id, ephys_collection, histology_shank)must be unique for GUI filename generation. - The tuple
(recording_id, ephys_collection, ephys_shank)must be unique for ephys shank mapping. - For single-stream multi-shank probes, multiple rows share one
ephys_collectionand differ inephys_shank. - For split quadbase probes, multiple rows can share one
logical_probebut use differentephys_collectionvalues; each collection can haveephys_shank=0.
Example:
mouseid,sorted_recording,probe_file,histology_track_id,logical_probe,ephys_collection,histology_shank,ephys_shank
mouse001,2024-06-01_rec_sorted,track_annotations_probeA,A0001,probeA,ProbeA,,
mouse001,2024-06-01_rec_sorted,track_annotations_probeB_shank0,B0001,probeB,ProbeB,0,0
mouse001,2024-06-01_rec_sorted,track_annotations_probeB_shank1,B0001,probeB,ProbeB,1,1
mouse001,2024-06-01_rec_sorted,track_annotations_quad_shank3,Q0001,quad0,ProbeD,3,0
Neuroglancer JSON
A Neuroglancer state JSON file that contains image source URIs pointing to the SmartSPIM OME-Zarr volumes. The pipeline extracts the first image source URI to locate the SmartSPIM asset directory and discover the registration channel and any additional channels.
The asset directory must contain:
image_tile_fusing/OMEZarr/<channel>.zarr/-- fused OME-Zarr volumesimage_atlas_alignment/<registration_channel_stem>/-- ANTs registration outputs: the light-sheet to template affine and inverse warp
Reference volumes
These files are required for atlas registration. Default paths are relative to
data_root and can be overridden in PipelineConfig.
| File | Default path | Format | Description |
|---|---|---|---|
| SmartSPIM LCA template | smartspim_lca_template/smartspim_lca_template_25.nii.gz |
NIfTI (.nii.gz) | 25 um SmartSPIM template volume |
| CCF average template | allen_mouse_ccf/average_template/average_template_25.nii.gz |
NIfTI (.nii.gz) | Allen CCF average template at 25 um |
| CCF lateralized labels | allen_mouse_ccf_annotations_lateralized_compact/ccf_2017_annotation_25_lateralized_compact.nrrd |
NRRD | Lateralized CCF annotation labels at 25 um |
| CCF label lookup | allen_mouse_ccf_annotations_lateralized_compact/ccf_2017_annotation_25_lateralized_unique_vals.npz |
NumPy (.npz) | Unique label values for the annotation volume |
| IBL atlas histology | iblatlas_allenatlas/ |
Directory | IBL atlas histology data used by iblatlas.AllenAtlas |
| Template-to-CCF transforms | spim_template_to_ccf/ |
Directory | ANTs SyN registration outputs (syn_0GenericAffine.mat, syn_1InverseWarp.nii.gz) |
Probe annotation files
Per-probe Neuroglancer point annotation files. For each row in the manifest,
the pipeline searches data_root for a file matching the glob pattern
*/<probe_file>.<annotation_format> (e.g., */track_annotations_probeA.json).
These files contain 3D point annotations marking the probe track in the SmartSPIM image space. They are converted through the transform chain:
Neuroglancer pixels --> SPIM (LPS) --> Template --> CCF (LPS/um) --> Bregma (IBL)
Electrophysiology data
Unless --skip-ephys is passed, the pipeline expects spike-sorted data at
data_root/<sorted_recording>/ for each unique recording in the manifest. The
ephys extraction (delegated to
aind-ephys-ibl-gui-conversion)
converts this into IBL ALF format (e.g., spikes.times.npy,
spikes.clusters.npy, channels.localCoordinates.npy, etc.).
Ephys extraction runs once per unique recording ID (deduplicated across manifest rows).
Output structure
All outputs are written under results_root/<mouseid>/:
results_root/
|-- manifest.csv # Copy of input manifest
+-- <mouseid>/
|-- ccf_space_histology/ # QC only (emit_qc); GUI never reads it
| +-- histology_<channel>.nrrd # Additional channels in CCF space
|
|-- image_space_histology/
| |-- histology_registration.nrrd # Registration channel in image space
| |-- histology_registration_pipeline.nrrd
| |-- ccf_in_mouse.nrrd # CCF template warped to image space
| +-- labels_in_mouse.nrrd # CCF labels warped to image space
|
|-- track_data/
| |-- spim/<probe_id>.* # Track coordinates in SPIM space
| |-- template/<probe_id>.* # Track coordinates in template space
| |-- ccf/<probe_id>.* # Track coordinates in CCF space
| |-- bregma_xyz/<probe_id>.* # Track coordinates in IBL bregma space
| +-- datapackage.json # Machine-readable output manifest
|
+-- <recording_id>/
+-- <ephys_collection>/
|-- xyz_picks.json # Probe track picks (CCF coordinates)
|-- xyz_picks_image_space.json # Probe track picks (image space)
|-- xyz_picks_shank<N>.json # Per-shank picks (multi-shank only)
|-- channels.localCoordinates.npy # Ephys channel table
|-- channels.rawInd.npy
|-- channels.contactId.npy # Optional; new ephys conversion outputs
|-- channels.shankInd.npy
+-- band_corr/ # Full matrices + row_channels.json
The datapackage.json file contains a structured manifest of all outputs,
including transform chain paths, histology volume paths, and per-probe
metadata. It can be loaded back with:
from aind_ibl_ephys_alignment_preprocessing.datapackage import load_datapackage
dp = load_datapackage("/path/to/datapackage.json")
Pipeline overview
The pipeline performs the following steps:
- Asset discovery -- Parse the Neuroglancer JSON to locate the SmartSPIM OME-Zarr volumes and ANTs registration outputs.
- Validation -- Check that all required inputs exist and are correctly structured.
- Histology processing -- Reorient the registration channel to CCF space, export additional channels, and compute inverse transforms (CCF template and labels warped back to image space).
- Probe processing -- For each manifest row, load the Neuroglancer point
annotations and convert them through the transform chain (SPIM -> template
-> CCF -> bregma), writing coordinate files at each stage and producing
xyz_picks.jsonfiles for the alignment GUI. - Ephys extraction (optional) -- Convert spike-sorted data into IBL ALF format.
- Manifest generation -- Write
datapackage.jsonsummarizing all outputs.
Adapting to your own data
If you are not using the AIND SmartSPIM pipeline but want to use this package with your own histology and ephys data, the key requirements are:
- OME-Zarr volumes -- Your fused histology images must be in OME-Zarr format, discoverable via a Neuroglancer JSON state file.
- ANTs registration outputs -- You need ANTs SyN registration transforms
mapping your histology images to a common template and from that template to
the Allen CCF. The pipeline expects standard ANTs output files
(
*_0GenericAffine.mat,*_1InverseWarp.nii.gz). - Reference volumes -- The Allen CCF template, lateralized annotation
labels, and the SmartSPIM LCA template at 25 um resolution. These can be
overridden in
PipelineConfigif your paths differ from the defaults. - Probe annotations -- Neuroglancer point annotation JSON files marking probe tracks in histology image space.
- Spike-sorted data (optional) -- If you want ephys extraction, provide spike-sorted output compatible with aind-ephys-ibl-gui-conversion.
The coordinate convention used throughout is the IBL convention: x = ML (right positive), y = AP (anterior positive), z = DV (dorsal positive), with origin at bregma, in meters.
Development
To develop the code, run:
uv sync
Please test your changes using the full linting and testing suite:
./scripts/run_linters_and_checks.sh -c
Or run individual commands:
uv run --frozen ruff format # Code formatting
uv run --frozen ruff check # Linting
uv run --frozen mypy # Type checking
uv run --frozen interrogate -v src # Documentation coverage
uv run --frozen codespell --check-filenames # Spell checking
uv run --frozen pytest --cov aind_ibl_ephys_alignment_preprocessing # Tests with coverage
Documentation
sphinx-build -b html docs/source/ docs/build/html
License
This project is licensed under the MIT License - see the LICENSE file for details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aind_ibl_ephys_alignment_preprocessing-0.4.0.tar.gz.
File metadata
- Download URL: aind_ibl_ephys_alignment_preprocessing-0.4.0.tar.gz
- Upload date:
- Size: 415.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3e1c76346c448093684d8daff4437ac9dbabdb7873fa14e9588d1a0b6d7c184
|
|
| MD5 |
736a63abe296ad1cc27d02e4dd00d2bd
|
|
| BLAKE2b-256 |
d5753ef39b7ba8a91ee5ebc59371bf361cdc49d3582379cc70086d8c272bff2f
|
File details
Details for the file aind_ibl_ephys_alignment_preprocessing-0.4.0-py3-none-any.whl.
File metadata
- Download URL: aind_ibl_ephys_alignment_preprocessing-0.4.0-py3-none-any.whl
- Upload date:
- Size: 114.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdb0960a7cc860b567b886d8e44609e31c72f04230d294d52eedd89d5de48b40
|
|
| MD5 |
2b78bfe238483b13e9c3172825a6713d
|
|
| BLAKE2b-256 |
445359a60343e92189b8d5244c89272ad219acb98786fe4503cd695746855151
|