Skip to content

Commit 273fec0

Browse files
committed
Merge branch 'master' into enh/JSONFileInterface
Conflicts: CHANGES
2 parents dd31756 + 9b4e5d3 commit 273fec0

28 files changed

+1101
-106
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
.settings
1414
.pydevproject
1515
.idea/
16+
/documentation.zip

CHANGES

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

44
* ENH: New io interfaces for JSON files reading/writing (https://github.com/nipy/nipype/pull/1020)
5+
* ENH: Enhanced openfmri script to support freesurfer linkage (https://github.com/nipy/nipype/pull/1037)
6+
* BUG: matplotlib is supposed to be optional (https://github.com/nipy/nipype/pull/1003)
7+
* FIX: Fix split_filename behaviour when path has no file component (https://github.com/nipy/nipype/pull/1035)
8+
* ENH: Updated FSL dtifit to include option for grad non-linearities (https://github.com/nipy/nipype/pull/1032)
9+
* ENH: Updated Camino tracking interfaces, which can now use FSL bedpostx output.
10+
New options also include choice of tracker, interpolator, stepsize and
11+
curveinterval for angle threshold (https://github.com/nipy/nipype/pull/1029)
12+
* FIX: Interfaces redirecting X crashed if $DISPLAY not defined (https://github.com/nipy/nipype/pull/1027)
13+
* FIX: Bug crashed 'make api' (https://github.com/nipy/nipype/pull/1026)
514
* ENH: Updated antsIntroduction to handle RA and RI registrations (https://github.com/nipy/nipype/pull/1009)
615
* ENH: Updated N4BiasCorrection input spec to include weight image and spline order. Made
716
argument formatting consistent. Cleaned ants.segmentation according to PEP8.
@@ -14,6 +23,8 @@ Next release
1423
undefined (issue #994)(https://https://github.com/nipy/nipype/pull/996)
1524
* FIX: OpenfMRI support and FSL 5.0.7 changes (https://github.com/nipy/nipype/pull/1006)
1625
* FIX: Output prefix in SPM Normalize with modulation (https://github.com/nipy/nipype/pull/1023)
26+
* ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025)
27+
* ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042)
1728

1829
Release 0.10.0 (October 10, 2014)
1930
============

doc/users/config_file.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ Execution
120120
characters will be replaced by their hash. (possible values: ``true`` and
121121
``false``; default value: ``true``)
122122

123+
*poll_sleep_duration*
124+
This controls how long the job submission loop will sleep between submitting
125+
all pending jobs and checking for job completion. To be nice to cluster
126+
schedulers the default is set to 60 seconds.
127+
123128
Example
124129
~~~~~~~
125130

doc/users/plugins.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ particular node might use more resources than other nodes in a workflow.
140140
LSF
141141
---
142142

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

145145
workflow.run(plugin='LSF')
146146

@@ -149,6 +149,18 @@ Optional arguments::
149149
template: custom template file to use
150150
bsub_args: any other command line args to be passed to bsub.
151151

152+
SLURM
153+
-----
154+
155+
Submitting via SLURM is almost identical to SGE above except for the optional arguments field:
156+
157+
workflow.run(plugin='SLURM')
158+
159+
Optional arguments::
160+
161+
template: custom template file to use
162+
sbatch_args: any other command line args to be passed to bsub.
163+
152164
HTCondor
153165
--------
154166

0 commit comments

Comments
 (0)