|
11 | 11 | % |
12 | 12 | % :param BIDS: returned by bids.layout when exploring a BIDS data set. |
13 | 13 | % :type BIDS: structure |
14 | | - % :param subLabel: label of the subject ; in BIDS lingo that means that for a file name |
| 14 | + % |
| 15 | + % :param subLabel: label of the subject ; in BIDS lingo that means that for a file name |
15 | 16 | % ``sub-02_task-foo_bold.nii`` the subLabel will be the string ``02`` |
16 | | - % :type subLabel: string |
| 17 | + % :type subLabel: char |
| 18 | + % |
17 | 19 | % :param sessionID: session label (for `ses-001`, the label will be `001`) |
18 | | - % :type sessionID: string |
| 20 | + % :type sessionID: char |
| 21 | + % |
19 | 22 | % :param runID: run index label (for `run-001`, the label will be `001`) |
20 | | - % :type runID: string |
| 23 | + % :type runID: char |
| 24 | + % |
21 | 25 | % :param opt: Mostly used to find the task name. |
22 | 26 | % :type opt: structure |
23 | 27 | % |
|
43 | 47 | % some part of it is in getInfo |
44 | 48 | if isempty(boldFilename) |
45 | 49 | msg = sprintf('No bold file found in:\n\t%s\nfor filter:%s\n', ... |
46 | | - BIDS.pth, ... |
| 50 | + pathToPrint(BIDS.pth), ... |
47 | 51 | createUnorderedList(opt.query)); |
48 | 52 |
|
49 | 53 | errorHandling(mfilename(), 'emptyInput', msg, false, true); |
|
52 | 56 | % in case files have been unzipped, we do it now |
53 | 57 | fullPathBoldFilename = unzipAndReturnsFullpathName(boldFilename, opt); |
54 | 58 |
|
55 | | - printToScreen(createUnorderedList(fullPathBoldFilename), opt); |
| 59 | + printToScreen(createUnorderedList(pathToPrint(fullPathBoldFilename)), opt); |
56 | 60 |
|
57 | 61 | boldFilename = spm_file(fullPathBoldFilename, 'filename'); |
58 | 62 | subFuncDataDir = spm_file(fullPathBoldFilename, 'path'); |
|
0 commit comments