A lightweight python module to interact with atlases for systems neuroscience
Project description
BG-atlasAPI
The brainglobe atlas API (BG-AtlasAPI) provides a common interface for programmers to download and process brain atlas data from multiple sources.
Atlases available
A number of atlases are in development, but those available currently are:
- Allen Mouse Brain Atlas at 10, 25, 50 and 100 micron resolutions
- Allen Human Brain Atlas at 100 micron resolution
- Max Planck Zebrafish Brain Atlas at 1 micron resolution
- Enhanced and Unified Mouse Brain Atlas at 10, 25, 50 and 100 micron resolutions
- Smoothed version of the Kim et al. mouse reference atlas at 10, 25, 50 and 100 micron resolutions
- Gubra's LSFM mouse brain atlas at 20 micron resolution
- 3D version of the Allen mouse spinal cord atlas at 20 x 10 x 10 micron resolution
- AZBA: A 3D Adult Zebrafish Brain Atlas at 4 micron resolution
- Waxholm Space atlas of the Sprague Dawley rat brain at 39 micron resolution
- 3D Edge-Aware Refined Atlases Derived from the Allen Developing Mouse Brain Atlases (E13, E15, E18, P4, P14, P28 & P56)
- Princeton Mouse Brain Atlas at 20 micron resolution
- Kim Lab Developmental CCF (P56) at 10 micron resolution with 8 reference images - STP, LSFM (iDISCO) and MRI (a0, adc, dwo, fa, MTR, T2)
Installation
BG-AtlasAPI works with Python >3.6, and can be installed from PyPI with:
pip install bg-atlasapi
Usage
Full information can be found in the documentation
Python API
List of atlases
To see a list of atlases use bg_atlasapi.show_atlases
from bg_atlasapi import show_atlases
show_atlases()
# Brainglobe Atlases
# ╭──────────────────────────────────┬────────────┬───────────────┬──────────────╮
# │ Name │ Downloaded │ Local version │ Latest │
# │ │ │ │ version │
# ├──────────────────────────────────┼────────────┼───────────────┼──────────────┤
# │ allen_human_500um │ ✔ │ 0.1 │ 0.1 │
# │ mpin_zfish_1um │ ✔ │ 0.3 │ 0.3 │
# │ allen_mouse_50um │ ✔ │ 0.3 │ 0.3 │
# │ kim_unified_25um │ ✔ │ 0.1 │ 0.1 │
# │ allen_mouse_25um │ ✔ │ 0.3 │ 0.3 │
# │ allen_mouse_10um │ ✔ │ 0.3 │ 0.3 │
# │ example_mouse_100um │ --- │ --- │ 0.3 │
# ╰──────────────────────────────────┴────────────┴───────────────┴──────────────╯
Using the atlases
All the features of each atlas can be accessed via the BrainGlobeAtlas
class.
e.g. for the 25um Allen Mouse Brain Atlas:
from bg_atlasapi.bg_atlas import BrainGlobeAtlas
atlas = BrainGlobeAtlas("allen_mouse_25um")
The various files associated with the atlas can then be accessed as attributes of the class:
# reference image
reference_image = atlas.reference
print(reference_image.shape)
# (528, 320, 456)
# annotation image
annotation_image = atlas.annotation
print(annotation_image.shape)
# (528, 320, 456)
# a hemispheres image (value 1 in left hemisphere, 2 in right) can be generated
hemispheres_image = atlas.hemispheres
print(hemispheres_image.shape)
# (528, 320, 456)
Brain regions
There are multiple ways to work with individual brain regions. To see a dataframe of each brain region, with it's unique ID, acronym and full name, use atlas.lookup_df
:
atlas.lookup_df.head(8)
# acronym id name
# 0 root 997 root
# 1 grey 8 Basic cell groups and regions
# 2 CH 567 Cerebrum
# 3 CTX 688 Cerebral cortex
# 4 CTXpl 695 Cortical plate
# 5 Isocortex 315 Isocortex
# 6 FRP 184 Frontal pole, cerebral cortex
# 7 FRP1 68 Frontal pole, layer 1
Each brain region can also be access by the acronym, e.g. for primary visual cortex (VISp):
from pprint import pprint
VISp = atlas.structures["VISp"]
pprint(VISp)
# {'acronym': 'VISp',
# 'id': 385,
# 'mesh': None,
# 'mesh_filename': PosixPath('/home/user/.brainglobe/allen_mouse_25um_v0.3/meshes/385.obj'),
# 'name': 'Primary visual area',
# 'rgb_triplet': [8, 133, 140],
# 'structure_id_path': [997, 8, 567, 688, 695, 315, 669, 385]}
Note on coordinates in bg-atlasapi
Working with both image coordinates and cartesian coordinates in the same space can be confusing! In bg-atlasapi
, the origin is always assumed to be in the upper left corner of the image (sectioning along the first dimension), the "ij" convention. This means that when plotting meshes and points using cartesian systems, you might encounter confusing behaviors coming from the fact that in cartesian plots one axis is inverted with respect to ij coordinates (vertical axis increases going up, image row indexes increase going down). To make things as consistent as possible, in bg-atlasapi
the 0 of the meshes coordinates is assumed to coincide with the 0 index of the images stack, and meshes coordinates increase following the direction stack indexes increase.
To deal with transformations between your data space and bg-atlasapi
, you might find the brainglobe-space package helpful.
Contributing to bg-atlasapi
Contributors to bg-atlaspi are absolutely encouraged, whether you want to fix bugs, add/request new features or simply ask questions.
If you would like to contribute to bg-atlasapi
(or any of the downstream tools like brainrender etc.) please get in touch by opening a new issue or pull request on GitHub. Please also see the developers guide.
Someone might have already asked a question you might have, so if you're not sure where to start, check out the issues (and the issues of the other repositories).
Citation
If you find the BrainGlobe Atlas API useful, please cite the paper in your work:
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
Don't forget to cite the developers of the atlas that you used!
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file bg-atlasapi-1.0.3.tar.gz
.
File metadata
- Download URL: bg-atlasapi-1.0.3.tar.gz
- Upload date:
- Size: 30.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e45e5205b36af12acd673e25410257aac32e25273d8b2d443ae622325482f3c |
|
MD5 | 5c4364031eecf9dbcd34f1ae3e441fd3 |
|
BLAKE2b-256 | 75395738fde3d340fc99b8a3b3edeb211a068882dd47b1672b4e0526a2230667 |
File details
Details for the file bg_atlasapi-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: bg_atlasapi-1.0.3-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b17407626bd5a62f9ec74e3324618e301c44dc58105d2f7a37d2de92de54d291 |
|
MD5 | 089bd8b9e6310f4d75db1e7493798333 |
|
BLAKE2b-256 | 1fd1f08607b49f6905148051e0391369c8e898fc62b2cc56d7693b65db175e30 |