-
Dear TVB users, When running some Rockland data through the pipeline, it is getting stuck on the FIX stage at the extract features stage so I'm hoping there is something that needs editing in a settings file as I was able to run this command without any problems when running it on a different server (RRI). Note that the training file being used was created on the RRI server, but I made sure to change the version date so it can be used by the version of R being used by the singularity container. This is the command that is currently failing when submitting the entire pipeline: /home/soddev/projects/def-levine/soddev/Rockland/TVBukbb_pipeline/tvb-ukbb/bb_functional_pipeline/bb_fix_dir/fix . /home/soddev/projects/def-levine/soddev/Rockland/TVBukbb_pipeline/tvb-ukbb/bb_functional_pipeline/bb_fix_dir/training_files/Training_Rockland.RData 30 -m -h 100 Running this command on its own in an interactive session gives me the following output:
When digging into the output logs, /scratch/soddev/Rockland/Raw_BIDS/sub-A00038158/fMRI/rfMRI.ica/.fix_2b_predict.log has the following output and I'm wondering if something needs to be be changed in the settings (perhaps something to do with the fact that only [1] is defined and the script is then looking for the values defined under the "else" section of the python script:
The other error log is related to matlab, when looking at this log file:
Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi Devin! Looks like the first issue is definitely a problem either with the generation of the MELODIC outputs or with the feature extraction process. It looks like FIX fails the first time to extract the features into For the second issue, I think that's an easy fix. It looks like that MATLAB runtime is looking for |
Beta Was this translation helpful? Give feedback.
Hi Devin!
Looks like the first issue is definitely a problem either with the generation of the MELODIC outputs or with the feature extraction process. It looks like FIX fails the first time to extract the features into
fix/features.csv
and tries again after checking forfix/features.csv
prior to classification. Isfix/features.csv
present whenfix_2b_predict
runs?For the second issue, I think that's an easy fix. It looks like that MATLAB runtime is looking for
/localscratch
but it's not visible to the container. Try adding-B /localscratch
to your singularity command (following the format of the other-B
args) and this one should be resolved.