-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
121 lines (121 loc) · 3.29 KB
/
manifest.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
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
{
"name": "fslmerge",
"label": "FSL: FSLMERGE - FMRIB Merge Tool (FSL v5.0)",
"description": "FSLMERGE (FMRIB) concatenates image files into a single output. This concatenation can be in time, or in X, Y or Z. All image dimensions (except for the one being concatenated over) must be the same in all input images. For example, this can be used to take multiple 3D files (eg as output by SPM) and create a single 4D image file. This Gear also supports the merger of diffusion data with bvec/bval files.",
"maintainer": "Michael Perry <[email protected]>",
"author": "Analysis Group, FMRIB, Oxford, UK.",
"url": "https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Fslutils",
"source": "https://github.com/scitran-apps/fslmerge",
"license": "Apache-2.0",
"version": "0.1.2",
"custom": {
"docker-image": "scitran/fslmerge:0.1.2",
"flywheel": {
"suite": "FSL"
}
},
"config": {
"catTime": {
"description": "concatenate images in time [default=false]",
"default": false,
"type": "boolean",
"id": "-t"
},
"catX": {
"description": "concatenate images in the x direction [default=false]",
"default": false,
"type": "boolean",
"id": "-x"
},
"catY": {
"description": "concatenate images in the y direction [default=false]",
"default": false,
"type": "boolean",
"id": "-y"
},
"catZ": {
"description": "concatenate images in the z direction [default=false]",
"default": false,
"type": "boolean",
"id": "-z"
},
"auto": {
"description": "auto-choose: single slices -> volume, volumes -> 4D (time series) [default=true]",
"default": true,
"type": "boolean",
"id": "-a"
},
"catTR": {
"description": "concatenate images in time and set the output image tr to this value. values other than '0' will trigger this option. [default=0, false]",
"default": 0,
"type": "number",
"id": "-tr"
},
"base_outname": {
"description": "Base name for output file(s) [by default, 'none' signals the code to use the input filenames, separated by '_', to generate a base name]",
"default": "none",
"base": "file",
"type": "string"
}
},
"inputs": {
"NIFTI_1": {
"description": "NIfTI image to be merged.",
"base": "file",
"type": {
"enum": [
"nifti"
]
}
},
"NIFTI_2": {
"description": "NIfTI image to be merged.",
"base": "file",
"type": {
"enum": [
"nifti"
]
}
},
"BVAL_1": {
"description": "BVAL file to be merged.",
"base": "file",
"optional": true,
"type": {
"enum": [
"bval"
]
}
},
"BVAL_2": {
"description": "BVAL file to be merged.",
"base": "file",
"optional": true,
"type": {
"enum": [
"bval"
]
}
},
"BVEC_1": {
"description": "BVEC file to be merged.",
"base": "file",
"optional": true,
"type": {
"enum": [
"bvec"
]
}
},
"BVEC_2": {
"description": "BVEC file to be merged.",
"base": "file",
"optional": true,
"type": {
"enum": [
"bvec"
]
}
}
}
}