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
67f98214
Commit
67f98214
authored
20 years ago
by
Tim Behrens
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
47d406d5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
eddy_correct
+1
-1
1 addition, 1 deletion
eddy_correct
old_bedpost
+19
-8
19 additions, 8 deletions
old_bedpost
old_bedpost_cleanup
+12
-0
12 additions, 0 deletions
old_bedpost_cleanup
old_bedpost_kill_all
+9
-0
9 additions, 0 deletions
old_bedpost_kill_all
old_bedpost_kill_pid
+16
-0
16 additions, 0 deletions
old_bedpost_kill_pid
with
57 additions
and
9 deletions
eddy_correct
+
1
−
1
View file @
67f98214
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
old_bedpost
+
19
−
8
View file @
67f98214
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
old_bedpost_cleanup
0 → 100755
+
12
−
0
View file @
67f98214
#!/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
This diff is collapsed.
Click to expand it.
old_bedpost_kill_all
0 → 100755
+
9
−
0
View file @
67f98214
#!/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
This diff is collapsed.
Click to expand it.
old_bedpost_kill_pid
0 → 100755
+
16
−
0
View file @
67f98214
#!/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
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