Skip to content

Commit

Permalink
docs refinement
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgorgo committed Oct 25, 2017
1 parent 4c9239d commit 802383e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 209 deletions.
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,9 @@ This App has the following command line arguments:
--template_name TEMPLATE_NAME
Name for the custom group level template generated for
this dataset
--license_key LICENSE_KEY
FreeSurfer license key - letters and numbers after "*"
in the email you received after registration. To
register (for free) visit
--license_file LICENSE_FILE
Path to FreeSurfer license key file. To obtain it you
need to register (for free) visit
https://surfer.nmr.mgh.harvard.edu/registration.html
--acquisition_label ACQUISITION_LABEL
If the dataset contains multiple T1 weighted images
Expand Down Expand Up @@ -112,7 +111,7 @@ To run it in participant level mode (for one participant):
-v /Users/filo/outputs:/outputs \
bids/freesurfer \
/bids_dataset /outputs participant --participant_label 01 \
--license_key "XXXXXXXX"
--license_file "license.txt"


#### Group level
Expand All @@ -126,7 +125,7 @@ To create a study specific template run:
-v /Users/filo/outputs:/outputs \
bids/freesurfer \
/bids_dataset /outputs group1 \
--license_key "XXXXXXXX"
--license_file "license.txt"

To export tables with aggregated measurements within regions of
cortical parcellation and subcortical segementation run:
Expand All @@ -136,5 +135,5 @@ cortical parcellation and subcortical segementation run:
-v /Users/filo/outputs:/outputs \
bids/freesurfer \
/bids_dataset /outputs group2 \
--license_key "XXXXXXXX"
--license_file "license.txt"
Also see *--parcellations* and *--measurements* arguments.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def run(command, env={}, ignore_errors=False):
nargs="+")
parser.add_argument('--template_name', help='Name for the custom group level template generated for this dataset',
default="average")
parser.add_argument('--license_file', help='FreeSurfer license key file. To obtain it you need to register (for free) at https://surfer.nmr.mgh.harvard.edu/registration.html',
parser.add_argument('--license_file', help='Path to FreeSurfer license key file. To obtain it you need to register (for free) at https://surfer.nmr.mgh.harvard.edu/registration.html',
required=True, type=str)
parser.add_argument('--acquisition_label', help='If the dataset contains multiple T1 weighted images from different acquisitions which one should be used? Corresponds to "acq-<acquisition_label>"')
parser.add_argument('--refine_pial_acquisition_label', help='If the dataset contains multiple T2 or FLAIR weighted images from different acquisitions which one should be used? Corresponds to "acq-<acquisition_label>"')
Expand Down

0 comments on commit 802383e

Please sign in to comment.