Skip to content

Commit

Permalink
Merge pull request #40 from BIDS-Apps/chrisfilo-patch-3
Browse files Browse the repository at this point in the history
fix invocations to include license binds
  • Loading branch information
chrisgorgo authored Feb 16, 2018
2 parents cf36097 + bd49b2c commit 0ff9f93
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ To run it in participant level mode (for one participant):
docker run -ti --rm \
-v /Users/filo/data/ds005:/bids_dataset:ro \
-v /Users/filo/outputs:/outputs \
-v /Users/filo/freesurfer_license.txt:/license.txt \
bids/freesurfer \
/bids_dataset /outputs participant --participant_label 01 \
--license_file "license.txt"
--license_file "/license.txt"


#### Group level
Expand All @@ -149,9 +150,10 @@ To create a study specific template run:
docker run -ti --rm \
-v /Users/filo/data/ds005:/bids_dataset:ro \
-v /Users/filo/outputs:/outputs \
-v /Users/filo/freesurfer_license.txt:/license.txt \
bids/freesurfer \
/bids_dataset /outputs group1 \
--license_file "license.txt"
--license_file "/license.txt"

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

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

* `lh.aparc.thickness.tsv` contains cortical thickness values for the
left hemisphere extracted via the aparac parcellation.
* `aseg.tsv` contains subcortical information from the aseg segmentation.
* `euler.tsv` contains the euler numbers
* `euler.tsv` contains the euler numbers

0 comments on commit 0ff9f93

Please sign in to comment.