Skip to content

Commit

Permalink
nf: full path reading of subfield input files
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoopes committed Dec 22, 2020
1 parent d9ed621 commit 3d7bcb9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion BrainstemSS/segmentBS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ endif

# If SUBJECTS_DIR is provided, just set it
if ($#argv == 2) then
set SUBJECTS_DIR = $2
set SUBJECTS_DIR = `getfullpath $2`
endif

# Set name of subject
Expand Down
2 changes: 1 addition & 1 deletion HippoSF/segmentHA_T1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ endif

# If SUBJECTS_DIR is provided, just set it
if ($#argv == 2) then
set SUBJECTS_DIR = $2
set SUBJECTS_DIR = `getfullpath $2`
endif

# Set name of subject
Expand Down
2 changes: 1 addition & 1 deletion HippoSF/segmentHA_T1_long.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ endif

# If SUBJECTS_DIR is provided, just set it
if ($#argv == 2) then
set SUBJECTS_DIR = $2
set SUBJECTS_DIR = `getfullpath $2`
endif

# Set base subject
Expand Down
4 changes: 2 additions & 2 deletions HippoSF/segmentHA_T2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ endif

# If SUBJECTS_DIR is provided, just set it
if ($#argv == 5) then
set SUBJECTS_DIR = $5
set SUBJECTS_DIR = `getfullpath $5`
endif

# Set name of subject
set SUBJECTNAME = $1
set T2VOL = $2
set T2VOL = `getfullpath $2`
set ANALYSISID = $3
set USET1 = $4

Expand Down
4 changes: 2 additions & 2 deletions ThalamicNuclei/segmentThalamicNuclei.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ endif

# If SUBJECTS_DIR is provided, just set it
if ($#argv == 2) then
set SUBJECTS_DIR = $2
set SUBJECTS_DIR = `getfullpath $2`
endif

# Set name of subject
Expand Down Expand Up @@ -133,7 +133,7 @@ endif
# Set additional parameters, if necessary
set ANALYSISID="mainFreeSurferT1";
if ($#argv > 2) then
set ADDVOL="$3";
set ADDVOL="`getfullpath $3`";
set ANALYSISID="$4";
set BBREGMODE="$5";
set DOBIASFIELDCORR="1";
Expand Down

0 comments on commit 3d7bcb9

Please sign in to comment.