-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcriteria_screen_boolean.yml
More file actions
47 lines (45 loc) · 1.28 KB
/
criteria_screen_boolean.yml
File metadata and controls
47 lines (45 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Rename to criteria_boolean.yml
# Inclusion/exclusion criteria for title/abstract screening in systematic reviews.
#
# Boolean logic:
# Each section (inclusion, exclusion) has an 'operator' (AND | OR) applied to its items.
# Items can be either:
# - a criterion: id + description
# - a nested group: operator + criteria (for complex expressions)
#
# Decision rule:
# Include if: inclusion evaluates to TRUE
# Exclude if: exclusion evaluates to TRUE
# Final decision: include AND NOT exclude
#
# Examples of nested logic:
#
# # (IC1 AND IC2) OR IC3
# inclusion:
# operator: OR
# criteria:
# - operator: AND
# criteria:
# - id: IC1
# description: ...
# - id: IC2
# description: ...
# - id: IC3
# description: ...
#
# # NOT EC2 (invert a single criterion)
# - id: EC2
# description: Security and Safety testing
# negate: true
inclusion:
operator: OR # paper must satisfy ANY inclusion criterion
criteria:
- id: IC1
description: Study is done in software industry
- id: IC2
description: Company name is presented
exclusion:
operator: OR # paper is excluded if ANY exclusion criterion is met
criteria:
- id: EC1
description: Tests of hardware systems