https://github.com/hdmf-dev/hdmf-common-schema
Specifications for pre-defined data structures provided by HDMF.
https://github.com/hdmf-dev/hdmf-common-schema
Last synced: about 2 months ago
JSON representation
Specifications for pre-defined data structures provided by HDMF.
- Host: GitHub
- URL: https://github.com/hdmf-dev/hdmf-common-schema
- Owner: hdmf-dev
- License: other
- Created: 2019-08-19T19:13:22.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-01-16T18:08:52.000Z (4 months ago)
- Last Synced: 2025-01-31T14:48:22.998Z (4 months ago)
- Homepage: https://hdmf-common-schema.readthedocs.io/en/latest/
- Size: 271 KB
- Stars: 3
- Watchers: 6
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# hdmf-common
Documentation of the HDMF Common data format specification is available at
[https://hdmf-common-schema.readthedocs.io](https://hdmf-common-schema.readthedocs.io/en/stable/)## Citing HDMF Common Schema
* **RRID:** HDMF Common Schema, RRID:SCR_021342
## Description
The HDMF Common specification defines a collection of common, reusable data structures
that build the foundation for the modeling of advanced data formats, e.g., the
[Neurodata Without Borders (NWB)](https://www.nwb.org/)
neurophysiology data standard. The HDMF Common schema is integrated with [HDMF](https://github.com/hdmf-dev/hdmf),
which provides advanced APIs for reading, writing, and using HDMF-common data types.The HDMF-common schema provides the following data structures:
- **DynamicTable**: A column-based table data structure that supports ragged columns and one-to-one and one-to-many relationships.
- **VectorData**: A data structure for representing a column of a **DynamicTable**.
- **VectorIndex**: A data structure for indexing a **VectorData**. This is used to store one-to-many relationships.
- **ElementIdentifiers**: A 1D array for storing primary identifiers for elements of a table.
- **DynamicTableRegion**: A data structure for linking to a row or set of rows of a **DynamicTable**.
- **AlignedDynamicTable**: A **DynamicTable** that supports storing a collection of sub-tables.
- **CSRMatrix**: A compressed sparse row matrix.The schema also provides the following base data structures:
- **Data**: An abstract data type for a dataset.
- **Container**: An abstract data type for a generic container storing collections of data and metadata, i.e., a group.
- **SimpleMultiContainer**: A simple container that holds multiple ``Data`` and ``Container`` types.Finally, HDMF-common contains experimental data structures. Prior to adding a new data type to the HDMF-common
specification, new data structures are added to the HDMF-experimental to enable users to experiment with these data
structures. Because these data structures are experimental, they are not guaranteed to maintain backward compatibility,
and may never make it into HDMF-common.Current experimental data types are:
- **ExternalResources**: A data structure that contains row-based compound-data tables for storing ontology information
and other external resource references.
- **EnumData**: A data structure for representing a column where the data come from a fixed set of elements.## Generate documentation
```bash
pip install -r requirements-doc.txt
cd docs
make fulldoc
```