Skip to content
Snippets Groups Projects
Commit 1690c7e6 authored by Saad Jbabdi's avatar Saad Jbabdi
Browse files

clarified default options

parent 03486a0e
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,7 @@ class probtrackxOptions { ...@@ -162,7 +162,7 @@ class probtrackxOptions {
string("Activate network mode - only keep paths going through at least one seed mask (required if multiple seed masks)"), string("Activate network mode - only keep paths going through at least one seed mask (required if multiple seed masks)"),
false, no_argument), false, no_argument),
meshfile(string("--mesh"), string(""), meshfile(string("--mesh"), string(""),
string(""), string("Freesurfer-type surface descriptor (in ascii format)"),
false, requires_argument), false, requires_argument),
lrmask(string("--lrmask"), string(""), lrmask(string("--lrmask"), string(""),
string("low resolution binary brain mask for stroring connectivity distribution in matrix2 mode"), string("low resolution binary brain mask for stroring connectivity distribution in matrix2 mode"),
...@@ -174,19 +174,19 @@ class probtrackxOptions { ...@@ -174,19 +174,19 @@ class probtrackxOptions {
string("Use the actual directory name given - i.e. don't add + to make a new directory"), string("Use the actual directory name given - i.e. don't add + to make a new directory"),
false, no_argument), false, no_argument),
nparticles(string("-P,--nsamples"), 5000, nparticles(string("-P,--nsamples"), 5000,
string("Number of samples"), string("Number of samples - default=5000"),
false, requires_argument), false, requires_argument),
nsteps(string("-S,--nsteps"), 2000, nsteps(string("-S,--nsteps"), 2000,
string("Number of steps per sample"), string("Number of steps per sample - default=2000"),
false, requires_argument), false, requires_argument),
c_thr(string("-c,--cthr"), 0.2, c_thr(string("-c,--cthr"), 0.2,
string("Curvature threshold - default=0.2"), string("Curvature threshold - default=0.2"),
false, requires_argument), false, requires_argument),
fibthresh(string("--fibthresh"), 0.01, fibthresh(string("--fibthresh"), 0.01,
string("volume fraction before subsidary fibre orientations are considered default=0.01"), string("volume fraction before subsidary fibre orientations are considered - default=0.01"),
false, requires_argument), false, requires_argument),
steplength(string("--steplength"), 0.5, steplength(string("--steplength"), 0.5,
string("steplength"), string("steplength in mm - default=0.5"),
false, requires_argument), false, requires_argument),
loopcheck(string("-l,--loopcheck"), false, loopcheck(string("-l,--loopcheck"), false,
string("perform loopchecks on paths - slower, but allows lower curvature threshold"), string("perform loopchecks on paths - slower, but allows lower curvature threshold"),
...@@ -198,7 +198,7 @@ class probtrackxOptions { ...@@ -198,7 +198,7 @@ class probtrackxOptions {
string("Select randomly from one of the fibres"), string("Select randomly from one of the fibres"),
false, no_argument), false, no_argument),
fibst(string("--fibst"),1, fibst(string("--fibst"),1,
string("Force a starting fibre for tracking (default=1)"), string("Force a starting fibre for tracking - default=1, i.e. first fibre orientation"),
false, requires_argument), false, requires_argument),
modeuler(string("--modeuler"), false, modeuler(string("--modeuler"), false,
string("Use modified euler streamlining"), string("Use modified euler streamlining"),
...@@ -207,7 +207,7 @@ class probtrackxOptions { ...@@ -207,7 +207,7 @@ class probtrackxOptions {
string("Random seed"), string("Random seed"),
false, requires_argument), false, requires_argument),
seedcountastext(string("--seedcountastext"), false, seedcountastext(string("--seedcountastext"), false,
string("Output seed-to-target counts as a text file"), string("Output seed-to-target counts as a text file (useful when seeding from a mesh)"),
false, no_argument), false, no_argument),
options("probtrackx","probtrackx -s <basename> -m <maskname> -x <seedfile> -o <output> --targetmasks=<textfile>\n probtrackx --help\n") options("probtrackx","probtrackx -s <basename> -m <maskname> -x <seedfile> -o <output> --targetmasks=<textfile>\n probtrackx --help\n")
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment