We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 627016a commit b0db59cCopy full SHA for b0db59c
src/readAndFilterLogfile.m
@@ -65,7 +65,12 @@
65
end
66
67
% Convert the structure to dataset
68
- outputFiltered = struct2dataset(output);
+ try
69
+ outputFiltered = struct2dataset(output);
70
+ catch
71
+ % dataset not yet supported by octave
72
+ outputFiltered = output;
73
+ end
74
75
if saveOutputTsv
76
src/subfun/utilsForTests/setUp.m
@@ -1,3 +1,5 @@
1
+% (C) Copyright 2020 CPP_BIDS developers
2
+
3
function [cfg, logFile] = setUp()
4
5
outputDir = fullfile(fileparts(mfilename('fullpath')), 'output');
0 commit comments