Skip to content

Commit

Permalink
Update src/schema/rules/checks/eeg.yaml
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Markiewicz <[email protected]>
  • Loading branch information
sappelhoff and effigies authored Jun 7, 2024
1 parent f0c067b commit 6028f70
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/schema/rules/checks/eeg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,42 @@
EEGChannelCountReq:
selectors:
- suffix == "eeg"
- type(sidecar.EEGChannelCount) != "null
- associations.channels.type
checks:
- sidecar.EEGChannelCount == count(associations.channels.type, "EEG")
ECGChannelCountReq:
selectors:
- suffix == "eeg"
- type(sidecar.ECGChannelCount) != "null
- associations.channels.type
checks:
- sidecar.ECGChannelCount == count(associations.channels.type, "ECG")
EMGChannelCountReq:
selectors:
- suffix == "eeg"
- type(sidecar.EMGChannelCount) != "null
- associations.channels.type
checks:
- sidecar.EMGChannelCount == count(associations.channels.type, "EMG")
EOGChannelCountReq:
selectors:
- suffix == "eeg"
- type(sidecar.EOGChannelCount) != "null
- associations.channels.type
checks:
- sidecar.EOGChannelCount == count(associations.channels.type, "EOG")
MiscChannelCountReq:
selectors:
- suffix == "eeg"
- type(sidecar.MiscChannelCount) != "null
- associations.channels.type
checks:
- sidecar.MiscChannelCount == count(associations.channels.type, "MISC")
TriggerChannelCountReq:
selectors:
- suffix == "eeg"
- type(sidecar.TriggerChannelCount) != "null
- associations.channels.type
checks:
- sidecar.TriggerChannelCount == count(associations.channels.type, "TRIG")

0 comments on commit 6028f70

Please sign in to comment.