This repository was archived by the owner on Feb 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
162 lines (162 loc) · 4.34 KB
/
Copy pathmanifest.json
File metadata and controls
162 lines (162 loc) · 4.34 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "fsl-topup",
"label": "FSL: TOPUP correction for susceptibility induced distortions",
"description": "Estimates a distortion correction field given one or more pairs of images with opposite PE directions",
"author": "FSL",
"maintainer": "Flywheel <support@flywheel.io>",
"license": "MIT",
"source": "https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/topup",
"url": "https://github.com/flywheel-apps/fsl-topup",
"version": "0.0.6",
"environment": {},
"custom": {
"gear-builder": {
"category": "analysis",
"image": "flywheel/fsl-topup:0.0.6_5.0.10"
},
"docker-image": "flywheel/fsl-topup:0.0.6_5.0.10",
"flywheel": {
"suite": "Image Processing",
"classification": {
"species": [
"Human",
"Animal"
],
"organ": [
"Brain"
],
"therapeutic_area": [
"Neurology",
"Psychiatry/Psychology"
],
"modality": [
"MR"
],
"function": [
"Image Processing - Functional",
"Image Processing - Diffusion",
"Image Processing - Structural"
]
}
}
},
"inputs": {
"image_1": {
"base": "file",
"description": "first image in an pair of images with opposite phase encoding direction",
"optional": false,
"type": {
"enum": [
"nifti"
]
}
},
"image_2": {
"base": "file",
"description": "second image in an pair of images with opposite phase encoding direction",
"optional": false,
"type": {
"enum": [
"nifti"
]
}
},
"apply_to_1": {
"base": "file",
"description": "an image to apply the TOPUP correction to using this fieldmap. Should have the same PE direction as image 1",
"optional": true,
"type": {
"enum": [
"nifti"
]
}
},
"apply_to_2": {
"base": "file",
"description": "an image to apply the TOPUP correction to using this fieldmap. Should have the same PE direction as image 2",
"optional": true,
"type": {
"enum": [
"nifti"
]
}
},
"config_file": {
"base": "file",
"description": "A configuration file is a text file containing some or all of the parameters that can be specified for topup. The name of the file should be passed as argument to the --config parameter. It should be an ascii-file with one row for each parameter, and where comments (ignored by topup) are preceeded by a #.",
"optional": true,
"type": {
"enum": [
"text",
""
]
}
},
"acquisition_parameters": {
"base": "file",
"description": "This parameter specifies a text-file that contains information about how the volumes were acquired. Row 1 is for image 1, row 2 is for image 2",
"optional": true,
"type": {
"enum": [
"text",
""
]
}
}
},
"config": {
"gear-log-level": {
"default": "INFO",
"description": "Gear Log verbosity level (ERROR|WARNING|INFO|DEBUG)",
"type": "string",
"enum": [
"ERROR",
"WARNING",
"INFO",
"DEBUG"
]
},
"topup_only": {
"default": false,
"description": "only run topup and get fieldmaps (do no correct images)",
"type": "boolean"
},
"displacement_field": {
"default": false,
"description": "save displacement fields",
"type": "boolean"
},
"jacobian_determinants": {
"default": false,
"description": "save jacobian determinants",
"type": "boolean"
},
"rigid_body_matrix": {
"default": true,
"description": "save rigid body transformation matricies to align volumes",
"type": "boolean"
},
"verbose": {
"default": false,
"description": "output verbose information to the log",
"type": "boolean"
},
"topup_debug_level": {
"default": 0,
"description": "Topup Log verbosity level (0|1|2|3)",
"type": "integer",
"enum": [
0,
1,
2,
3
]
},
"QA": {
"default": true,
"description": "Save a topup QA image comparing distorted to corrected images",
"type": "boolean"
}
},
"command": "source /venv/bin/activate && python run.py"
}