-
Notifications
You must be signed in to change notification settings - Fork 0
/
dwi.json
96 lines (96 loc) · 2.2 KB
/
dwi.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"id": "luna_habit_diffusion",
"template": "diffusion_file",
"where": {
"container_type": "file",
"parent_container_type": "acquisition",
"$or": [
{
"file.type": {
"$in": [
"source code",
"JSON",
"bvec",
"bval",
"BVEC",
"BVAL"
]
}
},
{
"file.type": {
"$in": [
"nifti",
"NIfTI"
]
},
"$or": [
{
"file.info.ImageType": {
"$in": [
"ORIGINAL"
]
}
},
{
"file.info.header.dicom.ImageType": {
"$in": [
"ORIGINAL"
]
}
}
]
}
],
"file.classification.Measurement": {
"$in": [
"Diffusion"
]
},
"file.classification.Intent": {
"$in": [
"Structural"
]
},
"acquisition.label": {
"$regex": "dMRI_dir[0-9]+"
}
},
"initialize": {
"Acq": {
"acquisition.label": {
"$regex": "_dir(?P<value>[0-9]+)"
}
},
"Dir": {
"acquisition.label": {
"$regex": "dMRI_dir99.*(?P<value>AP|PA)"
}
},
"Run": {
"$run_counter": {
"key": "dwi.{file.info.BIDS.Suffix}.{file.type}"
}
},
"Part": {
"acquisition.label": {
"$regex": "(^|_)part-(?P<value>.*?)(_(acq|ce|dir|echo|mod|proc|part|rec|recording|run|task)-|$|_)"
}
},
"Suffix": {
"$switch": {
"$on": "acquisition.label",
"$cases": [
{
"$regex": ".*_SBRef$|.*_sbref$",
"$value": "sbref"
},
{
"$default": true,
"$value": "dwi"
}
]
}
}
}
}