AFNI Message Board

Dear AFNI users-

We are very pleased to announce that the new AFNI Message Board framework is up! Please join us at:

https://discuss.afni.nimh.nih.gov

Existing user accounts have been migrated, so returning users can login by requesting a password reset. New users can create accounts, as well, through a standard account creation process. Please note that these setup emails might initially go to spam folders (esp. for NIH users!), so please check those locations in the beginning.

The current Message Board discussion threads have been migrated to the new framework. The current Message Board will remain visible, but read-only, for a little while.

Sincerely, AFNI HQ

History of AFNI updates  

|
October 17, 2009 05:28PM
With afni_src.tgz downloaded 10/17/2008, @auto_tlrc creates output with "NONE" as the suffix instead of nothing i.e.

@auto_tlrc -base TT_icbm452+tlrc -input anat+orig.

produces anatNONE+tlrc.

The following patch fixes this.

--judd

--- @auto_tlrc.orig 2009-10-17 17:24:33.402077141 -0400
+++ @auto_tlrc 2009-10-17 17:24:25.103324014 -0400
@@ -153,10 +153,6 @@
else
@ cnt ++
set suf = "$argv[$cnt]"
- if ("$suf" == "none" || "$suf" == "NONE" || "$suf" == "None") then
- echo "Suffix not used."
- set suf = ''
- endif
set donext = 0
endif
endif
@@ -273,6 +269,10 @@
echo "Error: Need both -base and -input parameters"
goto END
endif
+ if ("$suf" == "none" || "$suf" == "NONE" || "$suf" == "None") then
+ echo "Suffix not used."
+ set suf = ''
+ endif

goto SET_REF_PATH
SET_REF_PATH_RETURN:
Subject Author Posted

Suffix error in @auto_tlrc

Judd October 17, 2009 05:28PM

Re: Suffix error in @auto_tlrc

rick reynolds October 19, 2009 05:53PM