Skip to content
Snippets Groups Projects
Commit 67f98214 authored by Tim Behrens's avatar Tim Behrens
Browse files

*** empty log message ***

parent 47d406d5
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ input=`${FSLDIR}/bin/remove_ext ${1}`
output=`${FSLDIR}/bin/remove_ext ${2}`
ref=${3}
if [ ! `${FSLDIR}/bin/imtest $input` ];then
if [ `${FSLDIR}/bin/imtest $input` -eq 0 ];then
echo "Input does not exist or is not in analyze format"
exit
fi
......
......@@ -18,9 +18,11 @@ Clean_Exit(){
if [ -d ${subjdir}.bedpost/logs/pid_${$} ];then
i=`ls ${subjdir}.bedpost/logs/pid_${$}`
for j in ${i};do
host=`echo $j | awk --field-separator=_fdt_ '{print $1}'`
pid=`echo $j | awk --field-separator=_fdt_ '{print $2}'`
${FSL_REMOTE_CALL} $host "kill -KILL $pid" #this leaves one child process per processor - what can you do?
host=`echo $j | awk -F _fdt_ '{print $1}'`
pid=`echo $j | awk -F _fdt_ '{print $2}'`
# ${FSL_REMOTE_CALL} $host "kill -KILL $pid" #this leaves one child process per processor - what can you do?
$FSL_REMOTE_CALL $host "if [ -r /etc/fslconf/fsl.sh ];then . /etc/fslconf/fsl.sh; elif [ -r /usr/local/etc/fslconf/fsl.sh ];then . /usr/local/etc/fslconf/fsl.sh; elif [ -r \${HOME}/.fslconf/fsl.sh ]; then . \${HOME}/.fslconf/fsl.sh; fi; if [ x\${FSLDIR} != "x" ];then \${FSLDIR}/bin/bedpost_kill_pid ${pid} >/dev/null 2>&1; else echo FSLDIR not set in any default location on machine `hostname`;fi" >/dev/null 2>&1 &
rm ${subjdir}.bedpost/logs/pid_${$}/${j}
done
fi
......@@ -127,29 +129,38 @@ mkdir -p ${subjdir}.bedpost/logs/pid_${$}
nslices=`avwval ${subjdir}/data dim3`
#${FSLDIR}/bin/avwslice ${subjdir}/data
#${FSLDIR}/bin/avwslice ${subjdir}/nodif_brain_mask
${FSLDIR}/bin/avwslice ${subjdir}/data
${FSLDIR}/bin/avwslice ${subjdir}/nodif_brain_mask
#following need to be setup elsewhere
#FSL_MACHINE_LIST="cayenne0 cayenne0 cayenne2 cayenne3"
#FSL_REMOTE_CALL="ssh"
#FSL_MACHINE_LIST="list of machines (can be duplicated for two processors etc. )"
#FSL_REMOTE_CALL="ssh (or rsh or whatever you want to use)"
if [ "$FSL_MACHINE_LIST" = "" ] ; then
echo "processing data on local host"
${FSLDIR}/bin/bedpost_proc $subjdir $nslices
else
echo "processing data on hosts: $FSL_MACHINE_LIST"
for machine in $FSL_MACHINE_LIST; do
$FSL_REMOTE_CALL $machine "if [ -r /etc/fslconf/fsl.sh ];then . /etc/fslconf/fsl.sh; elif [ -r /usr/local/etc/fslconf/fsl.sh ];then . /usr/local/etc/fslconf/fsl.sh; elif [ -r \${HOME}/.fslconf/fsl.sh ]; then . \${HOME}/.fslconf/fsl.sh; fi; if [ x\${FSLDIR} != "x" ];then \${FSLDIR}/bin/bedpost_proc $subjdir $nslices ${subjdir}.bedpost/logs/pid_${$}; else echo FSLDIR not set in any default location on machine `hostname`;fi" &
done
fi
b=0
finished=0;
while [ $finished -eq 0 ];do
b=`expr $b + 1 `
sleep 60;
nfin=`ls ${subjdir}.bedpost/logs/.*_finished |wc -w` #fix this (see Bedpost)
nfin=`echo ${subjdir}.bedpost/logs/.*_finished | grep -v ".\*" |wc -w`
if [ $nfin -eq $nslices ];then
finished=1;
fi
if [ $b -eq 10 ]; then
echo "$nfin slices processed"
b=0
fi
done
#postprocessing
......
#!/bin/sh
if [ "$FSL_MACHINE_LIST" = "" ] ; then
${FSLDIR}/bin/bedpost_kill_all
else
unique_machines=`echo $FSL_MACHINE_LIST |tr " " \\\n |sort -u`
echo $unique_machines;
for machine in $unique_machines; do
$FSL_REMOTE_CALL $machine "if [ -r /etc/fslconf/fsl.sh ];then . /etc/fslconf/fsl.sh; elif [ -r /usr/local/etc/fslconf/fsl.sh ];then . /usr/local/etc/fslconf/fsl.sh; elif [ -r \${HOME}/.fslconf/fsl.sh ]; then . \${HOME}/.fslconf/fsl.sh; fi; if [ x\${FSLDIR} != "x" ];then \${FSLDIR}/bin/bedpost_kill_all; else echo FSLDIR not set in any default location on machine `hostname`;fi" &
done
fi
#!/bin/sh
j=`ps -U $USER |grep -v grep | grep bedpost|grep -v bedpost_kill | awk '{print $1}'`
if [ "x${j}" != "x" ];then
kill -KILL $j
fi
i=`ps -U $USER |grep -v grep | grep diff_pvm| awk '{print $1}'`
if [ "x${i}" != "x" ];then
kill -KILL $i
fi
#!/bin/sh
Usage(){
echo "bedpost_kill_pid <pid>"
echo ""
echo "<pid> is the pid of the bedpost_proc"
echo "kills this process + all diff_pvm children"
echo ""
exit
}
[ "$1" = "" ] && Usage
pid=$1
i=`ps -fU $USER |grep -v grep | grep diff_pvm |grep ${pid}| awk '{print $2}'`
kill -KILL $pid $i
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