nwb_hash.py
get_file_namespaces(file_path)
¶
Get all namespace versions from an NWB file.
WARNING: This function falsely reports core <= 2.6.0 as 2.6.0-alpha
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
Union[str, Path]
|
Path to the NWB file. |
required |
Source code in src/spyglass/utils/nwb_hash.py
DirectoryHasher
¶
Source code in src/spyglass/utils/nwb_hash.py
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 | |
__init__(directory_path, batch_size=DEFAULT_BATCH_SIZE, keep_obj_hash=False, verbose=False)
¶
Generate a hash of the contents of a directory, recursively.
Searches though all files in the directory and subdirectories, hashing the contents of files. nwb files are hashed with the NwbfileHasher class. JSON files are hashed by encoding the contents, ignoring specific keys, like 'version'. All other files are hashed by reading the file in chunks.
If the contents of a json file is otherwise the same, but the 'version' value is different, we assume that the dependency change had no effect on the data and ignore the difference.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
directory_path
|
str
|
Path to the directory to hash. |
required |
batch_size
|
int
|
Limit of data to hash for large files, by default 4095. |
DEFAULT_BATCH_SIZE
|
keep_obj_hash
|
bool
|
Default false. If true, keep cache the hash of each file. |
False
|
verbose
|
bool
|
Display progress bar, by default False. |
False
|
Source code in src/spyglass/utils/nwb_hash.py
compute_hash()
¶
Hashes the contents of the directory, recursively.
Source code in src/spyglass/utils/nwb_hash.py
npy_encode(file_path)
¶
Encode the contents of a numpy file for hashing.
chunk_encode(file_path)
¶
Encode the contents of a file in chunks for hashing.
Source code in src/spyglass/utils/nwb_hash.py
json_encode(file_path)
¶
Encode the contents of a json file for hashing.
Ignores the predetermined keys in the IGNORED_KEYS list.
Source code in src/spyglass/utils/nwb_hash.py
pop_version(data)
¶
Recursively remove banned keys from any nested dicts/lists.
Source code in src/spyglass/utils/nwb_hash.py
NwbfileHasher
¶
Source code in src/spyglass/utils/nwb_hash.py
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 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | |
__init__(path, batch_size=DEFAULT_BATCH_SIZE, precision_lookup=PRECISION_LOOKUP, keep_obj_hash=False, keep_file_open=False, verbose=False, legacy_mode=False)
¶
Hashes the contents of an NWB file.
Iterates through all objects in the NWB file, hashing the names, attrs, and data of each object. Ignores NWB specifications, and only considers NWB version.
Uses a batch size to limit the amount of data hashed at once for large datasets. Rounds data to n decimal places for specific dataset names, as provided in the data_rounding dict.
Version numbers stored in '/general/source_script' are ignored.
Keeps each object hash as a dictionary, if keep_obj_hash is True. This is useful for debugging, but not recommended for large files.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Union[str, Path]
|
Path to the NWB file. |
required |
batch_size
|
int
|
Limit of data to hash for large datasets, by default 4095. |
DEFAULT_BATCH_SIZE
|
precision_lookup
|
Union[int, Dict[str, int]]
|
For dict, round data to n decimal places for specific datasets ({dataset_name: n}). If int, round all datasets to this precision. Default is to round ProcessedElectricalSeries to 4 significant digits via np.round(chunk, n). |
PRECISION_LOOKUP
|
keep_obj_hash
|
bool
|
Keep the hash of each object in the NWB file, by default False. |
False
|
verbose
|
bool
|
Display progress bar, by default False. |
False
|
legacy_mode
|
bool
|
If True, reproduce the pre-fix behavior where Dataset content is not incorporated into the hash (only object names and attribute keys/values are hashed; Dataset shape/dtype and data are excluded). Use only for comparing regenerated files against hashes computed before the bug fix. Default False. |
False
|
Source code in src/spyglass/utils/nwb_hash.py
collect_names(file)
¶
Collects all object names in the file.
Source code in src/spyglass/utils/nwb_hash.py
serialize_attr_value(value)
¶
Serializes an attribute value into bytes for hashing.
Setting all numpy array types to string avoids false positives.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Any
|
Attribute value. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Serialized bytes of the attribute value. |
Source code in src/spyglass/utils/nwb_hash.py
is_roundable(data)
¶
namespaces
cached
property
¶
Encoded string of all NWB namespace specs.
namespaces_str
cached
property
¶
String representation of all NWB namespace specs.
add_to_cache(name, obj, digest=None)
¶
Add object to the cache.
Centralizes conditional logic for adding objects to the cache.
compute_hash()
¶
Hashes the NWB file contents.