History of AFNI updates  

|
April 30, 2013 04:14PM
Hi Gang,

It appears that R_io.so was built under R 2.14 and will not load on R 2.15.3 which I'm running. While trying to figure out why read.AFNI was printing the following and terminating on me

** Error:
Missing R_io.so

I found a a problem in AFNiio.R at line 23 in the set_R_io definition
Currently it reads
if (!exists('dd')) {
but should read
if (inherits (dd, "try-error")) {
to make explicit that you are looking for an error class rather than testing the existance of an R object or not.

As it stands the if statement is always true since 'dd' is a text object that will always exist and the R code never recognizes the failure to load R_io.so leading to the failure of read.AFNI when the code is working under the assumption that R_io.so was successfully loaded when it was not.

Bye,

Colm.
Subject Author Posted

r version?

Colm Connolly April 30, 2013 01:35PM

Re: r version?

gang April 30, 2013 03:54PM

Re: r version?

Colm Connolly April 30, 2013 04:14PM

Re: r version?

gang May 01, 2013 09:52AM

Re: r version?

Colm Connolly May 01, 2013 03:15PM

Re: r version?

gang May 02, 2013 10:44AM

Re: r version?

Colm Connolly May 02, 2013 01:38PM

Re: r version?

ziad May 03, 2013 09:50AM

Re: r version?

rick reynolds April 30, 2013 04:02PM

Re: r version?

tarazlee May 09, 2013 08:25PM

Re: r version?

rick reynolds May 09, 2013 09:19PM

Re: r version?

tarazlee May 14, 2013 11:59AM

Re: r version?

rick reynolds May 14, 2013 12:32PM

Re: r version?

tarazlee May 16, 2013 01:19PM

Re: r version?

Anonymous User May 16, 2013 01:29PM

Re: r version?

tarazlee May 21, 2013 06:25PM

Re: r version?

Brock Kirwan June 04, 2013 05:45PM

Re: r version?

gang June 04, 2013 07:31PM

Re: r version?

Brock Kirwan June 04, 2013 11:56PM

Re: r version?

Rodrigo Patino July 22, 2013 07:27PM

Re: r version?

gang July 23, 2013 10:02AM

Re: r version?

Rodrigo Patino July 23, 2013 01:20PM

Re: r version?

rick reynolds July 23, 2013 08:17PM

Re: r version?

rick reynolds July 23, 2013 01:39PM

Re: r version?

Rodrigo Patino July 23, 2013 05:53PM

Re: r version?

gang July 23, 2013 06:10PM

Re: r version?

paranoidandroid January 13, 2014 10:19AM

Re: r version?

gang January 13, 2014 06:35PM