Skip to content

Commit 9fd3041

Browse files
committed
Merge branch 'master' into enh/GraftWorkflow
Conflicts: CHANGES
2 parents 5674d5d + 2117e8d commit 9fd3041

22 files changed

+94009
-259
lines changed

CHANGES

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ Next release
22
============
33

44
* ENH: [Interfaced|Graft]Workflows (https://github.com/nipy/nipype/pull/882)
5+
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
6+
replaced by https://github.com/nipy/nipype/pull/1093)
7+
* ENH: New algorithm: mesh.WarpPoints applies displacements fields to point sets.
8+
* ENH: New mesh.MeshWarpMaths to operate on surface-defined warpings
9+
(https://github.com/nipy/nipype/pull/1016)
10+
* FIX: Refactor P2PDistance, change name to ComputeMeshWarp, add regression tests,
11+
fix bug in area weighted distance, and added optimizations
12+
(https://github.com/nipy/nipype/pull/1016)
13+
* ENH: Add an option not to resubmit Nodes that finished running when using SGEGraph (https://github.com/nipy/nipype/pull/1002)
14+
* FIX: FUGUE is now properly listing outputs. (https://github.com/nipy/nipype/pull/978)
15+
* ENH: Improved FieldMap-Based (FMB) workflow for correction of susceptibility distortions in EPI seqs.
16+
(https://github.com/nipy/nipype/pull/1019)
517
* ENH: Dropped support for now 7 years old Python 2.6 (https://github.com/nipy/nipype/pull/1069)
618
* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
719
* ENH: Added "nipype_cmd" tool for running interfaces from the command line (https://github.com/nipy/nipype/pull/795)
@@ -41,6 +53,8 @@ Next release
4153
* ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025)
4254
* ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042)
4355
* ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
56+
* FIX: typo in nipype.interfaces.freesurfer.utils.py Tkregister2 (https://github.com/nipy/nipype/pull/1083)
57+
* FIX: SSHDataGrabber outputs now return full path to the grabbed/downloaded files. (https://github.com/nipy/nipype/pull/1086)
4458

4559
Release 0.10.0 (October 10, 2014)
4660
============

doc/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Downloading and installing
1616
Beginner's guide
1717
================
1818

19-
Beginner's tutorials (IPython Notebooks). `Availible here`__
19+
Beginner's tutorials (IPython Notebooks). `Available here`__
2020

2121
Michael Notter's Nipype guide. `Available here`__
2222

doc/users/plugins.rst

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,28 @@ particular node might use more resources than other nodes in a workflow.
136136
this local configuration::
137137

138138
node.plugin_args = {'qsub_args': '-l nodes=1:ppn=3', 'overwrite': True}
139+
140+
SGEGraph
141+
~~~~~~~~
142+
SGEGraph_ is a exuction plugin working with Sun Grid Engine that allows for
143+
submitting entire graph of dependent jobs at once. This way Nipype does not
144+
need to run a monitoring process - SGE takes care of this.
145+
146+
.. note::
147+
148+
When rerunning unfinished workflows using SGEGraph you may decide not to
149+
submit jobs for Nodes that previously finished running. This can speed up
150+
execution, but new or modified inputs that would previously trigger a Node
151+
to rerun will be ignored. The following option turns on this functionality::
152+
153+
workflow.run(plugin='SGEGraph', plugin_args = {'dont_resubmit_completed_jobs': True})
139154

140155
LSF
141156
---
142157

143-
Submitting via LSF is almost identical to SGE above above except for the optional arguments field:
158+
Submitting via LSF is almost identical to SGE above above except for the optional arguments field::
144159

145-
workflow.run(plugin='LSF')
160+
workflow.run(plugin='LSF')
146161

147162
Optional arguments::
148163

@@ -168,7 +183,7 @@ DAGMan
168183
~~~~~~
169184

170185
With its DAGMan_ component HTCondor_ (previously Condor) allows for submitting
171-
entire graphs of dependent jobs at once. With the ``CondorDAGMan`` plug-in
186+
entire graphs of dependent jobs at once (similar to SGEGraph_). With the ``CondorDAGMan`` plug-in
172187
Nipype can utilize this functionality to submit complete workflows directly and
173188
in a single step. Consequently, and in contrast to other plug-ins, workflow
174189
execution returns almost instantaneously -- Nipype is only used to generate the

0 commit comments

Comments
 (0)