Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fdt
Commits
8a10fb63
"rubixoptions.cc" did not exist on "f71525ecfc51b88ceab3bf07b2b8a70f5f5fee2d"
Commit
8a10fb63
authored
18 years ago
by
Saad Jbabdi
Browse files
Options
Downloads
Patches
Plain Diff
network mode corrections
parent
0326592c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
probtrackxOptions.h
+8
-8
8 additions, 8 deletions
probtrackxOptions.h
streamlines.cc
+1
-1
1 addition, 1 deletion
streamlines.cc
with
9 additions
and
9 deletions
probtrackxOptions.h
+
8
−
8
View file @
8a10fb63
...
...
@@ -48,7 +48,7 @@ class probtrackxOptions {
Option
<
string
>
seedref
;
Option
<
string
>
mask2
;
Option
<
string
>
waypoints
;
Option
<
bool
>
waypoints_and
;
Option
<
bool
>
network
;
Option
<
string
>
meshfile
;
FmribOption
<
string
>
lrmask
;
Option
<
string
>
logdir
;
...
...
@@ -148,12 +148,12 @@ class probtrackxOptions {
string
(
"second mask in twomask_symm mode."
),
false
,
requires_argument
),
waypoints
(
string
(
"--waypoints"
),
string
(
""
),
string
(
"Waypoint mask or ascii list of waypoint masks"
),
string
(
"Waypoint mask or ascii list of waypoint
masks - only keep paths going through ALL the
masks"
),
false
,
requires_argument
),
waypoints_and
(
string
(
"--network"
),
tru
e
,
string
(
"
Searches for pathways connecting every seed to at least one waypoint
"
),
false
,
no_argument
),
meshfile
(
string
(
"--mesh"
),
string
(
""
),
network
(
string
(
"--network"
),
fals
e
,
string
(
"
Only keep paths going through at least one waypoint mask, or another seed in multiple seeds mode
"
),
false
,
no_argument
),
meshfile
(
string
(
"--mesh"
),
string
(
""
),
string
(
""
),
false
,
requires_argument
),
lrmask
(
string
(
"--lrmask"
),
string
(
""
),
...
...
@@ -195,7 +195,7 @@ class probtrackxOptions {
rseed
(
string
(
"--rseed"
),
12345
,
string
(
"Random seed"
),
false
,
requires_argument
),
options
(
"probtrack"
,
"probtrack -s <basename> -m <maskname> -x <seedfile> -o <output> --targetmasks=<textfile>
\n
probtrack --help
\n
"
)
options
(
"probtrack
x
"
,
"probtrack
x
-s <basename> -m <maskname> -x <seedfile> -o <output> --targetmasks=<textfile>
\n
probtrack
x
--help
\n
"
)
{
...
...
@@ -210,7 +210,7 @@ class probtrackxOptions {
options
.
add
(
skipmask
);
options
.
add
(
mask2
);
options
.
add
(
waypoints
);
options
.
add
(
waypoints_and
);
options
.
add
(
network
);
options
.
add
(
meshfile
);
options
.
add
(
lrmask
);
options
.
add
(
seedref
);
...
...
This diff is collapsed.
Click to expand it.
streamlines.cc
+
1
−
1
View file @
8a10fb63
...
...
@@ -200,7 +200,7 @@ namespace TRACT{
bool
accept_path
=
true
;
if
(
m_passed_flags
.
size
()
!=
0
){
if
(
opts
.
waypoints_and
.
value
()){
if
(
!
opts
.
network
.
value
()){
for
(
unsigned
int
i
=
0
;
i
<
m_passed_flags
.
size
();
i
++
)
if
(
!
m_passed_flags
[
i
])
accept_path
=
false
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment