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 3733cb0 commit 4bb5c9fCopy full SHA for 4bb5c9f
tests/bids.spec.js
@@ -28,7 +28,6 @@ var missing_session_files = [
28
'ds109',
29
'ds113b',
30
'ds000117',
31
- 'ds000246',
32
'ds000247',
33
]
34
validators/session.js
@@ -31,6 +31,13 @@ var session = function missingSessionFiles(fileList) {
} else {
subject = match[0]
}
+
35
+ // suppress inconsistent subject warnings for sub-emptyroom scans
36
+ // in MEG data
37
+ if (subject == 'sub-emptyroom') {
38
+ continue
39
+ }
40
41
// initialize an empty array if we haven't seen this subject before
42
if (typeof subjects[subject] === 'undefined') {
43
subjects[subject] = []
0 commit comments