Skip to content

Commit

Permalink
do not expect space to be set
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Jul 9, 2024
1 parent b4b787e commit 4689cea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/workflows/bidsCopyInputFolder.m
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ function bidsCopyInputFolder(varargin)
if isfield(filter, 'desc')
filter = rmfield(filter, 'desc');
end
filter = rmfield(filter, 'space');
if isfield(filter, 'space')
filter = rmfield(filter, 'space');
end
filter.suffix = {'regressors', 'timeseries', 'motion', 'outliers'};

bids.copy_to_derivative(BIDS, ...
Expand Down

0 comments on commit 4689cea

Please sign in to comment.