<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://stage.nitrcce.org/themes/nitrc3.0/css/rss.xsl.php?feed=https://stage.nitrcce.org/export/rss20_forum.php?forum_id=1296" ?>
<?xml-stylesheet type="text/css" href="https://stage.nitrcce.org/themes/nitrc3.0/css/rss.css" ?>
<rss version="2.0"> <channel>
  <title>NITRC JIP fMRI Analysis Toolkit Forum: open-discussion</title>
  <link>http://stage.nitrcce.org/forum/forum.php?forum_id=1296</link>
  <description>General Discussion</description>
  <language>en-us</language>
  <copyright>Copyright 2000-2026 NITRC OSI</copyright>
  <webMaster></webMaster>
  <lastBuildDate>Wed, 15 Apr 2026 23:07:01 GMT</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>NITRC RSS generator</generator>
  <item>
   <title>RE: JIP installation on windows</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=2502&amp;forum_id=1296</link>
   <description>Hi Alessandra,&lt;br /&gt;
&lt;br /&gt;
I download Cygwin/x through the main site: www.cygwin.com.&lt;br /&gt;
The direct link is x.cygwin.com.  As I recall (it's been some time),&lt;br /&gt;
I used the default download.  Click on the &amp;quot;setup.exe&amp;quot; link to download&lt;br /&gt;
a setup file, and then choose &amp;quot;Install from web&amp;quot;. The documentation on the site is good.&lt;br /&gt;
&lt;br /&gt;
To compile jip, you need&lt;br /&gt;
1) a unix/Linux environment (Cygwin), and&lt;br /&gt;
2) X11 libraries.  The required files will be found in /usr/X11R6/lib and /usr/X11R6/include under the cygwin folder.&lt;br /&gt;
&lt;br /&gt;
Hopefully the makefiles that I provide will work without modification.&lt;br /&gt;
If you install jip code in &amp;quot;jip-main&amp;quot;, then try this:&lt;br /&gt;
cd jip-main/build-jip&lt;br /&gt;
tcsh&lt;br /&gt;
source build-all.tcsh&lt;br /&gt;
&lt;br /&gt;
That will try to build everything, including the required NIFTI, ZLIB, and FFTW components.&lt;br /&gt;
&lt;br /&gt;
Best,&lt;br /&gt;
Joe</description>
   <author>Joseph Mandeville</author>
   <pubDate>Tue, 19 Jul 2011 23:06:11 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=2502&amp;forum_id=1296</guid>
  </item>
  <item>
   <title>JIP installation on windows</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=2502&amp;forum_id=1296</link>
   <description>Hi, I need to install JIP on windows (windows 7 32 bit).&lt;br /&gt;
Can you provide me some installation Instruction? I see that I need Cgwin to install it, can you suggest me the best version to download?&lt;br /&gt;
Thank you in advance, &lt;br /&gt;
Alessandra</description>
   <author>Alessandra Paladini</author>
   <pubDate>Fri, 08 Jul 2011 8:29:09 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=2502&amp;forum_id=1296</guid>
  </item>
  <item>
   <title>RE: Welcome to Open-Discussion</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=1227&amp;forum_id=1296</link>
   <description>Hi Katelin,&lt;br /&gt;
&lt;br /&gt;
On Linux, executables are invoked from the command line by referencing the name of the executable with an interpretable path. So, if jip-display is sitting on /home/katelin/jip-current/jip-display/Linux-x86_64, then you can run it by typing&lt;br /&gt;
/home/katelin/jip-current/jip-display/Linux-x86_64/jip-display   or   ~katelin/jip-current/jip-display/Linux-86_64/jip-display.&lt;br /&gt;
&lt;br /&gt;
I set up executables to run through shell scripts, which provide a number of advantages:&lt;br /&gt;
1) aliases are defined so that you don't have to type as much,&lt;br /&gt;
2) If you switch from a 64-bit machine to a 32-bit machine, you don't have to change anything (the 32-bit executable will be used),&lt;br /&gt;
3) an environment variable is defined (JIP_HOME), which enables programs to find help files.&lt;br /&gt;
&lt;br /&gt;
I strongly suggest doing this:&lt;br /&gt;
&lt;br /&gt;
Let's say that you now have a directory named /home/katelin/jip-current:&lt;br /&gt;
1) If you are using the tcsh or csh Linux shell, then edit the file /home/katelin/jip-current/define-jip.tcsh&lt;br /&gt;
    If you are using the bash         Linux shell, then edit the file /home/katelin/jip-current/define-jip.bash&lt;br /&gt;
    In either case, use the editor to change the directory name corresponding to JIP_HOME to point to the directory /home/katelin/jip-current&lt;br /&gt;
2) To define jip executables, do this:&lt;br /&gt;
    source /home/katelin/jip-current/define-jip.tcsh&lt;br /&gt;
    This Linux script will tell you the names of aliases that have been defined.  For instance, xd points to the display package.&lt;br /&gt;
    If you have a NIFTI file &amp;quot;myfile.nii&amp;quot;, then you can display it from Linux by typing &amp;quot;xd myfile.nii&amp;quot;&lt;br /&gt;
3) So that you don't have to &amp;quot;source&amp;quot; the script every time you login, put this into your .cshrc:&lt;br /&gt;
    source /home/katelin/jip-current/define-jip.tcsh 1&lt;br /&gt;
    The &amp;quot;1&amp;quot; at the end simply suppresses output, so that don't get messages from &amp;quot;define-jip.tcsh&amp;quot; every time you login.&lt;br /&gt;
    If you are using the bash shell, do exactly the same thing but replace &amp;quot;define-jip.tcsh&amp;quot; with &amp;quot;define-jip.bash&amp;quot;&lt;br /&gt;
&lt;br /&gt;
That should do it.&lt;br /&gt;
If you other questions on this subject, please contact me directly (jbm@nmr.mgh.harvard.edu).&lt;br /&gt;
&lt;br /&gt;
Best,&lt;br /&gt;
Joe</description>
   <author>Joseph Mandeville</author>
   <pubDate>Wed, 23 Feb 2011 22:42:48 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=1227&amp;forum_id=1296</guid>
  </item>
  <item>
   <title>RE: Welcome to Open-Discussion</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=1227&amp;forum_id=1296</link>
   <description>OK, you'll have to forgive me if these are really basic questions but I'm new to the image processing world. I'd like to use your JIP program to look at some BOLD data from rats and I don't really know where to begin. I've downloaded the program and put it in my home path as it said to do in the read me file but now I'm at a standstill. Is there an executable file I can run? I'm on a 64bit Linux system running Suse if that helps, but when I click the exectuable files in the folders I downloaded nothing happens.&lt;br /&gt;
&lt;br /&gt;
Thanks for any help!&lt;br /&gt;
Katelin</description>
   <author>Katelin Engerer</author>
   <pubDate>Wed, 23 Feb 2011 21:22:35 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=1227&amp;forum_id=1296</guid>
  </item>
  <item>
   <title>RE: bash shell definition script</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=1975&amp;forum_id=1296</link>
   <description>erratum: One needs to &amp;quot;source&amp;quot; the script in the tcsh, just like in the bash shell.&lt;br /&gt;
&lt;br /&gt;
% tcsh&lt;br /&gt;
% source define-jip.tcsh&lt;br /&gt;
&lt;br /&gt;
Sorry for the confusion.  This is described correctly in README.jip on the main jip directory.&lt;br /&gt;
</description>
   <author>Joseph Mandeville</author>
   <pubDate>Mon, 24 Jan 2011 1:28:39 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=1975&amp;forum_id=1296</guid>
  </item>
  <item>
   <title>bash shell definition script</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=1975&amp;forum_id=1296</link>
   <description>In the distributions to date, a script &amp;quot;define-jip.tcsh&amp;quot; is included.&lt;br /&gt;
To use this script successfully, one must be working in the tcsh shell.&lt;br /&gt;
If you are not using this shell, you have two options:&lt;br /&gt;
&lt;br /&gt;
1) Switch to tcsh like this (&amp;quot;%&amp;quot; represents the Unix/Linux prompt):&lt;br /&gt;
     % tcsh&lt;br /&gt;
     % define-jip.tcsh&lt;br /&gt;
... or put these definitions into your .cshrc startup file.  Use any argument to suppress output:&lt;br /&gt;
     source absolute_path/define-jip.tcsh 1&lt;br /&gt;
&lt;br /&gt;
2) Modify the script for your particular Unix/Linux shell.  For example, a bash script is shown&lt;br /&gt;
below.  You must SOURCE this script, like this:&lt;br /&gt;
     source define-jip.bash&lt;br /&gt;
but NOT like this:&lt;br /&gt;
     ./define-jip.bash&lt;br /&gt;
The latter method only creates temporary definitions in the scripting shell, not the working shell.&lt;br /&gt;
As with define-jip.tcsh, you can put this into your startup file (.bashrc) like this&lt;br /&gt;
     source absolute_path/define-jip.bash 1&lt;br /&gt;
&lt;br /&gt;
Here is &amp;quot;define-jip.bash&amp;quot;&lt;br /&gt;
-----------------------------------------------------------------------&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
# Include any argument to suppress output.  E.g.,&lt;br /&gt;
#    source ~jbm/jip-current/define-jip.script 1&lt;br /&gt;
# from startup file .bashrc&lt;br /&gt;
&lt;br /&gt;
# Set the JIP_HOME environment variable to access documentation from programs.&lt;br /&gt;
#    e.g., xd -H&lt;br /&gt;
export JIP_HOME=/Users/jbm/Unix/jip-new&lt;br /&gt;
# These aliases point to scripts that pick the correct executables.&lt;br /&gt;
alias jip=&amp;quot;$JIP_HOME/bin/jip&amp;quot;&lt;br /&gt;
alias xd=&amp;quot;$JIP_HOME/bin/display&amp;quot;&lt;br /&gt;
alias align=&amp;quot;$JIP_HOME/bin/align&amp;quot;&lt;br /&gt;
alias glm=&amp;quot;$JIP_HOME/bin/glm&amp;quot;&lt;br /&gt;
alias rem=&amp;quot;$JIP_HOME/bin/rem&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Using any argument to this script will suppress output.&lt;br /&gt;
if [ $# -eq 0 ]&lt;br /&gt;
then&lt;br /&gt;
echo &amp;quot;Defined JIP_HOME to be $JIP_HOME&amp;quot;&lt;br /&gt;
echo &amp;quot;Defined these aliases: jip, xd, align, glm, rem&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
</description>
   <author>Joseph Mandeville</author>
   <pubDate>Wed, 19 Jan 2011 16:16:09 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=1975&amp;forum_id=1296</guid>
  </item>
  <item>
   <title>Welcome to Open-Discussion</title>
   <link>http://stage.nitrcce.org/forum/forum.php?thread_id=1227&amp;forum_id=1296</link>
   <description>Welcome to Open-Discussion</description>
   <author>Christian Haselgrove</author>
   <pubDate>Fri, 11 Dec 2009 20:07:01 GMT</pubDate>
   <guid>http://stage.nitrcce.org/forum/forum.php?thread_id=1227&amp;forum_id=1296</guid>
  </item>
 </channel>
</rss>
