Home

Awesome

Python Version PyPI Wheel Development Status Tests codecov Code style: black

brainreg

brainreg is an update to amap (which is itself a port of the original Java software) to include multiple registration backends, and to support the many atlases provided by brainglobe-atlasapi. It also comes with an optional napari plugin if you'd rather use brainreg with through graphical interface.

Documentation for both the command-line tool and graphical interface can be found here.

For segmentation of bulk structures in 3D space (e.g. injection sites, Neuropixels probes), please see brainglobe-segmentation.

Details

The aim of brainreg is to register the template brain (e.g. from the Allen Reference Atlas) to the sample image. Once this is complete, any other image in the template space can be aligned with the sample (such as region annotations, for segmentation of the sample image). The template to sample transformation can also be inverted, allowing sample images to be aligned in a common coordinate space.

To do this, the template and sample images are filtered, and then registered in a three step process (reorientation, affine registration, and freeform registration). The resulting transform from template to standard space is then applied to the atlas.

Full details of the process are in the original aMAP paper.

An illustrated overview of the registration process

Installation

To install both the command line tool and the napari plugin, run

pip install brainreg[napari]

in your desired Python environment. To only install the command line tool with no GUI (e.g. to run brainreg on an HPC cluster), just run:

pip install brainreg

Installing on macOS

If you are using macOS, please run

conda install -c conda-forge niftyreg

in your environment before installing, to ensure all dependencies are installed.

Command line usage

Basic usage

brainreg /path/to/raw/data /path/to/output/directory -v 5 2 2 --orientation psl

Full command-line arguments are available with brainreg -h, but please get in touch if you have any questions.

Mandatory arguments

Atlas

By default, brainreg will use the 25um version of the Allen Mouse Brain Atlas. To use another atlas (e.g. for another species, or another resolution), you must use the --atlas flag, followed by the string describing the atlas, e.g.:

--atlas allen_mouse_50um

To find out which atlases are available, once brainreg is installed, please run brainglobe list. The name of the resulting atlases is the string to pass with the --atlas flag.

Input data orientation

If your data does not match the BrainGlobe default orientation (the origin voxel is the most anterior, superior, left-most voxel), then you must specify the orientation by using the --orientation flag. What follows must be a string in the brainglobe-space "initials" form, to describe the origin voxel.

If the origin of your data (first, top left voxel) is the most anterior, superior, left part of the brain, then the orientation string would be "asl" (anterior, superior, left), and you would use:

--orientation asl

Registration options

To change how the actual registration performs, see registration parameters

Additional options

Misc options

Visualising results

If you have installed the optional napari plugin, you can use napari to view your data. The plugin automatically fetches the brainglobe-napari-io which provides this functionality. If you have installed only the command-line tool you can still manually install brainglobe-napari-io and follow the steps below.

Sample space

Open napari and drag your brainreg output directory (the one with the log file) onto the napari window.

Various images should then open, including:

If you downsampled additional channels, these will also be loaded. Most of these images will not be visible by default - click the little eye icon to toggle visibility.

Note: If you use a high resolution atlas (such as allen_mouse_10um), then the files can take a little while to load.

GIF illustration of loading brainreg output into napari for visualisation

Seeking help or contributing

We are always happy to help users of our tools, and welcome any contributions. If you would like to get in contact with us for any reason, please see the contact page of our website.

Citing brainreg

If you find brainreg useful, and use it in your research, please let us know and also cite the paper:

Tyson, A. L., Vélez-Fort, M., Rousseau, C. V., Cossell, L., Tsitoura, C., Lenzi, S. C., Obenhaus, H. A., Claudi, F., Branco, T., Margrie, T. W. (2022). Accurate determination of marker location within whole-brain microscopy images. Scientific Reports, 12, 867 doi.org/10.1038/s41598-021-04676-9

Please also cite aMAP (the original pipeline from which this software is based):

Niedworok, C.J., Brown, A.P.Y., Jorge Cardoso, M., Osten, P., Ourselin, S., Modat, M. and Margrie, T.W., (2016). AMAP is a validated pipeline for registration and segmentation of high-resolution mouse brain data. Nature Communications. 7, 1–9. https://doi.org/10.1038/ncomms11879

Lastly, if you can, please cite the BrainGlobe Atlas API that provided the atlas:

Claudi, F., Petrucco, L., Tyson, A. L., Branco, T., Margrie, T. W. and Portugues, R. (2020). BrainGlobe Atlas API: a common interface for neuroanatomical atlases. Journal of Open Source Software, 5(54), 2668, https://doi.org/10.21105/joss.02668

Finally, don't forget to cite the developers of the atlas that you used (e.g. the Allen Brain Atlas)!