Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
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
base
Commits
968b0291
Commit
968b0291
authored
4 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
MNT: Given that fsl.sh and fsl-devel.sh are pretty much identical, why not
make the latter call the former
parent
5e4dfe9f
No related branches found
No related tags found
1 merge request
!3
Rf/copyrights
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
etc/fslconf/fsl-devel.sh
+3
-72
3 additions, 72 deletions
etc/fslconf/fsl-devel.sh
etc/fslconf/fsl.sh
+1
-2
1 addition, 2 deletions
etc/fslconf/fsl.sh
with
4 additions
and
74 deletions
etc/fslconf/fsl-devel.sh
+
3
−
72
View file @
968b0291
# FSL configuration file
# FSL configuration file
for developers
# - to be sourced by the user, typically in .bashrc or equivalent
# - to be sourced by the user, typically in .bashrc or equivalent
# - note that the user should set
#
# Written by Mark Jenkinson
# Written by Mark Jenkinson
# FMRIB Analysis Group, University of Oxford
# FMRIB Analysis Group, University of Oxford
# SHBASECOPYRIGHT
# SHBASECOPYRIGHT
#### Set up standard FSL user environment variables ####
# The following variable selects the default output image type
# Legal values are: ANALYZE NIFTI NIFTI_PAIR ANALYZE_GZ NIFTI_GZ NIFTI_PAIR_GZ
# This would typically be overwritten in ${HOME}/.fslconf/fsl.sh if the user wished
# to write files with a different format
FSLOUTPUTTYPE
=
NIFTI_GZ
export
FSLOUTPUTTYPE
# Comment out the definition of FSLMULTIFILEQUIT to enable
# FSL programs to soldier on after detecting multiple image
# files with the same basename ( e.g. epi.hdr and epi.nii )
FSLMULTIFILEQUIT
=
TRUE
;
export
FSLMULTIFILEQUIT
# The following variables specify paths for programs and can be changed
# or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX)
FSLTCLSH
=
$FSLDIR
/bin/fsltclsh
FSLWISH
=
$FSLDIR
/bin/fslwish
export
FSLTCLSH FSLWISH
# The following variables are used for running code in parallel across
# several machines ( i.e. for FDT )
FSLLOCKDIR
=
FSLMACHINELIST
=
FSLREMOTECALL
=
export
FSLLOCKDIR FSLMACHINELIST FSLREMOTECALL
# The following variables are used to configure CUDA capable queues - if you
# are using Grid Engine then this queue will be used to enqueue tasks that
# support execution on NVIDIA CUDA hardware.
FSLGECUDAQ
=
cuda.q
export
FSLGECUDAQ
# Set up development variables (not for the faint-hearted)
FSLCONFDIR
=
$FSLDIR
/config
FSLCONFDIR
=
$FSLDIR
/config
FSLMACHTYPE
=
`
$FSLDIR
/etc/fslconf/fslmachtype.sh
`
FSLMACHTYPE
=
`
$FSLDIR
/etc/fslconf/fslmachtype.sh
`
export
FSLCONFDIR FSLMACHTYPE
export
FSLCONFDIR FSLMACHTYPE
source
$FSLDIR
/etc/fslconf/fsl.sh
###################################################
### Add other global environment variables here ###
### or change the definitions above ###
###################################################
# USER VARIABLES HERE
###################################################
#### DO NOT ADD ANYTHING BELOW THIS LINE ####
###################################################
if
[
-f
/usr/local/etc/fslconf/fsl.sh
]
;
then
.
/usr/local/etc/fslconf/fsl.sh
;
fi
if
[
-f
/etc/fslconf/fsl.sh
]
;
then
.
/etc/fslconf/fsl.sh
;
fi
if
[
-f
"
${
HOME
}
/.fslconf/fsl.sh"
]
;
then
.
"
${
HOME
}
/.fslconf/fsl.sh"
;
fi
This diff is collapsed.
Click to expand it.
etc/fslconf/fsl.sh
+
1
−
2
View file @
968b0291
# FSL configuration file
# FSL configuration file
# - to be sourced by the user, typically in .bashrc or equivalent
# - to be sourced by the user, typically in .bashrc or equivalent
# - note that the user should set
#
# Written by Mark Jenkinson
# Written by Mark Jenkinson
# FMRIB Analysis Group, University of Oxford
# FMRIB Analysis Group, University of Oxford
...
...
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