Skip to content

Commit 1996381

Browse files
committed
minor changes
1 parent 1b5c373 commit 1996381

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

public/cwl/afni/auto_tlrc.cwl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,7 @@ outputs:
158158
type: ['null', File]
159159
outputBinding:
160160
glob: auto_tlrc_stdout.log
161+
err_log:
162+
type: ['null', File]
163+
outputBinding:
164+
glob: auto_tlrc_stderr.log

public/cwl/freesurfer/recon-all.cwl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
cwlVersion: v1.2
77
class: CommandLineTool
88
baseCommand: 'recon-all'
9+
successCodes: [0, 137]
910

1011
hints:
1112
DockerRequirement:

public/cwl/toolMap.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1949,8 +1949,21 @@ export const TOOL_MAP = {
19491949

19501950
optionalInputs: {
19511951
no_ss: { type: 'boolean', label: 'Do not skull strip', flag: '-no_ss' },
1952-
dxyz: { type: 'double', label: 'Voxel size (mm)', flag: '-dxyz' },
1953-
xform: { type: 'string', label: 'Warp type', flag: '-xform', options: ['affine_general', 'shift_rotate_scale'] }
1952+
warp_orig_vol: { type: 'boolean', label: 'Warp original volume (preserve skull)', flag: '-warp_orig_vol' },
1953+
dxyz: { type: 'double', label: 'Cubic voxel size (mm)', flag: '-dxyz' },
1954+
dx: { type: 'double', label: 'X voxel dimension (mm)', flag: '-dx' },
1955+
dy: { type: 'double', label: 'Y voxel dimension (mm)', flag: '-dy' },
1956+
dz: { type: 'double', label: 'Z voxel dimension (mm)', flag: '-dz' },
1957+
pad_base: { type: 'double', label: 'Padding in mm', flag: '-pad_base' },
1958+
xform: { type: 'string', label: 'Warp type', flag: '-xform', options: ['affine_general', 'shift_rotate_scale'] },
1959+
suffix: { type: 'string', label: 'Output suffix', flag: '-suffix' },
1960+
init_xform: { type: 'File', label: 'Initial affine transform', flag: '-init_xform' },
1961+
maxite: { type: 'int', label: 'Max iterations', flag: '-maxite' },
1962+
use_3dAllineate: { type: 'boolean', label: 'Use 3dAllineate', flag: '-3dAllineate' },
1963+
apar: { type: 'File', label: 'Reference anatomical for transform', flag: '-apar' },
1964+
onewarp: { type: 'boolean', label: 'Single interpolation', flag: '-onewarp' },
1965+
twowarp: { type: 'boolean', label: 'Dual interpolation', flag: '-twowarp' },
1966+
overwrite: { type: 'boolean', label: 'Overwrite existing', flag: '-overwrite' }
19541967
},
19551968

19561969
outputs: {

0 commit comments

Comments
 (0)