syntax when processing DICOM input files #304
-
When input files are converted to NIFTI format for processing the different NIFTI files are listed, separated by commas. When DICOM format files that are spread across multiple directories are the inputs, should the directories be put in a comma-separated list as well? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
@zeffiro that is correct, different directories of sorted DICOM files can be entered together. The latest version of PyDesigner does away with comma-separated files though - you'd specify them with a space now. |
Beta Was this translation helpful? Give feedback.
-
Getting the mount points correct solved the problem. It is running now. Many thanks. What does PyDesigner do if the command line contains distortion scans with both AP and PA encoding? |
Beta Was this translation helpful? Give feedback.
-
Here is the associated error message: eddy_cuda10.2: error while loading shared libraries: libcuda.so.1: cannot open shared object file: No such file or directory |
Beta Was this translation helpful? Give feedback.
@zeffiro Yea, your files are not specified relative to the mount point you've created. The contents of the directory
E:/BEAP-dMRI/sub-BEAP001/ses-1/dwi
will be available to the Docker container under/data/*
. Which means your output directoryE:/BEAP-dMRI/sub-BEAP001/ses-1/derivative/dwi
is not visible to the container, and also needs to be specified relative to/data
. Not only that, the input path needs to be an absolute path, which I presume is mounted at/data/ABCD_DMRI_0015 ABCD_DMRI_DISTORTIONMAP_AP_0017
.