Skip to content

Commit 59198be

Browse files
author
bpinsard
committed
merge
2 parents 5c425b9 + a78ca37 commit 59198be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+592
-414
lines changed

CHANGES

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1-
Since last release
2-
==================
1+
Release 0.6.0 (Jun 30, 2012)
2+
============================
33

44
* API: display variable no longer encoded as inputs in commandline interfaces
55

6-
* ENH: New interfaces: MySQLSink, nipy.Similarity, WatershedBEM,
6+
* ENH: input hash not modified when environment DISPLAY is changed
7+
* ENH: support for 3d files for TSNR calculation
8+
* ENH: Preliminary support for graph submission with SGE, PBS and Soma Workflow
9+
* ENH: New interfaces: MySQLSink, nipy.Similarity, WatershedBEM, MRIsSmooth,
710
NetworkBasedStatistic, Atropos, N4BiasFieldCorrection, ApplyTransforms,
8-
fs.MakeAverageSubject
9-
11+
fs.MakeAverageSubject, epidewarp.fsl, WarpTimeSeriesImageMultiTransform,
12+
AVScale, mri_ms_LDA
13+
* ENH: simple interfaces for spm
14+
15+
* FIX: CompCor component calculation was erroneous
16+
* FIX: filename generation for AFNI and PRELUDE
17+
* FIX: improved slicer module autogeneration
18+
* FIX: added missing options for BBRegsiter
19+
* FIX: functionality of remove_unnecessary_ouputs cleaned up
20+
* FIX: local hash check works with appropriate inputs
21+
* FIX: Captures all stdout from commandline programs
1022
* FIX: Afni outputs should inherit from TraitedSpec
1123

1224
Release 0.5.3 (Mar 23, 2012)

doc/_templates/sidebar_versions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h3>{{ _('Versions') }}</h3>
1717
<td align="left">Release</td><td align="right">Devel</td>
1818
</tr>
1919
<tr>
20-
<td align="left">0.5.3</td><td align="right">pre-0.6</td>
20+
<td align="left">0.6.0</td><td align="right">pre-0.7</td>
2121
</tr>
2222
<tr>
2323
<td align="left"><a href="{{pathto('users/install')}}">Download</a></td>

doc/devel/interface_specs.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ Common
194194
TraitError: The 'infile' trait of a BetInputSpec instance must be a file
195195
name, but a value of 'does_not_exist.nii' <type 'str'> was specified.
196196
197+
``hash_files``
198+
To be used with inputs that are defining output filenames. When this flag is set to false any Nipype will not try to hash any files described by this input. This is useful to avoid rerunning when the specified output file already exists and has changed.
199+
197200
``desc``
198201
All trait objects have a set of default metadata attributes. ``desc``
199202
is one of those and is used as a simple, one-line docstring. The

doc/devel/matlab_interface_devel.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,10 @@ By subclassing **MatlabCommand** for your main class, and **MatlabInputSpec** fo
9090
Examples
9191
--------
9292

93-
>>> hello = HelloWorld(matlab_cmd = 'mymatlab')
94-
>>> hello.inputs.name = 'Monty'
95-
>>> hello.inputs.mfile = True #creates mfile
96-
>>> hello.inputs.paths = '/path/to/matlab/toolbox'
97-
>>> hello.inputs.script_file = 'helloworld_pyscript.m'
93+
>>> hello = HelloWorld()
94+
>>> hello.inputs.name = 'hello_world'
9895
>>> out = hello.run()
99-
>>> out.outputs['matlab_output']
96+
>>> print out.outputs.matlab_output
10097
"""
10198
input_spec = HelloWorldInputSpec
10299
output_spec = HelloWorldOutputSpec

doc/devel/python_interface_devel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ do is to define inputs, outputs, _run_interface() (not run()), and _list_outputs
1010
.. testcode::
1111

1212
from nipype.interfaces.base import BaseInterface, \
13-
BaseInterfaceInputSpec, traits, File
13+
BaseInterfaceInputSpec, traits, File, TraitedSpec
1414
from nipype.utils.filemanip import split_filename
1515

1616
import nibabel as nb

doc/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation
99
:Release: |version|
1010
:Date: |today|
1111

12-
Previous version: `0.4.1 <http://nipy.org/nipype/0.4.1>`_
12+
Previous versions: `0.5.3 <http://nipy.org/nipype/0.5.3>`_ `0.4.1 <http://nipy.org/nipype/0.4.1>`_
1313

1414
.. container:: doc2
1515

doc/index.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
.. admonition:: Announcement
2+
3+
Nipype Connectivity Workshop 2012 in Magdeburg, Germany: Sep 8-9, 2012:
4+
`Information and Registration`__
5+
6+
__ http://nipype.blogspot.com
7+
18
.. list-table::
29

310
* - .. image:: images/nipype_architecture_overview2.png

doc/quickstart.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Beginner's guide
1616
================
1717

1818
Introductory slides. `Available here`__
19+
1920
Michael Notter's guide. `Available here`__
2021

2122
__ http://satra.github.com/intro2nipype

doc/users/caching_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ provides for this: :meth:`Memory.clear_previous_runs`,
120120
.. topic:: Example
121121

122122
A full-blown example showing how to stage multiple operations can be
123-
found in the :download:`caching_example.py <../../examples/caching_example.py>` file.
123+
found in the :download:`caching_example.py <../../examples/howto_caching_example.py>` file.
124124

125125
Usage patterns: working efficiently with caching
126126
===================================================

doc/users/install.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ This page covers the necessary steps to install Nipype.
99
Download
1010
--------
1111

12-
Release 0.5.3: [`zip <http://github.com/nipy/nipype/zipball/0.5.3>`_ `tar
13-
<http://github.com/nipy/nipype/tarball/0.5.3>`_]
12+
Release 0.6.0: [`zip <http://github.com/nipy/nipype/zipball/0.6.0>`_ `tar
13+
<http://github.com/nipy/nipype/tarball/0.6.0>`_]
1414

1515
Development: [`zip <http://github.com/nipy/nipype/zipball/master>`_ `tar
1616
<http://github.com/nipy/nipype/tarball/master>`_]
@@ -114,7 +114,7 @@ Must Have
114114

115115
Python_ 2.6 -2.7
116116

117-
Nibabel_ 1.0
117+
Nibabel_ 1.0 - 1.2
118118
Neuroimaging file i/o library
119119

120120
NetworkX_ 1.0 - 1.4
@@ -135,7 +135,7 @@ Enthought_ Traits_ 4.0.0
135135
Strong Recommendations
136136
~~~~~~~~~~~~~~~~~~~~~~
137137

138-
IPython_ 0.10.2 - 0.12
138+
IPython_ 0.10.2 - 0.13
139139
Interactive python environment. This is necessary for some parallel
140140
components of the pipeline engine.
141141

0 commit comments

Comments
 (0)