Skip to content
Snippets Groups Projects
Commit 12fb267b authored by Matthew Webster's avatar Matthew Webster
Browse files

fixed single-seed mode

parent 1690c7e6
No related branches found
No related tags found
No related merge requests found
...@@ -690,6 +690,15 @@ proc fdt:apply { w dialog } { ...@@ -690,6 +690,15 @@ proc fdt:apply { w dialog } {
if { [ file exists $probtrack(output) ] } { if { [ file exists $probtrack(output) ] } {
set canwrite [ YesNoWidget "Overwrite $probtrack(output)?" Yes No ] set canwrite [ YesNoWidget "Overwrite $probtrack(output)?" Yes No ]
} }
set deslashedFileName [ rmSlash $probtrack(output) ]
if {[string index $deslashedFileName 0] != "/"} {
#remove ./ if name only typed in by tailing value
set deslashedFileName [file tail $deslashedFileName ]
set deslashedFileName [pwd]/$deslashedFileName
set probtrack(output) [rmSlash $deslashedFileName]
}
if { $canwrite } { if { $canwrite } {
puts "rm -rf $probtrack(output)" puts "rm -rf $probtrack(output)"
exec rm -rf $probtrack(output) exec rm -rf $probtrack(output)
...@@ -727,6 +736,7 @@ proc fdt:apply { w dialog } { ...@@ -727,6 +736,7 @@ proc fdt:apply { w dialog } {
} }
switch $probtrack(mode) { switch $probtrack(mode) {
simple { simple {
set singleFileName [ file tail $probtrack(output) ]
set fd [ open "${filebase}_coordinates.txt" w ] set fd [ open "${filebase}_coordinates.txt" w ]
set x $probtrack(x) set x $probtrack(x)
set y $probtrack(y) set y $probtrack(y)
...@@ -750,7 +760,7 @@ proc fdt:apply { w dialog } { ...@@ -750,7 +760,7 @@ proc fdt:apply { w dialog } {
puts $log "set probtrack(y) $probtrack(y)" puts $log "set probtrack(y) $probtrack(y)"
puts $log "set probtrack(z) $probtrack(z)" puts $log "set probtrack(z) $probtrack(z)"
puts $log "set probtrack(units) $probtrack(units)" puts $log "set probtrack(units) $probtrack(units)"
set flags "--mode=simple --seedref=$probtrack(reference) -o $probtrack(output) -x ${filebase}_coordinates.txt $flags" set flags "--mode=simple --seedref=$probtrack(reference) -o ${probtrack(output)}/${singleFileName} -x ${filebase}_coordinates.txt $flags"
} }
seedmask { seedmask {
if { [ file exists ${FSLDIR}/bin/reord_OM ] } { if { [ file exists ${FSLDIR}/bin/reord_OM ] } {
......
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