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
Hi,
if I can modify the values of an attribute for a given variable, I did not found how to define new values for the variable itself
for example, in a 4D PET volume:
the variable time cannot be modified, whereas lenght, step,etc... attributes can be modified
is it a bug?
The text was updated successfully, but these errors were encountered:
it's because time and step are not attributes in the minc world, they are considered to be variables.
So, it's possible to modify them using mincedit or with library (i.e inside python script).
ok, do you see any possibility to include this into a bash script ?
I can execute: mincedit xxxx.mnc nano
but I can't find how to modify the header in my script from that :(
If you examine the contents of mincedit, you will see it dumps the mincheader, opens it in an editor, then re-generates a a new empty file with mincgen, followed by minccopy to re-populate the data. Should you need to do such an automated modification, you could code up the same thing, with a sed/awk to programmatically edit the header file.
Hi,
if I can modify the values of an attribute for a given variable, I did not found how to define new values for the variable itself
for example, in a 4D PET volume:
the variable time cannot be modified, whereas lenght, step,etc... attributes can be modified
is it a bug?
The text was updated successfully, but these errors were encountered: