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

output logfile for bedpostx

parent 0b227443
No related branches found
No related tags found
No related merge requests found
...@@ -645,6 +645,13 @@ proc fdt:apply { w dialog } { ...@@ -645,6 +645,13 @@ proc fdt:apply { w dialog } {
} }
if { $canwrite } { if { $canwrite } {
puts "bedpostx $bedpost(directory) -n $bedpost(nfibres) -w $bedpost(weight) -b $bedpost(burnin)" puts "bedpostx $bedpost(directory) -n $bedpost(nfibres) -w $bedpost(weight) -b $bedpost(burnin)"
set filebase $bedpost(directory)/bedpostcom
set logfile "${filebase}_log.tcl"
set log [open "$logfile" w]
puts $log "bedpostx $bedpost(directory) -n $bedpost(nfibres) -w $bedpost(weight) -b $bedpost(burnin)"
close $log
fdt_monitor $w "${FSLDIR}/bin/bedpostx $bedpost(directory) -n $bedpost(nfibres) -w $bedpost(weight) -b $bedpost(burnin)" fdt_monitor $w "${FSLDIR}/bin/bedpostx $bedpost(directory) -n $bedpost(nfibres) -w $bedpost(weight) -b $bedpost(burnin)"
} }
} }
......
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