You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model_template - Used to reference a template or cla.... When there is no applicable model template for a given model type (i.e. model_type=virtual) it is assigned a value of NULL.
I can't find it explicitly in the spec of HDF5 but if you try to save None to an HDF5 dataset, it will be saved as an empty string. My question is there an agreement on how to represent NULL values in SONATA?
The text was updated successfully, but these errors were encountered:
asanin-epfl
changed the title
How to representat NULL in datasets of SONATA?
How to represent NULL in datasets of SONATA?
Jul 16, 2020
mgeplf
pushed a commit
to BlueBrain/voxcell
that referenced
this issue
Mar 1, 2022
Because HDF5 does not have a value for NULL, we can't save such values.
Upon saving None is saved as '' which is not correct. See
AllenInstitute/sonata#122 for discussion.
Change-Id: Ib7ab8484d465727d74d0a5f323956374ad8e19b2
From the spec:
I can't find it explicitly in the spec of HDF5 but if you try to save
None
to an HDF5 dataset, it will be saved as an empty string. My question is there an agreement on how to represent NULL values in SONATA?The text was updated successfully, but these errors were encountered: