Read/write/validate/query BIDS datasets
Project description
ancpBIDS Technical Overview
Key Features
-
BIDS Dataset Loading
Load BIDS datasets of any size or complexity, with support for multiple BIDS schema versions. -
Flexible Query Engine
Query files, folders, and metadata using a powerful, Pythonic API. Supports entity-based, scope-based, and custom queries. -
Validation
Validate datasets against the BIDS specification and custom rules using a plugin-based validation system. -
Writing and Derivatives
Write and update BIDS datasets, including support for creating and saving BIDS derivatives. -
Lazy Loading
Efficiently handle large datasets with optional lazy loading, reducing memory usage and speeding up initial access. -
Plugin Architecture
Extend or customize core functionality (validation, file handling, schema, etc.) via a robust plugin system. -
PyBIDS Compatibility Layer
Drop-in compatibility for manypybidsAPI calls, easing migration from or integration with existing codebases. -
Synthetic and Real Data Support
Works with both synthetic test datasets and real-world BIDS datasets. -
CI/CD Ready
Includes a comprehensive suite of automated and manual tests, with synthetic datasets for reproducibility. -
Extensible and Versioned Schema
Supports multiple BIDS schema versions and allows for easy extension as the BIDS standard evolves.
Architecture
ancpBIDS is a modular Python library for reading, querying, validating, and writing BIDS datasets. Its architecture is designed for extensibility and maintainability, with the following key components:
-
Core Models:
The core BIDS data model is implemented inancpbids/model_base.pyand versioned model files (e.g.,model_v1_8_0.py). These define the schema and object graph for BIDS datasets. -
Plugin System:
The plugin mechanism (seeancpbids/plugin.py) allows for dynamic extension of core functionality. Plugins can hook into schema modification, dataset processing, file handling, writing, and validation. -
Query Engine:
The query logic is implemented inancpbids/query.py, providing flexible access to dataset contents and metadata. -
Compatibility Layer:
ancpbids/pybids_compat.pyprovides compatibility with the pybids API for easier migration and integration. -
Utilities:
Helper functions and utilities are inancpbids/utils.py. -
Testing:
Thetests/directory is organized intoauto(CI-safe) andmanual(non-deterministic or performance) tests, with synthetic datasets undertests/data/.
Plugin System
The plugin system is a core feature for extensibility:
-
Plugin Types:
SchemaPlugin: Modify or extend the BIDS schema.DatasetPlugin: Operate on in-memory dataset graphs.FileHandlerPlugin: Register custom file readers/writers.WritingPlugin: Add files/folders during dataset writing.ValidationPlugin: Add custom validation rules.
-
Registration and Discovery:
Plugins are registered viaregister_pluginor discovered withload_plugins_by_package. They are prioritized by arankingvalue. -
Execution:
At key points (e.g., dataset load, write, validate), the system retrieves and executes all relevant plugins usingget_plugins. -
How to Add a Plugin:
- Subclass the appropriate plugin base class from
plugin.py. - Implement the required
executemethod. - Register your plugin using
register_pluginor by placing it in a discoverable package.
- Subclass the appropriate plugin base class from
Versioning and Schema Evolution
- The codebase supports multiple BIDS schema versions, with separate model files for each version.
- The schema is loaded dynamically based on the dataset version, allowing for forward compatibility.
Testing and CI
- Unit Tests:
Located intests/auto/, these are run automatically in CI. - Manual/Performance Tests:
Located intests/manual/, these are for benchmarking or non-deterministic checks. - Synthetic Data:
All tests use synthetic datasets intests/data/to ensure reproducibility.
Developer Guidelines
- Extending the Model:
Add new schema versions as new files inancpbids/, following the pattern of existing model files. - Adding Plugins:
Follow the plugin system described above. - Testing:
Add new tests totests/auto/for CI-safe code, and totests/manual/for performance or integration tests. - Documentation:
UpdateREADME.mdand docstrings for any new features or changes.
Code Quality
- The codebase uses type hints and docstrings for clarity.
- Contributions should follow PEP8 and include tests and documentation.
Further Reading
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 ancpbids-0.3.1.tar.gz.
File metadata
- Download URL: ancpbids-0.3.1.tar.gz
- Upload date:
- Size: 97.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
795be4aa1fd52f77a7ab906af14421dbcbbaea649d97b61d7ffec43f8ea38121
|
|
| MD5 |
bb704520eb6172de34d5c69f0e55b8b8
|
|
| BLAKE2b-256 |
b954190fa34f193366f2e44beb602ce44519b24f5cb8bc95fefe344866cf682c
|
File details
Details for the file ancpbids-0.3.1-py3-none-any.whl.
File metadata
- Download URL: ancpbids-0.3.1-py3-none-any.whl
- Upload date:
- Size: 89.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c7e6707116f6d85d4286aab1c189fec15d11eb1cde1e7dec533dc7897a86814
|
|
| MD5 |
c57d059e2342c685dd2630489f5fd2f8
|
|
| BLAKE2b-256 |
d2e205cf3dc3c5f0e72d5bd3c2f6c03f2dcf20d9953890f779cfb413f96090ee
|