-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from bids-standard/beliy-dependencies
Improvements on dependencies calculations
- Loading branch information
Showing
12 changed files
with
317 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
function res = ends_with(str, pattern) | ||
% | ||
% Checks id character array 'str' ends with 'pat' | ||
% | ||
% USAGE res = bids.internal.endsWith(str, pat) | ||
% | ||
% str - character array | ||
% pat - character array | ||
% | ||
% __________________________________________________________________________ | ||
% | ||
% Based on spm_file.m and spm_select.m from SPM12. | ||
% __________________________________________________________________________ | ||
|
||
% Copyright (C) 2011-2018 Guillaume Flandin, Wellcome Centre for Human Neuroimaging | ||
res = false; | ||
l_pat = length(pattern); | ||
if l_pat > length(str) | ||
return | ||
end | ||
res = strcmp(str(end - l_pat + 1:end), pattern); | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
function metalist = get_meta_list(filename, pattern) | ||
% | ||
% Read a BIDS's file metadata according to the inheritance principle | ||
% | ||
% USAGE:: | ||
% | ||
% meta = bids.internal.get_metadata(filename, pattern = '^.*%s\\.json$') | ||
% | ||
% :param filename: fullpath name of file following BIDS standard | ||
% :type filename: string | ||
% :param pattern: Regular expression matching the metadata file (default is ``'^.*%s\\.json$'``) | ||
% If provided, it must at least be ``'%s'``. | ||
% :type pattern: string | ||
% | ||
% | ||
% metalist - list of paths to metafiles | ||
% __________________________________________________________________________ | ||
|
||
% Copyright (C) 2016-2018, Guillaume Flandin, Wellcome Centre for Human Neuroimaging | ||
% Copyright (C) 2018--, BIDS-MATLAB developers | ||
|
||
if nargin == 1 | ||
pattern = '^.*%s\\.json$'; | ||
end | ||
|
||
pth = fileparts(filename); | ||
p = bids.internal.parse_filename(filename); | ||
metalist = {}; | ||
|
||
N = 3; | ||
|
||
% -There is a session level in the hierarchy | ||
if isfield(p.entities, 'ses') && ~isempty(p.entities.ses) | ||
N = N + 1; | ||
end | ||
|
||
% -Loop from the directory where the file of interest is back to the | ||
% top level of the BIDS hierarchy | ||
for n = 1:N | ||
|
||
% -List the potential metadata files associated with this file suffix type | ||
% Default is to assume it is a JSON file | ||
metafile = bids.internal.file_utils('FPList', pth, sprintf(pattern, p.suffix)); | ||
|
||
if isempty(metafile) | ||
metafile = {}; | ||
else | ||
metafile = cellstr(metafile); | ||
end | ||
|
||
% -For all those files we find which one is potentially associated with | ||
% the file of interest | ||
for i = 1:numel(metafile) | ||
|
||
p2 = bids.internal.parse_filename(metafile{i}); | ||
entities = {}; | ||
if isfield(p2, 'entities') | ||
entities = fieldnames(p2.entities); | ||
end | ||
|
||
% -Check if this metadata file contains the same entity-label pairs as its | ||
% data file counterpart | ||
ismeta = true; | ||
for j = 1:numel(entities) | ||
if ~isfield(p.entities, entities{j}) || ... | ||
~strcmp(p.entities.(entities{j}), p2.entities.(entities{j})) | ||
ismeta = false; | ||
break | ||
end | ||
end | ||
|
||
% append path to list | ||
if ismeta | ||
metalist{end + 1, 1} = metafile{i}; %#ok<AGROW> | ||
end | ||
|
||
end | ||
|
||
% -Go up to the parent folder | ||
pth = fullfile(pth, '..'); | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
function res = starts_with(str, pattern) | ||
% | ||
% Checks id character array 'str' starts with 'pat' | ||
% | ||
% USAGE res = bids.internal.startsWith(str, pat) | ||
% | ||
% str - character array | ||
% pat - character array | ||
% | ||
% __________________________________________________________________________ | ||
% | ||
% Based on spm_file.m and spm_select.m from SPM12. | ||
% __________________________________________________________________________ | ||
|
||
% Copyright (C) 2011-2018 Guillaume Flandin, Wellcome Centre for Human Neuroimaging | ||
res = false; | ||
l_pat = length(pattern); | ||
if l_pat > length(str) | ||
return | ||
end | ||
res = strcmp(str(1:l_pat), pattern); | ||
|
||
end |
Oops, something went wrong.