You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(colors.red("The directory "+dir+" failed an initial Quick Test. This means the basic names and structure of the files and directories do not comply with BIDS specification. For more info go to http://bids.neuroimaging.io/"));
" failed an initial Quick Test. This means the basic names and structure of the files and directories do not comply with BIDS specification. For more info go to http://bids.neuroimaging.io/"
26
+
)
27
+
);
28
+
}elseif(issues.config&&issues.config.length>=1){
29
+
console.log(colors.red("Invalid Config File"));
30
+
for(vari=0;i<issues.config.length;i++){
31
+
varissue=issues.config[i];
32
+
issue.file.file={relativePath: issue.file.path};
33
+
issue.files=[issue.file];
34
+
}
35
+
logIssues(issues.config,"red",options);
36
+
}elseif(errors.length>=1||warnings.length>=1){
37
+
logIssues(errors,"red",options);
38
+
logIssues(warnings,"yellow",options);
39
+
}else{
40
+
console.log(
41
+
colors.green("This dataset appears to be BIDS compatible.")
42
+
);
23
43
}
24
-
logIssues(issues.config,'red',options);
25
-
}elseif(errors.length>=1||warnings.length>=1){
26
-
logIssues(errors,'red',options);
27
-
logIssues(warnings,'yellow',options);
28
-
}
29
-
else{
30
-
console.log(colors.green("This dataset appears to be BIDS compatible."));
0 commit comments