Skip to content

Commit

Permalink
Update BIDS option
Browse files Browse the repository at this point in the history
Correctly specify path to BIDS data
  • Loading branch information
neurofractal committed Feb 14, 2020
1 parent 847bc30 commit 99b6ab5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data_functions/ft_opm_create.m
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
catch
error('Did you specify all the required cfg.bids information?')
end
path_to_bin_file = fullfile(cfg.folder,file_name_bids);
path_to_bin_file = fullfile(cfg.folder,['sub-' cfg.bids.sub],...
['ses-' cfg.bids.ses],'meg',file_name_bids);
end

%% Read Binary File
Expand Down

0 comments on commit 99b6ab5

Please sign in to comment.