Skip to content

Commit 0ff9f93

Browse files
authored
Merge pull request #40 from BIDS-Apps/chrisfilo-patch-3
fix invocations to include license binds
2 parents cf36097 + bd49b2c commit 0ff9f93

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,10 @@ To run it in participant level mode (for one participant):
134134
docker run -ti --rm \
135135
-v /Users/filo/data/ds005:/bids_dataset:ro \
136136
-v /Users/filo/outputs:/outputs \
137+
-v /Users/filo/freesurfer_license.txt:/license.txt \
137138
bids/freesurfer \
138139
/bids_dataset /outputs participant --participant_label 01 \
139-
--license_file "license.txt"
140+
--license_file "/license.txt"
140141

141142

142143
#### Group level
@@ -149,9 +150,10 @@ To create a study specific template run:
149150
docker run -ti --rm \
150151
-v /Users/filo/data/ds005:/bids_dataset:ro \
151152
-v /Users/filo/outputs:/outputs \
153+
-v /Users/filo/freesurfer_license.txt:/license.txt \
152154
bids/freesurfer \
153155
/bids_dataset /outputs group1 \
154-
--license_file "license.txt"
156+
--license_file "/license.txt"
155157

156158
##### Stats and quality tables export
157159
To export tables with aggregated measurements within regions of
@@ -163,14 +165,15 @@ cortical parcellation and subcortical segementation, and a table with
163165
docker run -ti --rm \
164166
-v /Users/filo/data/ds005:/bids_dataset:ro \
165167
-v /Users/filo/outputs:/outputs \
168+
-v /Users/filo/freesurfer_license.txt:/license.txt \
166169
bids/freesurfer \
167170
/bids_dataset /outputs group2 \
168-
--license_file "license.txt"
171+
--license_file "/license.txt"
169172
Also see the *--parcellations* and *--measurements* arguments.
170173

171174
This step writes ouput into `<output_dir>/00_group2_stats_tables/`. E.g.:
172175

173176
* `lh.aparc.thickness.tsv` contains cortical thickness values for the
174177
left hemisphere extracted via the aparac parcellation.
175178
* `aseg.tsv` contains subcortical information from the aseg segmentation.
176-
* `euler.tsv` contains the euler numbers
179+
* `euler.tsv` contains the euler numbers

0 commit comments

Comments
 (0)