Skip to content

Commit d86818d

Browse files
committed
add comments
1 parent ecc6c09 commit d86818d

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

src/utils/identify_rawsources.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@
77
%
88
% rawsource = identify_rawsources(derivatives)
99
%
10-
% :param file: SPM preprocessed filename (can be fullpath);
11-
% for example ``wmsub-01_ses-01_T1w.nii``
12-
% :type file: string
10+
% :param derivatives: derivatives file whose source to identify
11+
% :type derivatives: string
12+
%
13+
% :param verbose: Defaults to ``true``
14+
% :type verbose: boolean
1315
%
1416
%
1517
% (C) Copyright 2021 spm_2_bids developers

src/utils/identify_sources.m

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@
77
%
88
% sources = identify_sources(derivatives, map, verbose)
99
%
10-
% :param file: SPM preprocessed filename (can be fullpath);
11-
% for example ``wmsub-01_ses-01_T1w.nii``
12-
% :type file: string
10+
% :param derivatives: derivatives file whose source to identify
11+
% :type derivatives: string
1312
%
13+
% :param map: a mapping object. See ``Mapping`` class and or function ``default_mapping``
14+
% :type map: object
15+
%
16+
% :param verbose: Defaults to ``true``
17+
% :type verbose: boolean
1418
%
1519
% (C) Copyright 2021 spm_2_bids developers
1620

@@ -114,7 +118,7 @@
114118
end
115119

116120
elseif ismember(bf.prefix(1:2), {'c1', 'c2', 'c3', 'c4', 'c5'})
117-
% TODO bias corrected image
121+
% bias corrected image
118122
sources = 'TODO';
119123
return
120124

0 commit comments

Comments
 (0)