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
Strings are supported in echtvar by storing an integer index into the list of unique strings. Currently, strings aren't really supported, but
we could pre-populated constants, e.g. for FILTER so, e.g.:
PASS = 0
FAIL = 1
QC = 2
...
then the `echtvar anno expression could use:
FILTER == PASS
but this could lead to collisions so instead we will use:
FILTER == FILTER__PASS
The text was updated successfully, but these errors were encountered:
Strings are supported in
echtvar
by storing an integer index into the list of unique strings. Currently, strings aren't really supported, butwe could pre-populated constants, e.g. for FILTER so, e.g.:
then the `echtvar anno expression could use:
but this could lead to collisions so instead we will use:
The text was updated successfully, but these errors were encountered: