error PYP Can't write to #148
-
|
Hi, I tried to run pyp on a gpfs exported filesystem and I get the error below: pyp -data_mode spr -scope_voltage 300 -scope_pixel 0.66 -data_path='./nextpyp_spr_tutorial/14*.tif' -gain_reference='./nextpyp_spr_tutorial/14*.tif' -gain_flipv -detect_rad 80 -detect_method all -detect_dist 40 -slurm_tasks 7 -slurm_memory 70 -slurm_merge_tasks 7 -slurm_merge_memory 70 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
This issue may stem from Apptainer not automatically binding filesystem paths, making them inaccessible to nextPYP. To resolve this, try adding I assume you are running the Looking at your command, I noticed that the parameter Also, you need to use absolute paths when specifying the |
Beta Was this translation helpful? Give feedback.
-
|
thanks the bind did the trick. Florian |
Beta Was this translation helpful? Give feedback.
This issue may stem from Apptainer not automatically binding filesystem paths, making them inaccessible to nextPYP. To resolve this, try adding
/fs/pool/pool-fbeck/miscto the list ofbindsin yourconfig.tomlconfiguration file. This will make all folders under that path available to nextPYP.I assume you are running the
pypcommand from the folder/fs/pool/pool-fbeck/misc/testPYP/T20S? If that is the case, that path should be automatically added to the binds (unless your singularity/apptainer installation is configured not to do so, in which case the suggestion above should fix the problem).Looking at your command, I noticed that the parameter
-gain_referenceis not pointing to the loc…