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  

|
April 08, 2020 05:39PM
Hi, Joy-

What happened in the lines just preceding that ERROR message? My guess is that failure occurs because a previous step in the script failed (is there a "killed" message, perhaps, of running out of memory?), so that an expected file wasn't created and therefore caused this error. That is, this cascade of error messages probably started with some earlier woe, but I'm not sure...

Sidenote:
It can be useful to capture the output of scripts/commands while they run, so you don't have to copy+paste from a terminal; you can search more easily in text files, and/or send them in when you have a question. To do *that*, you first have to know what shell you use in a terminal. To discover that, type:
echo $0
(that last character is a zero), and see whether the output is:
+ "bash" or or "-bash" (in which case you have a "bash" terminal shell)
+ "tcsh" or or "-tcsh" (in which case you have a "tcsh" terminal shell), or "csh" (which is "csh" close enough to "tcsh" to be treated the same here)
+ or something else (which I will ignore here, because of my own ignorance).

Then, consider you have a COMMAND to run, such as "@SSwarper -input ...", and you want to put a *copy* of everything that shows up in the terminal into a text file as well. For a *bash* shell, you can do this:
COMMAND 2>&1 | tee o.command_copy.txt
and for a *tcsh* shell, you can do this:
COMMAND |& tee o.command_copy.txt
(There is nothing special about the *.txt filename after the command "tee"; you can/should make it something meaningful.)

This doesn't help retrospectively, but can be useful, esp. as you try out new script commands that produce lots of outputs.

-pt
Subject Author Posted

@SSwarper error: ** ERROR: Can't open warp dataset './junk.SSwarper.5XAHIpy2lsU_QQ5_WARP.nii'

joy0617 April 08, 2020 03:52PM

Re: @SSwarper error: ** ERROR: Can't open warp dataset './junk.SSwarper.5XAHIpy2lsU_QQ5_WARP.nii'

ptaylor April 08, 2020 05:39PM

Re: @SSwarper error: ** ERROR: Can't open warp dataset './junk.SSwarper.5XAHIpy2lsU_QQ5_WARP.nii'

joy0617 April 08, 2020 06:06PM

Re: @SSwarper error: ** ERROR: Can't open warp dataset './junk.SSwarper.5XAHIpy2lsU_QQ5_WARP.nii'

joy0617 April 10, 2020 12:38PM

Re: @SSwarper error: ** ERROR: Can't open warp dataset './junk.SSwarper.5XAHIpy2lsU_QQ5_WARP.nii'

ptaylor April 10, 2020 12:42PM

Re: @SSwarper error: ** ERROR: Can't open warp dataset './junk.SSwarper.5XAHIpy2lsU_QQ5_WARP.nii'

krisknut May 18, 2020 10:36AM