I am not sure if STAR has this requirement - but cif does. loop,, data, save etc. are case insensitive.
_Category.Sf_framecode Data_set
I believe Data_set needs to be quoted as Data_ is interpreted as the start of a new data block.
pynmrstar checks for case insensitive for the start of the file
if not self.token.lower().startswith("data_"):
so it appears that case sensitivity is there. It is just the used of RESERVED_TOKENS in which it is case sensitive.
So - I am not sure what the NMR* DDL allows for here - but quoting would be safest.
I am not sure if STAR has this requirement - but cif does. loop,, data, save etc. are case insensitive.
_Category.Sf_framecode Data_set
I believe Data_set needs to be quoted as Data_ is interpreted as the start of a new data block.
pynmrstar checks for case insensitive for the start of the file
if not self.token.lower().startswith("data_"):
so it appears that case sensitivity is there. It is just the used of RESERVED_TOKENS in which it is case sensitive.
So - I am not sure what the NMR* DDL allows for here - but quoting would be safest.