Hi,
I intend to upgrade FSL 4.1 on the YNiC Systems over the weekend from the current version (4.1.4) to the latest release 4.1.5.2. Details of the changes (which are only minor) are available at:
http://www.fmrib.ox.ac.uk/fsl/fsl/whatsnew.html#revisions
The only thing which is really relevant is that FLAMEO has a fix in it (which is strangely listed in the 4.1.4 errata, but seems to have only been released in 4.1.5)
In addition, I've merged two extra bug fixes, one in fslmaths (related to TFCE calculation) and a syntax error fix in one of the scripts. Details are below as a patch series.
Thanks,
Mark
diff --git a/debian/changelog b/debian/changelog index f2b3942..0c7f3ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,10 @@ fsl-4.1 (4.1.5.2-1~yniclenny1) unstable; urgency=low
* Merge 4.1.5.2 release. + * Merge syntax fix in rotate_bvecs. + * Merge fix for TFCE calculation in fslmaths.
- -- Mark Hymers mark.hymers@ynic.york.ac.uk Wed, 05 May 2010 17:52:06 +0100 + -- Mark Hymers mark.hymers@ynic.york.ac.uk Thu, 06 May 2010 10:16:07 +0100
fsl-4.1 (4.1.4-3~yniclenny3) unstable; urgency=low
diff --git a/src/avwutils/fslmaths.cc b/src/avwutils/fslmaths.cc index 0df7ef3..c47c854 100644 --- a/src/avwutils/fslmaths.cc +++ b/src/avwutils/fslmaths.cc @@ -823,7 +823,7 @@ if (!separatenoise) int connectivity = atoi(argv[++i]);
for(int t=0;t<input_volume.tsize();t++) - tfce(input_volume[t], height_power, size_power, connectivity, 0, 0); + tfce(input_volume[t], height_power, size_power, connectivity, 0, input_volume[t].max()/100.0); }
// }}} diff --git a/src/fdt/rotate_bvecs b/src/fdt/rotate_bvecs index e6aade9..2c10968 100755 --- a/src/fdt/rotate_bvecs +++ b/src/fdt/rotate_bvecs @@ -18,7 +18,7 @@ if [ -f ${bvecs}_old ];then echo "If you want to force this program to run, please remove the file ${bvecs}_old" echo "" exit 1 -done +fi /bin/cp ${bvecs} ${bvecs}_old #/bin/rm -f ${bvecs}