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
If a dataset contains a compressed and uncompressed version of a file that will be operated on, the behavior or downstream tools may change. sMRIPrep will align and average a compressed and uncompressed T1w image, wasting time and possibly producing slightly confusing reports. In fMRIPrep, each BOLD series will get a workflow, and Nipype will crash due to duplication, as extension does not enter into the node name.
The best place to resolve this is in collect_data:
When the same file is present in compressed and uncompressed form, we should raise an error rather than return both, so that each downstream tool does not have to decide how best to deal with these.
If a dataset contains a compressed and uncompressed version of a file that will be operated on, the behavior or downstream tools may change. sMRIPrep will align and average a compressed and uncompressed T1w image, wasting time and possibly producing slightly confusing reports. In fMRIPrep, each BOLD series will get a workflow, and Nipype will crash due to duplication, as extension does not enter into the node name.
The best place to resolve this is in
collect_data
:niworkflows/niworkflows/utils/bids.py
Lines 126 to 209 in 616d2bc
When the same file is present in compressed and uncompressed form, we should raise an error rather than return both, so that each downstream tool does not have to decide how best to deal with these.
Issue discovered in nipreps/fmriprep#2396.
The text was updated successfully, but these errors were encountered: