-
Notifications
You must be signed in to change notification settings - Fork 8
/
commonspace_resample.sh
executable file
·377 lines (335 loc) · 14.8 KB
/
commonspace_resample.sh
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#!/usr/bin/env bash
# ARG_HELP([Common-space resampling for modelbuild.sh from optimized_antsMultivariateTemplateConstruction])
# ARG_OPTIONAL_SINGLE([output-dir],[],[Output directory for modelbuild],[output])
# ARG_OPTIONAL_BOOLEAN([float],[],[Use float instead of double for calculations (reduce memory requirements, reduce precision)],[])
# ARG_OPTIONAL_SINGLE([type],[],[Walltime for short running stages (averaging, resampling, smoothing)],[quantitative])
# ARG_TYPE_GROUP_SET([typegroup],[TYPE],[type],[label,quantitative,image])
# ARG_OPTIONAL_SINGLE([target-space],[],[Target resampling space],[unbiased])
# ARG_TYPE_GROUP_SET([spacegroup],[SPACE],[target-space],[unbiased,final-target,secondlevel])
# ARG_OPTIONAL_SINGLE([walltime],[],[Walltime for resampling],[00:15:00])
# ARG_OPTIONAL_BOOLEAN([block],[],[For qbatch SGE, PBS and SLURM, blocks execution until jobs are finished.],[])
# ARG_OPTIONAL_BOOLEAN([debug],[],[Debug mode, print all commands to stdout],[])
# ARG_OPTIONAL_BOOLEAN([dry-run],[],[Dry run, don't run any commands, implies debug],[])
# ARG_OPTIONAL_SINGLE([jobname-prefix],[],[Prefix to add to front of job names, used by twolevel wrapper],[])
# ARG_OPTIONAL_SINGLE([resample-inputs],[],[Files to be resampled into common space, structured the same as the input to modelbuild.sh],[])
# ARG_OPTIONAL_SINGLE([prepend-transforms],[],[Transform files which align resample-inputs to inputs, will be added to the transform stack, append with :1 to indicate applying the inverse],[])
# ARG_OPTIONAL_SINGLE([append-transforms],[],[Comma seperated list of transforms to apply at the end of transform chain, used by twolevel wrapper],[])
# ARG_POSITIONAL_SINGLE([inputs],[Input text files, one line per input, same as those provided to modelbuild.sh],[])
# ARGBASH_SET_INDENT([ ])
# ARGBASH_GO()
# needed because of Argbash --> m4_ignore([
### START OF CODE GENERATED BY Argbash v2.10.0 one line above ###
# Argbash is a bash code generator used to get arguments parsing right.
# Argbash is FREE SOFTWARE, see https://argbash.io for more info
die()
{
local _ret="${2:-1}"
test "${_PRINT_HELP:-no}" = yes && print_help >&2
echo "$1" >&2
exit "${_ret}"
}
# validators
typegroup()
{
local _allowed=("label" "quantitative" "image") _seeking="$1"
for element in "${_allowed[@]}"
do
test "$element" = "$_seeking" && echo "$element" && return 0
done
die "Value '$_seeking' (of argument '$2') doesn't match the list of allowed values: 'label', 'quantitative' and 'image'" 4
}
spacegroup()
{
local _allowed=("unbiased" "final-target" "secondlevel") _seeking="$1"
for element in "${_allowed[@]}"
do
test "$element" = "$_seeking" && echo "$element" && return 0
done
die "Value '$_seeking' (of argument '$2') doesn't match the list of allowed values: 'unbiased', 'final-target' and 'secondlevel'" 4
}
begins_with_short_option()
{
local first_option all_short_options='h'
first_option="${1:0:1}"
test "$all_short_options" = "${all_short_options/$first_option/}" && return 1 || return 0
}
# THE DEFAULTS INITIALIZATION - POSITIONALS
_positionals=()
# THE DEFAULTS INITIALIZATION - OPTIONALS
_arg_output_dir="output"
_arg_float="off"
_arg_type="quantitative"
_arg_target_space="unbiased"
_arg_walltime="00:15:00"
_arg_block="off"
_arg_debug="off"
_arg_dry_run="off"
_arg_jobname_prefix=
_arg_resample_inputs=
_arg_prepend_transforms=
_arg_append_transforms=
print_help()
{
printf '%s\n' "Common-space resampling for modelbuild.sh from optimized_antsMultivariateTemplateConstruction"
printf 'Usage: %s [-h|--help] [--output-dir <arg>] [--(no-)float] [--type <TYPE>] [--target-space <SPACE>] [--walltime <arg>] [--(no-)block] [--(no-)debug] [--(no-)dry-run] [--jobname-prefix <arg>] [--resample-inputs <arg>] [--prepend-transforms <arg>] [--append-transforms <arg>] <inputs>\n' "$0"
printf '\t%s\n' "<inputs>: Input text files, one line per input, same as those provided to modelbuild.sh"
printf '\t%s\n' "-h, --help: Prints help"
printf '\t%s\n' "--output-dir: Output directory for modelbuild (default: 'output')"
printf '\t%s\n' "--float, --no-float: Use float instead of double for calculations (reduce memory requirements, reduce precision) (off by default)"
printf '\t%s\n' "--type: Walltime for short running stages (averaging, resampling, smoothing). Can be one of: 'label', 'quantitative' and 'image' (default: 'quantitative')"
printf '\t%s\n' "--target-space: Target resampling space. Can be one of: 'unbiased', 'final-target' and 'secondlevel' (default: 'unbiased')"
printf '\t%s\n' "--walltime: Walltime for resampling (default: '00:15:00')"
printf '\t%s\n' "--block, --no-block: For qbatch SGE, PBS and SLURM, blocks execution until jobs are finished. (off by default)"
printf '\t%s\n' "--debug, --no-debug: Debug mode, print all commands to stdout (off by default)"
printf '\t%s\n' "--dry-run, --no-dry-run: Dry run, don't run any commands, implies debug (off by default)"
printf '\t%s\n' "--jobname-prefix: Prefix to add to front of job names, used by twolevel wrapper (no default)"
printf '\t%s\n' "--resample-inputs: Files to be resampled into common space, structured the same as the input to modelbuild.sh (no default)"
printf '\t%s\n' "--prepend-transforms: Transform files which align resample-inputs to inputs, will be added to the transform stack, append with :1 to indicate applying the inverse (no default)"
printf '\t%s\n' "--append-transforms: Comma seperated list of transforms to apply at the end of transform chain, used by twolevel wrapper (no default)"
}
parse_commandline()
{
_positionals_count=0
while test $# -gt 0
do
_key="$1"
case "$_key" in
-h|--help)
print_help
exit 0
;;
-h*)
print_help
exit 0
;;
--output-dir)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_output_dir="$2"
shift
;;
--output-dir=*)
_arg_output_dir="${_key##--output-dir=}"
;;
--no-float|--float)
_arg_float="on"
test "${1:0:5}" = "--no-" && _arg_float="off"
;;
--type)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_type="$(typegroup "$2" "type")" || exit 1
shift
;;
--type=*)
_arg_type="$(typegroup "${_key##--type=}" "type")" || exit 1
;;
--target-space)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_target_space="$(spacegroup "$2" "target-space")" || exit 1
shift
;;
--target-space=*)
_arg_target_space="$(spacegroup "${_key##--target-space=}" "target-space")" || exit 1
;;
--walltime)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_walltime="$2"
shift
;;
--walltime=*)
_arg_walltime="${_key##--walltime=}"
;;
--no-block|--block)
_arg_block="on"
test "${1:0:5}" = "--no-" && _arg_block="off"
;;
--no-debug|--debug)
_arg_debug="on"
test "${1:0:5}" = "--no-" && _arg_debug="off"
;;
--no-dry-run|--dry-run)
_arg_dry_run="on"
test "${1:0:5}" = "--no-" && _arg_dry_run="off"
;;
--jobname-prefix)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_jobname_prefix="$2"
shift
;;
--jobname-prefix=*)
_arg_jobname_prefix="${_key##--jobname-prefix=}"
;;
--resample-inputs)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_resample_inputs="$2"
shift
;;
--resample-inputs=*)
_arg_resample_inputs="${_key##--resample-inputs=}"
;;
--prepend-transforms)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_prepend_transforms="$2"
shift
;;
--prepend-transforms=*)
_arg_prepend_transforms="${_key##--prepend-transforms=}"
;;
--append-transforms)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
_arg_append_transforms="$2"
shift
;;
--append-transforms=*)
_arg_append_transforms="${_key##--append-transforms=}"
;;
*)
_last_positional="$1"
_positionals+=("$_last_positional")
_positionals_count=$((_positionals_count + 1))
;;
esac
shift
done
}
handle_passed_args_count()
{
local _required_args_string="'inputs'"
test "${_positionals_count}" -ge 1 || _PRINT_HELP=yes die "FATAL ERROR: Not enough positional arguments - we require exactly 1 (namely: $_required_args_string), but got only ${_positionals_count}." 1
test "${_positionals_count}" -le 1 || _PRINT_HELP=yes die "FATAL ERROR: There were spurious positional arguments --- we expect exactly 1 (namely: $_required_args_string), but got ${_positionals_count} (the last one was: '${_last_positional}')." 1
}
assign_positional_args()
{
local _positional_name _shift_for=$1
_positional_names="_arg_inputs "
shift "$_shift_for"
for _positional_name in ${_positional_names}
do
test $# -gt 0 || break
eval "$_positional_name=\${1}" || die "Error during argument parsing, possibly an Argbash bug." 1
shift
done
}
parse_commandline "$@"
handle_passed_args_count
assign_positional_args 1 "${_positionals[@]}"
# OTHER STUFF GENERATED BY Argbash
# Validation of values
### END OF CODE GENERATED BY Argbash (sortof) ### ])
# [ <-- needed because of Argbash
set -uo pipefail
set -eE -o functrace
# Load up helper scripts and define helper variables
# shellcheck source=helpers.sh
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/helpers.sh"
# Set magic variables for current file, directory, os, etc.
__file="${__dir}/$(basename "${BASH_SOURCE[${__b3bp_tmp_source_idx:-0}]}")"
__base="$(basename "${__file}" .sh)"
# shellcheck disable=SC2034,SC2015
__invocation="$(printf %q "${__file}")$( (($#)) && printf ' %q' "$@" || true)"
# Setup a directory which contains all commands run
# for this invocation
mkdir -p ${_arg_output_dir}/jobs/${__datetime}
export QBATCH_SCRIPT_FOLDER="${_arg_output_dir}/qbatch/${__datetime}"
# Store the full command line for each run
echo ${__invocation} >${_arg_output_dir}/jobs/${__datetime}/invocation
info "Checking input files"
# Load input file into array
if [[ ! -s ${_arg_inputs[0]} ]]; then
failure "Input file ${_arg_inputs[0]} is non-existent or zero size"
else
mapfile -t _arg_inputs <${_arg_inputs[0]}
fi
# Load input file into array
if [[ ! -s ${_arg_resample_inputs} ]]; then
failure "Input file ${_arg_resample_inputs} is non-existent or zero size"
else
mapfile -t _arg_resample_inputs <${_arg_resample_inputs}
fi
# Load input file into array
if [[ ( -n ${_arg_prepend_transforms}) && (! -s ${_arg_prepend_transforms}) ]]; then
failure "Input file ${_arg_prepend_transforms} is non-existent or zero size"
elif [[ -n ${_arg_prepend_transforms} ]]; then
mapfile -t _arg_prepend_transforms <${_arg_prepend_transforms}
else
_arg_prepend_transforms=()
fi
for file in "${_arg_inputs[@]}" "${_arg_resample_inputs[@]}" ${_arg_prepend_transforms[@]+"${_arg_prepend_transforms[@]}"}; do
if [[ ! -s ${file} ]]; then
failure "Input file ${file} is non-existent or zero size"
fi
done
# Enable float mode for ants commands
if [[ ${_arg_float} == "on" ]]; then
_arg_float="--float"
else
_arg_float=""
fi
# Enable block for qbatch job submission
if [[ ${_arg_block} == "on" ]]; then
_arg_block="--block"
else
_arg_block=""
fi
if [[ ! -s ${_arg_output_dir}/final/average/template_sharpen_shapeupdate.nii.gz ]]; then
failure "Modelbuild is not complete, ${_arg_output_dir}/final/average/template_sharpen_shapeupdate.nii.gz is zero size or does not exist"
fi
if [[ ${_arg_type} == "quantitative" ]]; then
interpolation="--interpolation Linear"
elif [[ ${_arg_type} == "image" ]]; then
interpolation="--interpolation BSpline[5]"
elif [[ ${_arg_type} == "label" ]]; then
interpolation="--interpolation GenericLabel"
fi
if [[ ${_arg_target_space} == "unbiased" ]]; then
_arg_target_space="-r ${_arg_output_dir}/final/average/template_sharpen_shapeupdate.nii.gz"
final_target_transforms=""
real_outputdir="${_arg_output_dir}/commonspace-resampled"
elif [[ ${_arg_target_space} == "final-target" ]]; then
if [[ -s ${_arg_output_dir}/final-target/to_target_1Warp.nii.gz ]]; then
_arg_target_space="-r ${_arg_output_dir}/final-target/final_target.nii.gz"
final_target_transforms="-t ${_arg_output_dir}/final-target/to_target_1Warp.nii.gz -t ${_arg_output_dir}/final-target/to_target_0GenericAffine.mat"
real_outputdir="${_arg_output_dir}/commonspace-resampled/final-target"
else
fatal "Final target transform ${_arg_output_dir}/final-target/to_target_1Warp.nii.gz not found"
fi
elif [[ ${_arg_target_space} == "secondlevel" ]]; then
IFS=',' read -r -a _arg_append_transforms <<<${_arg_append_transforms}
for transform in "${_arg_append_transforms[@]}"; do
final_target_transforms+="-t ${transform} "
done
_arg_target_space="-r $(dirname $(dirname ${_arg_output_dir}))/secondlevel/final/average/template_sharpen_shapeupdate.nii.gz"
real_outputdir="$(dirname $(dirname ${_arg_output_dir}))/secondlevel/commonspace-resampled/$(basename ${_arg_output_dir})"
fi
mkdir -p ${_arg_output_dir}/commonspace-resampled
i=0
for file in "${_arg_inputs[@]}"; do
if [[ ! -s ${_arg_output_dir}/commonspace-resampled/$(basename ${_arg_resample_inputs[i]}) ]]; then
if [[ -n ${_arg_prepend_transforms[i]:-} ]]; then
if [[ "${_arg_prepend_transforms[i]}" == *:1 ]]; then
transform_resample_input_to_input="-t [ ${_arg_prepend_transforms[i]%:1},1 ]"
else
transform_resample_input_to_input="-t ${_arg_prepend_transforms[i]}"
fi
else
transform_resample_input_to_input=""
fi
echo antsApplyTransforms -d 3 --verbose ${_arg_float} \
-i ${_arg_resample_inputs[i]} \
${interpolation} \
${_arg_target_space} \
${final_target_transforms} \
-t ${_arg_output_dir}/final/transforms/$(basename ${file} | extension_strip)_1Warp.nii.gz \
-t ${_arg_output_dir}/final/transforms/$(basename ${file} | extension_strip)_0GenericAffine.mat \
${transform_resample_input_to_input} \
-o ${real_outputdir}/$(basename ${_arg_resample_inputs[i]})
fi
((++i))
done > ${_arg_output_dir}/jobs/${__datetime}/commonspace_resample
debug "$(cat ${_arg_output_dir}/jobs/${__datetime}/commonspace_resample)"
if [[ ${_arg_dry_run} == "off" ]]; then
qbatch ${_arg_block} --logdir ${_arg_output_dir}/logs/${__datetime} \
--walltime ${_arg_walltime} \
-N ${_arg_jobname_prefix}commonspace_resample_${__datetime} \
${_arg_output_dir}/jobs/${__datetime}/commonspace_resample
fi
# ] <-- needed because of Argbash