Skip to content

Commit 4923bb3

Browse files
authored
Merge pull request #72 from BIDS-Apps/fix-71
Fixes #71
2 parents d8b856c + 209c31d commit 4923bb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ RUN apt-get -qq update && \
9090
apt-get clean && \
9191
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292
ENV CARET7DIR="/opt/workbench/bin_linux64"
93+
ENV PATH="${CARET7DIR}:${PATH}"
9394

9495
# Install HCP Pipelines and MSM binaries
9596
RUN apt-get -qq update && \

run.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,7 @@ def run_post_freesurfer(**args):
116116
'--freesurferlabels="{HCPPIPEDIR_Config}/FreeSurferAllLut.txt" ' + \
117117
'--refmyelinmaps="{HCPPIPEDIR_Templates}/standard_mesh_atlases/Conte69.MyelinMap_BC.164k_fs_LR.dscalar.nii" ' + \
118118
'--regname="{regname}" ' + \
119-
'--processing-mode="{processing_mode}" ' + \
120-
'--printcom=""'
119+
'--processing-mode="{processing_mode}"'
121120
cmd = cmd.format(**args)
122121
run(cmd, cwd=args["path"], env={"OMP_NUM_THREADS": str(args["n_cpus"])})
123122

@@ -221,7 +220,7 @@ def run_diffusion_processsing(**args):
221220
parser.add_argument('-v', '--version', action='version',
222221
version='HCP Pipelines BIDS App version {}'.format(__version__))
223222
parser.add_argument('--anat_unwarpdir', help='Unwarp direction for 3D volumes',
224-
choices=['x', 'y', 'z', 'x-', 'y-', 'z-'], default="NONE")
223+
choices=['x', 'y', 'z', 'x-', 'y-', 'z-', 'NONE'], default="z")
225224
parser.add_argument('--skip_bids_validation', '--skip-bids-validation', action='store_true',
226225
default=False,
227226
help='assume the input dataset is BIDS compliant and skip the validation')

0 commit comments

Comments
 (0)