mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
sneakers-the-rat
be21325123
- split off generated subclasses into "include" files, not sure if that's good, but in any case we have them separable now. - more work on cleanly un-nesting scalar and 1D-vector data into attributes and lists, respectively - brought the pydantic generator in-repo to do a bunch of overrides
39 lines
986 B
YAML
39 lines
986 B
YAML
name: hdmf-common.sparse.include
|
|
id: hdmf-common.sparse.include
|
|
imports:
|
|
- hdmf-common.base
|
|
- nwb.language
|
|
- hdmf-common.sparse.include
|
|
- hdmf-common.sparse
|
|
default_prefix: hdmf-common.sparse.include/
|
|
classes:
|
|
CSRMatrix__indices:
|
|
name: CSRMatrix__indices
|
|
description: The column indices.
|
|
attributes:
|
|
indices:
|
|
name: indices
|
|
description: The column indices.
|
|
multivalued: true
|
|
range: uint
|
|
required: true
|
|
CSRMatrix__indptr:
|
|
name: CSRMatrix__indptr
|
|
description: The row index pointer.
|
|
attributes:
|
|
indptr:
|
|
name: indptr
|
|
description: The row index pointer.
|
|
multivalued: true
|
|
range: uint
|
|
required: true
|
|
CSRMatrix__data:
|
|
name: CSRMatrix__data
|
|
description: The non-zero values in the matrix.
|
|
attributes:
|
|
data:
|
|
name: data
|
|
description: The non-zero values in the matrix.
|
|
multivalued: true
|
|
range: AnyType
|
|
required: true
|