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
When computing functional connectivity using the BIDS format, an error occurs. In this case, startingDirName is set to 'BIDS', and running DPARSFA_RerunWithGSR will search for a non-existent folder named 'BIDSAR'. Additionally, it's necessary to disable IsBIDStoDPARSF, otherwise, when calling DPARSFA_run, startingDirName will be reset to 'FunImg' instead of the directory with the first timepoints removed.
The following alterations in DPARSA_RerunWithGSR might be beneficial:
if strcmpi(StartingDirName,'BIDS')
StartingDirName = 'FunImg';
Cfg.IsBIDStoDPARSF = 0;
end
The text was updated successfully, but these errors were encountered:
When computing functional connectivity using the BIDS format, an error occurs. In this case, startingDirName is set to 'BIDS', and running DPARSFA_RerunWithGSR will search for a non-existent folder named 'BIDSAR'. Additionally, it's necessary to disable IsBIDStoDPARSF, otherwise, when calling DPARSFA_run, startingDirName will be reset to 'FunImg' instead of the directory with the first timepoints removed.
The following alterations in DPARSA_RerunWithGSR might be beneficial:
The text was updated successfully, but these errors were encountered: