Anyone coming across the same problem, you can use awk as follows to invert the y axis.
awk ‘{$4=4092-$4; print $0}’ in.star > out.star, where $4 is _rlnCoordinateY and 4092 is the y axis boundary. You’ll then need to manually delete the “4092” added to the header.
2 Likes