API Reference¶
This section provides comprehensive documentation for all HED Python tools modules and classes.
Core Modules¶
Models¶
Core data models for working with HED data:
- HedString: Represents and validates HED annotation strings
- HedTag: Individual HED tag manipulation
- HedGroup: Grouped HED annotations
- Sidecar: BIDS sidecar file handling
- TabularInput: Spreadsheet and tabular data processing
Schema¶
HED schema management and validation:
- HedSchema: Main schema class for loading and querying schemas
- HedSchemaIO: Schema input/output operations
- SchemaComparer: Compare different schema versions
Validator¶
Validation tools and error handling:
- HedValidator: Main validation engine
- ErrorReporter: Error collection and reporting
- ValidationContext: Validation state management
Tools¶
Utility tools and scripts:
- BidsTabularSummary: BIDS dataset analysis
- ReorderColumns: Spreadsheet manipulation
- TagCompareUtil: Tag comparison utilities
Errors¶
Error handling and exception classes:
- HedFileError: File-related errors
- HedExceptions: General HED exceptions
- ErrorMessages: Error message definitions
Quick Reference¶
Loading and Using Schemas¶
load_schema ¶
Load a schema from the given file or URL path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hed_path
|
str
|
A filepath or url to open a schema from. If loading a TSV file, this should be a single filename where: Template: basename.tsv, where files are named basename_Struct.tsv, basename_Tag.tsv, etc. Alternatively, you can point to a directory containing the .tsv files. |
required |
schema_namespace
|
str or None
|
The name_prefix all tags in this schema will accept. |
None
|
schema
|
HedSchema or None
|
A HED schema to merge this new file into It must be a with-standard schema with the same value. |
None
|
name
|
str or None
|
User supplied identifier for this schema |
None
|
Returns:
Name | Type | Description |
---|---|---|
HedSchema |
'HedSchema'
|
The loaded schema. |
:raises HedFileError: - Empty path passed - Unknown extension - Any fatal issues when loading the schema.
Source code in hed/schema/hed_schema_io.py
Basic Validation¶
HedString ¶
Bases: HedGroup
A HED string with its schema and definitions.
Source code in hed/models/hed_string.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
__init__ ¶
Constructor for the HedString class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hed_string
|
str
|
A HED string consisting of tags and tag groups. |
required |
hed_schema
|
HedSchema
|
The schema to use to identify tags. |
required |
def_dict
|
DefinitionDict or None
|
The def dict to use to identify def/def expand tags. |
None
|
_contents
|
[HedGroup and/or HedTag] or None
|
Create a HedString from this exact list of children. Does not make a copy. |
None
|
Notes: - The HedString object parses its component tags and groups into a tree-like structure.
Source code in hed/models/hed_string.py
validate ¶
Validate the string using the schema.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
allow_placeholders
|
bool
|
Allow placeholders in the string. |
True
|
error_handler
|
ErrorHandler or None
|
The error handler to use, creates a default one if none passed. |
None
|
Returns: list[dict]: A list of issues for HED string.
Source code in hed/models/hed_string.py
remove_definitions ¶
Remove definition tags and groups from this string.
This does not validate definitions and will blindly removing invalid ones as well.
Source code in hed/models/hed_string.py
Working with BIDS Data¶
Sidecar ¶
Contents of a JSON file or JSON files.
Source code in hed/models/sidecar.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
|
__init__ ¶
Construct a Sidecar object representing a JSON file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
files
|
str or FileLike or list
|
A string or file-like object representing a JSON file, or a list of such. |
required |
name
|
str or None
|
Optional name identifying this sidecar, generally a filename. |
None
|
Source code in hed/models/sidecar.py
validate ¶
Create a SidecarValidator and validate this sidecar with the schema.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hed_schema
|
HedSchema
|
Input data to be validated. |
required |
extra_def_dicts
|
list or DefinitionDict
|
Extra def dicts in addition to sidecar. |
None
|
name
|
str
|
The name to report this sidecar as. |
None
|
error_handler
|
ErrorHandler
|
Error context to use. Creates a new one if None. |
None
|
Returns:
Type | Description |
---|---|
list[dict]
|
list[dict]: A list of issues associated with each level in the HED string. |
Source code in hed/models/sidecar.py
extract_definitions ¶
Gather and validate definitions in metadata.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hed_schema
|
HedSchema
|
The schema to used to identify tags. |
required |
error_handler
|
ErrorHandler or None
|
The error handler to use for context, uses a default one if None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
DefinitionDict |
DefinitionDict
|
Contains all the definitions located in the sidecar. |