Provides common functions to download and process data from the mm3 data.
Project description
MICrONS-datacleaner
This project contains tools to work with the MICrONS Cortical MM3 dataset, providing a robust interface to interact with the nucleus data.
Key features
- Simple interface to download and keep organized anatomical data via CAVEClient.
- Allows to query the synapse table in chunks avoiding common pitfalls.
- Easily process nucleus annotation tables.
- Automatically segment the brain volume into cortical layers.
- Tools for filtering and constructing connectome subsets.
- Basic interface to add functional properties, including tuning curves and selectivity.
Install 📥
pip install microns-datacleaner
Using the package ⏩
- Few lines of code to get a full table with neurons' brain area, layer, cell_type, proofreading information, and nucleus position:
#Import the lib
import microns_datacleaner as mic
#Target version and download folder
cleaner = mic.MicronsDataCleaner(datadir = "data", version=1300)
#Download the data
cleaner.download_nucleus_data()
#Process the downloaded data and segment into layers
units, segments = cleaner.process_nucleus_data()
- Filter easily! How can we get all neurons in V1, layers L2/3 and L4 with proofread axons?
units_filter = fl.filter_neurons(units, layer=['L2/3', 'L4'], proofread='ax_clean', brain_area='V1')
- Robustly download synapses between a subset of pre and post-synaptic neurons in chunks.
preids = units_filter['pt_root_id']
postids = units_filter['pt_root_id']
cleaner.download_synapse_data(preids, postids)
#Connection problems at chunk number 23? Just restart from there
cleanerdownload_synapse_data(preids, postids, start_index=23)
Check the docs and our tutorial notebook just below to get started!
Docs & Tutorials 📜
If it is the first time working with the MICrONS data, we recommend you read our basic tutorial (also available as a Python Notebook), as well as the official documentation of the MICrONS project.
If you want to contribute, please read our guidelines first. Feel free to open an issue if you find any problem.
You can find a full documentation of the API and functions in the docs.
Requirements
Dependencies
- CaveCLIENT
- Pandas
- Numpy
- Scipy
- TQDM
- Standard transform for coordinate change (MICrONS ecosystem)
Dev-dependencies
- pdoc (to generate the docs)
- ruff (to keep contributions in a consistent format)
Citation Policy 📚
If you use our code, please consider to cite the associated repository, as well as the IARPA MICrONS Minnie Project and the Microns Phase 3 NDA repository.
Our code serves as an interface for the MICrONS data. Please cite appropiate the literature for the data used following their Citation Policy. The papers may depend on the annotation tables used.
Our unit table is constructed by integrating information from the following papers:
- Functional connectomics spanning multiple areas of mouse visual cortex. The Microns Consortium. 2025
- Foundation model of neural activity predicts response to new stimulus types
- Perisomatic ultrastructure efficiently classifies cells in mouse cortex
- NEURD offers automated proofreading and feature extraction for connectomics
- CAVE: Connectome Annotation Versioning Engine
Acknowledgements
We acknowledge funding by the NextGenerationEU, in the framework of the FAIR—Future Artificial Intelligence Research project (FAIR PE00000013—CUP B43C22000800006).
Generating the docs
Go to the main folder of the repository, and run
pdoc -t docs-src/template src/microns_datacleaner/ -o docs/
The docs will be generated in the docs/ folder in HTML format, which can be checked with the browser.
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
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 microns_datacleaner-0.2.0.1.tar.gz.
File metadata
- Download URL: microns_datacleaner-0.2.0.1.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.9 Linux/6.5.0-17-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3967698f424c6757c068ce6d5d01ca37176d2ce2645c14a8672aaac2e0ae8e3
|
|
| MD5 |
34353fc35fb5feba5f719ce1a7f8f6ee
|
|
| BLAKE2b-256 |
b3e7393e2589e543ac64e46ccea5970db80e175cfe72691c6d6bd21efa66ad32
|
File details
Details for the file microns_datacleaner-0.2.0.1-py3-none-any.whl.
File metadata
- Download URL: microns_datacleaner-0.2.0.1-py3-none-any.whl
- Upload date:
- Size: 28.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.9 Linux/6.5.0-17-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90028605ee62a8ed4539467ca45a21aab4d4ae9bba0927d3cfd84757bc98f9f6
|
|
| MD5 |
8a21b27b682f492a55c0f2b80448f43f
|
|
| BLAKE2b-256 |
7ff1afa079b0fd4404104f5368ae5b681344199e7aeb4147ce23f4ece248250c
|