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
0c383356
Commit
0c383356
authored
17 years ago
by
Duncan Mortimer
Browse files
Options
Downloads
Patches
Plain Diff
Now returns exit code 1 on error
parent
78704d9f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
old_bedpost
+13
-12
13 additions, 12 deletions
old_bedpost
with
13 additions
and
12 deletions
old_bedpost
+
13
−
12
View file @
0c383356
...
@@ -13,7 +13,7 @@ Usage() {
...
@@ -13,7 +13,7 @@ Usage() {
echo
"expects to find bvals and bvecs in subject directory"
echo
"expects to find bvals and bvecs in subject directory"
echo
"expects to find data nodif_brain_mask nodif in subject directory"
echo
"expects to find data nodif_brain_mask nodif in subject directory"
echo
""
echo
""
exit
exit
1
}
}
trap
Clean_Exit 2
trap
Clean_Exit 2
...
@@ -35,7 +35,7 @@ Clean_Exit(){
...
@@ -35,7 +35,7 @@ Clean_Exit(){
rm
${
subjdir
}
.bedpost/logs/pid_
${
$}
/
${
j
}
rm
${
subjdir
}
.bedpost/logs/pid_
${
$}
/
${
j
}
done
done
fi
fi
ExitUnlock;
ExitUnlock
1
;
}
}
Lock
(){
Lock
(){
...
@@ -45,6 +45,7 @@ Lock(){
...
@@ -45,6 +45,7 @@ Lock(){
}
}
ExitUnlock
(){
ExitUnlock
(){
returncode
=
$1
if
[
-f
${
FSLLOCKDIR
}
/.bedpost.lock
]
;
then
if
[
-f
${
FSLLOCKDIR
}
/.bedpost.lock
]
;
then
rm
${
FSLLOCKDIR
}
/.bedpost.lock
rm
${
FSLLOCKDIR
}
/.bedpost.lock
fi
fi
...
@@ -60,7 +61,7 @@ ExitUnlock(){
...
@@ -60,7 +61,7 @@ ExitUnlock(){
rm
-f
${
subjdir
}
/nodif_brain_mask_slice_
*
rm
-f
${
subjdir
}
/nodif_brain_mask_slice_
*
fi
fi
exit
exit
$returncode
}
}
LockTest
(){
LockTest
(){
...
@@ -92,13 +93,13 @@ make_absolute(){
...
@@ -92,13 +93,13 @@ make_absolute(){
if
[
`
LockTest
`
-eq
0
]
;
then
if
[
`
LockTest
`
-eq
0
]
;
then
echo
"bedpost is currently being run - try again later"
echo
"bedpost is currently being run - try again later"
exit
exit
1
fi
fi
if
[
"x
${
FSLMACHINELIST
}
"
!=
"x"
]
;
then
if
[
"x
${
FSLMACHINELIST
}
"
!=
"x"
]
;
then
if
[
"x
${
FSLREMOTECALL
}
"
=
"x"
]
;
then
if
[
"x
${
FSLREMOTECALL
}
"
=
"x"
]
;
then
echo
"error: you must set FSLREMOTECALL if you have set FSLMACHINELIST"
echo
"error: you must set FSLREMOTECALL if you have set FSLMACHINELIST"
exit
exit
1
fi
fi
fi
fi
...
@@ -114,32 +115,32 @@ echo subjectdir is $subjdir
...
@@ -114,32 +115,32 @@ echo subjectdir is $subjdir
if
[
!
-d
$subjdir
]
;
then
if
[
!
-d
$subjdir
]
;
then
echo
"subject directory
$1
not found"
echo
"subject directory
$1
not found"
ExitUnlock
ExitUnlock
1
fi
fi
if
[
!
-f
${
subjdir
}
/bvecs
]
;
then
if
[
!
-f
${
subjdir
}
/bvecs
]
;
then
echo
"
${
subjdir
}
/bvecs not found"
echo
"
${
subjdir
}
/bvecs not found"
ExitUnlock
ExitUnlock
1
fi
fi
if
[
!
-f
${
subjdir
}
/bvals
]
;
then
if
[
!
-f
${
subjdir
}
/bvals
]
;
then
echo
"
${
subjdir
}
/bvals not found"
echo
"
${
subjdir
}
/bvals not found"
ExitUnlock
ExitUnlock
1
fi
fi
if
[
`
${
FSLDIR
}
/bin/imtest
${
subjdir
}
/data
`
-eq
0
]
;
then
if
[
`
${
FSLDIR
}
/bin/imtest
${
subjdir
}
/data
`
-eq
0
]
;
then
echo
"
${
subjdir
}
/data not found"
echo
"
${
subjdir
}
/data not found"
ExitUnlock
ExitUnlock
1
fi
fi
if
[
`
${
FSLDIR
}
/bin/imtest
${
subjdir
}
/nodif
`
-eq
0
]
;
then
if
[
`
${
FSLDIR
}
/bin/imtest
${
subjdir
}
/nodif
`
-eq
0
]
;
then
echo
"
${
subjdir
}
/nodif not found"
echo
"
${
subjdir
}
/nodif not found"
ExitUnlock
ExitUnlock
1
fi
fi
if
[
`
${
FSLDIR
}
/bin/imtest
${
subjdir
}
/nodif_brain_mask
`
-eq
0
]
;
then
if
[
`
${
FSLDIR
}
/bin/imtest
${
subjdir
}
/nodif_brain_mask
`
-eq
0
]
;
then
echo
"
${
subjdir
}
/nodif_brain_mask not found"
echo
"
${
subjdir
}
/nodif_brain_mask not found"
ExitUnlock
ExitUnlock
1
fi
fi
...
@@ -228,7 +229,7 @@ echo 0 0 1 0 >> ${xfmdir}/eye.mat
...
@@ -228,7 +229,7 @@ echo 0 0 1 0 >> ${xfmdir}/eye.mat
echo 0 0 0 1 >>
${
xfmdir
}
/eye.mat
echo 0 0 0 1 >>
${
xfmdir
}
/eye.mat
echo "
DONE
"
echo "
DONE
"
ExitUnlock
ExitUnlock
0
...
...
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