Closed jamesgardner1421 closed 3 years ago
Funny you mention this, I just found the same issue. Fix coming shortly…
Should now be fixed. I'll do another patch release after a bit more testing.
Seems to work so I'm tagging a patch release now. Thanks for reporting, and do re-open if there's still a problem.
Hi again I think I've found another issue.
When you add a second atom to the test file:
and then read the positions:
The positions are in read in the incorrect order. You can actually also see this in the README example, the data is in the wrong order. When you write the file again it preserves the original structure so the transformation is correctly reversible but the dict is wrong.
I had a go at trying to fix this but it's a bit complicated for me. It arises due to the row major vs col major data representations in C and Julia but when you fix it for positions it will break something else in the info field since all the data is using the same
convert
function. Maybe you can find a nice way to fix it.