Commands and actions used in this tutorial:
FREEZING DATA, INTERACTING WITH FROZEN DATA
1. Freeze folder /data/Experiment_2 in IDA web UI (ida.fairdata.fi)
2. Show that frozen folder is now in frozen area
ida info -f /
3. Show that frozen files are now in frozen area
ida info -f /data/Experiment_2
4. Show all frozen files match local files
ida validate -v -f /data/Experiment_2 ./data/Experiment_2
5. Show only frozen files reported as OK, others reported as missing as they are not frozen
ida validate -v -f /data ./data
6. Show that deleting frozen file not allowed
ida delete -f /data/Experiment_2/run01.dat
7. Show that moving frozen file not allowed
ida move -f /data/Experiment_2/run01.dat /data/Experiment_2/run01.dat.old
8. Show that copying a frozen file to staging is allowed
ida copy -v -f /data/Experiment_2/run01.dat /data/Experiment_2b/run01.dat
9. Show copied frozen file now in staging and also remains in frozen area
ida info /data/Experiment_2b
ida info -f /data/Experiment_2