Skip to content

Commit 8b7b0cf

Browse files
committed
Merge branch 'oar_support' of https://github.com/demianw/nipype into oar_support
2 parents d94bbce + e7344e7 commit 8b7b0cf

File tree

376 files changed

+16444
-2410
lines changed

Some content is hidden

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

376 files changed

+16444
-2410
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@
1414
.pydevproject
1515
.idea/
1616
/documentation.zip
17+
.DS_Store
18+
nipype/testing/data/von-ray_errmap.nii.gz
19+
nipype/testing/data/von_errmap.nii.gz

.mailmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Cindee Madison <[email protected]> cindeem
44
Chris Filo Gorgolewski <[email protected]> filo <filo@filo-Precision-M6500>
55
Chris Filo Gorgolewski <[email protected]> Krzysztof Gorgolewski <[email protected]>
66
Erik Ziegler <[email protected]> erikz <[email protected]>
7-
Michael Waskom <[email protected]> mwaskom <[email protected]> Michael Waskom <[email protected]> mwaskom <[email protected]>
7+
Michael Waskom <[email protected]> mwaskom <[email protected]> Michael Waskom <[email protected]> mwaskom <[email protected]>
88
Gael Varoquaux <[email protected]> GaelVaroquaux
99
Gael Varoquaux <[email protected]> GaelVaroquaux <[email protected]>
1010
Daniel Ginsburg <[email protected]> danginsburg <[email protected]>

.travis.yml

Lines changed: 42 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,50 @@
11
cache:
2-
- apt
2+
- apt
33
language: python
44
python:
5-
- 2.7
5+
- 2.7
66
env:
7-
- INSTALL_DEB_DEPENDECIES=true
8-
- INSTALL_DEB_DEPENDECIES=false
9-
# Setup anaconda
7+
- INSTALL_DEB_DEPENDECIES=true
8+
- INSTALL_DEB_DEPENDECIES=false
109
before_install:
11-
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.6.0-Linux-x86_64.sh -O miniconda.sh; fi
12-
- chmod +x miniconda.sh
13-
- ./miniconda.sh -b
14-
- export PATH=/home/travis/miniconda/bin:$PATH
15-
- if $INSTALL_DEB_DEPENDECIES; then sudo rm -rf /dev/shm; fi
16-
- if $INSTALL_DEB_DEPENDECIES; then sudo ln -s /run/shm /dev/shm; fi
17-
- if $INSTALL_DEB_DEPENDECIES; then bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh); fi
18-
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq --no-install-recommends fsl afni elastix; fi
19-
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq fsl-atlases; fi
20-
- if $INSTALL_DEB_DEPENDECIES; then source /etc/fsl/fsl.sh; fi
21-
22-
# Install packages
10+
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
11+
-O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.6.0-Linux-x86_64.sh
12+
-O miniconda.sh; fi
13+
- chmod +x miniconda.sh
14+
- "./miniconda.sh -b"
15+
- export PATH=/home/travis/miniconda/bin:$PATH
16+
- if $INSTALL_DEB_DEPENDECIES; then sudo rm -rf /dev/shm; fi
17+
- if $INSTALL_DEB_DEPENDECIES; then sudo ln -s /run/shm /dev/shm; fi
18+
- if $INSTALL_DEB_DEPENDECIES; then bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh);
19+
fi
20+
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq --no-install-recommends
21+
fsl afni elastix; fi
22+
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq fsl-atlases;
23+
fi
24+
- if $INSTALL_DEB_DEPENDECIES; then source /etc/fsl/fsl.sh; fi
2325
install:
24-
- conda update --yes conda
25-
- conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION
26-
- source activate testenv
27-
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install ordereddict; fi
28-
- conda install --yes numpy scipy nose traits networkx dateutil
29-
- pip install nibabel --use-mirrors
30-
- pip install python-coveralls --use-mirrors
31-
- pip install nose-cov --use-mirrors
32-
- pip install https://github.com/RDFLib/rdflib/archive/master.zip
33-
- pip install https://github.com/trungdong/prov/archive/rdf.zip
34-
- python setup.py install
35-
36-
# Run test
26+
- conda update --yes conda
27+
- conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION
28+
- source activate testenv
29+
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install ordereddict; fi
30+
- conda install --yes numpy scipy nose traits networkx dateutil
31+
- pip install nibabel
32+
- pip install python-coveralls
33+
- pip install nose-cov
34+
- pip install https://github.com/RDFLib/rdflib/archive/master.zip
35+
- pip install https://github.com/trungdong/prov/archive/rdf.zip
36+
- python setup.py install
3737
script:
38-
- nosetests --with-doctest --with-cov --cov nipype --cov-config .coveragerc --logging-level=INFO
39-
40-
# Calculate coverage
38+
- nosetests --with-doctest --with-cov --cov nipype --cov-config .coveragerc --logging-level=INFO
4139
after_success:
42-
- coveralls --config_file .coveragerc
40+
- coveralls --config_file .coveragerc
41+
deploy:
42+
provider: pypi
43+
user: satra
44+
password:
45+
secure: OCO0FXb4f+pH4Uw7zWCIRp3qOJ1t7rhky4K8MjNU8tyVCJgd6O/Bv8GJgceS0LktPodlAAjB8SxAhTORPAQZ1D/44PJYy3NQIisvej1zjLpaA9TEGfl6W7MqhDpRyMHW+cnSi/n84SAmdr+Z4vOxScDHdwr13EPmGyOIlHMAGnE=
46+
on:
47+
tags: true
48+
repo: nipy/nipype
49+
branch: master
50+
distributions: "sdist bdist_wheel"

CHANGES

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
1-
Next release
1+
Next Release
22
============
3+
* API: Default model level for the bedpostx workflow has been set to "2" following FSL 5.0.9 lead
4+
* ENH: New interfaces for interacting with AWS S3: S3DataSink and S3DataGrabber (https://github.com/nipy/nipype/pull/1201)
35

6+
Release 0.11.0 (September 15, 2015)
7+
============
8+
9+
* API: Change how hash values are computed (https://github.com/nipy/nipype/pull/1174)
10+
* ENH: New algorithm: mesh.WarpPoints applies displacements fields to point sets
11+
(https://github.com/nipy/nipype/pull/889).
12+
* ENH: New interfaces for MRTrix3 (https://github.com/nipy/nipype/pull/1126)
13+
* ENH: New option in afni.3dRefit - zdel, ydel, zdel etc. (https://github.com/nipy/nipype/pull/1079)
14+
* FIX: ants.Registration composite transform outputs are no longer returned as lists (https://github.com/nipy/nipype/pull/1183)
15+
* BUG: ANTs Registration interface failed with multi-modal inputs
16+
(https://github.com/nipy/nipype/pull/1176) (https://github.com/nipy/nipype/issues/1175)
17+
* ENH: dipy.TrackDensityMap interface now accepts a reference image (https://github.com/nipy/nipype/pull/1091)
18+
* FIX: Bug in XFibres5 (https://github.com/nipy/nipype/pull/1168)
19+
* ENH: Attempt to use hard links for data sink.
20+
(https://github.com/nipy/nipype/pull/1161)
21+
* FIX: Updates to SGE Plugins
22+
(https://github.com/nipy/nipype/pull/1129)
23+
* ENH: Add ants JointFusion() node with testing
24+
(https://github.com/nipy/nipype/pull/1160)
25+
* ENH: Add --float option for antsRegistration calls
26+
(https://github.com/nipy/nipype/pull/1159)
27+
* ENH: Added interface to simulate DWIs using the multi-tensor model
28+
(https://github.com/nipy/nipype/pull/1085)
29+
* ENH: New interface for FSL fslcpgeom utility (https://github.com/nipy/nipype/pull/1152)
30+
* ENH: Added SLURMGraph plugin for submitting jobs to SLURM with dependencies (https://github.com/nipy/nipype/pull/1136)
31+
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
32+
replaced by https://github.com/nipy/nipype/pull/1093)
433
* ENH: New mesh.MeshWarpMaths to operate on surface-defined warpings
534
(https://github.com/nipy/nipype/pull/1016)
635
* FIX: Refactor P2PDistance, change name to ComputeMeshWarp, add regression tests,
@@ -10,6 +39,7 @@ Next release
1039
* FIX: FUGUE is now properly listing outputs. (https://github.com/nipy/nipype/pull/978)
1140
* ENH: Improved FieldMap-Based (FMB) workflow for correction of susceptibility distortions in EPI seqs.
1241
(https://github.com/nipy/nipype/pull/1019)
42+
* FIX: In the FSLXcommand _list_outputs function fixed for loop range (https://github.com/nipy/nipype/pull/1071)
1343
* ENH: Dropped support for now 7 years old Python 2.6 (https://github.com/nipy/nipype/pull/1069)
1444
* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
1545
* ENH: Added "nipype_cmd" tool for running interfaces from the command line (https://github.com/nipy/nipype/pull/795)
@@ -51,6 +81,13 @@ Next release
5181
* ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
5282
* FIX: typo in nipype.interfaces.freesurfer.utils.py Tkregister2 (https://github.com/nipy/nipype/pull/1083)
5383
* FIX: SSHDataGrabber outputs now return full path to the grabbed/downloaded files. (https://github.com/nipy/nipype/pull/1086)
84+
* FIX: Add QA output for TSNR to resting workflow (https://github.com/nipy/nipype/pull/1088)
85+
* FIX: Change N4BiasFieldCorrection to use short tag for dimensionality (backward compatible) (https://github.com/nipy/nipype/pull/1096)
86+
* ENH: Added -newgrid input to Warp in AFNI (3dWarp wrapper) (https://github.com/nipy/nipype/pull/1128)
87+
* FIX: Fixed AFNI Copy interface to use positional inputs as required (https://github.com/nipy/nipype/pull/1131)
88+
* ENH: Added a check in Dcm2nii to check if nipype created the config.ini file and remove if true (https://github.com/nipy/nipype/pull/1132)
89+
* ENH: Use a while loop to wait for Xvfb (up to a max wait time "xvfb_max_wait" in config file, default 10)
90+
(https://github.com/nipy/nipype/pull/1142)
5491

5592
Release 0.10.0 (October 10, 2014)
5693
============

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ include doc/documentation.zip
1010
include nipype/COMMIT_INFO.txt
1111

1212
recursive-include doc *
13-
recursive-include matlabscripts *
1413
recursive-include tools *

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
PYTHON ?= python
66
NOSETESTS ?= nosetests
77

8+
.PHONY: zipdoc sdist egg upload_to_pypi trailing-spaces clean-pyc clean-so clean-build clean-ctags clean in inplace test-code test-doc test-coverage test html specs check-before-commit check
9+
810
zipdoc: html
911
zip documentation.zip doc/_build/html
1012

@@ -26,7 +28,7 @@ upload_to_pypi: zipdoc
2628
python setup.py sdist --formats=zip,gztar upload
2729

2830
trailing-spaces:
29-
find . -name "*.py" | xargs perl -pi -e 's/[ \t]*$$//'
31+
find . -name "*[.py|.rst]" -type f | xargs perl -pi -e 's/[ \t]*$$//'
3032
@echo "Reverting test_docparse"
3133
git checkout nipype/utils/tests/test_docparse.py
3234

@@ -70,6 +72,7 @@ specs:
7072
@echo "Checking specs and autogenerating spec tests"
7173
python tools/checkspecs.py
7274

75+
check: check-before-commit # just a shortcut
7376
check-before-commit: specs trailing-spaces html test
7477
@echo "removed spaces"
7578
@echo "built docs"

README.rst

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,32 @@ NIPYPE: Neuroimaging in Python: Pipelines and Interfaces
55
.. image:: https://travis-ci.org/nipy/nipype.png?branch=master
66
:target: https://travis-ci.org/nipy/nipype
77

8+
.. image:: https://circleci.com/gh/nipy/nipype/tree/master.svg?style=svg
9+
:target: https://circleci.com/gh/nipy/nipype/tree/master
10+
811
.. image:: https://coveralls.io/repos/nipy/nipype/badge.png
912
:target: https://coveralls.io/r/nipy/nipype
1013

11-
.. image:: https://pypip.in/version/nipype/badge.png
14+
.. image:: https://www.codacy.com/project/badge/182f27944c51474490b369d0a23e2f32
15+
:target: https://www.codacy.com/app/krzysztof-gorgolewski/nipy_nipype
16+
17+
.. image:: https://img.shields.io/pypi/v/nipype.svg
1218
:target: https://pypi.python.org/pypi/nipype/
1319
:alt: Latest Version
1420

15-
.. image:: https://pypip.in/download/nipype/badge.png
21+
.. image:: https://img.shields.io/pypi/dm/nipype.svg
1622
:target: https://pypi.python.org/pypi/nipype/
1723
:alt: Downloads
1824

19-
.. image:: https://pypip.in/py_versions/nipype/badge.png
25+
.. image:: https://img.shields.io/pypi/pyversions/nipype.svg
2026
:target: https://pypi.python.org/pypi/nipype/
2127
:alt: Supported Python versions
2228

23-
.. image:: https://pypip.in/status/nipype/badge.png
29+
.. image:: https://img.shields.io/pypi/status/nipype.svg
2430
:target: https://pypi.python.org/pypi/nipype/
2531
:alt: Development Status
2632

27-
.. image:: https://pypip.in/license/nipype/badge.png
33+
.. image:: https://img.shields.io/pypi/l/nipype.svg
2834
:target: https://pypi.python.org/pypi/nipype/
2935
:alt: License
3036

@@ -64,7 +70,7 @@ Website
6470
-------
6571

6672
Information specific to Nipype is located here::
67-
73+
6874
http://nipy.org/nipype
6975

7076

@@ -75,12 +81,12 @@ If you have a problem or would like to ask a question about how to do something
7581
to `NeuroStars.org <http://neurostars.org>`_ with a *nipype* tag. `NeuroStars.org <http://neurostars.org>`_ is a platform similar to StackOverflow but dedicated to neuroinformatics. All previous Nipype questions are available here::
7682

7783
http://neurostars.org/t/nipype/
78-
7984

80-
To participate in the Nipype development related discussion please use the following mailing list::
81-
82-
http://projects.scipy.org/mailman/listinfo/nipy-devel
83-
85+
86+
To participate in the Nipype development related discussions please use the following mailing list::
87+
88+
http://mail.python.org/mailman/listinfo/neuroimaging
89+
8490
Please add *[nipype]* to the subject line when posting on the mailing list.
8591

8692

@@ -90,7 +96,7 @@ Nipype structure
9096
Currently Nipype consists of the following files and directories:
9197

9298
INSTALL
93-
NIPYPE prerequisites, installation, development, testing, and
99+
NIPYPE prerequisites, installation, development, testing, and
94100
troubleshooting.
95101

96102
README
@@ -124,5 +130,5 @@ There are interfaces to some GNU code but these are entirely optional.
124130
All trademarks referenced herein are property of their respective
125131
holders.
126132

127-
Copyright (c) 2009-2014, NIPY Developers
133+
Copyright (c) 2009-2015, NIPY Developers
128134
All rights reserved.

THANKS.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ Other contributors
8686
* Mike Trumpis
8787
* Karl Young
8888
* Tom Waite
89-
89+
9090
We would also like to thank `JetBrains <http://www.jetbrains.com/>`__ for providing `Pycharm <http://www.jetbrains.com/pycharm/>`__ licenses.
91-
91+
9292
Funding
9393
-------
9494
Satrajit Ghosh work on this project was partially funded by NIBIB R03 EB008673 (PI: Ghosh and Whitfield-Gabrieli) and by the `INCF <http://www.incf.org>`__ through a contract with TankThink Labs, LLC.
95-
Chris Burns was supported by NIMH grant 5R01MH081909-02 (PI: Desposito). Hans Jonson was supported by
96-
`2 U54 EB005149 - 06 Core 2b Huntington's Disease - Driving Biological Project <http://projectreporter.nih.gov/project_info_description.cfm?aid=8153616&icde=16158743&ddparam=&ddvalue=&ddsub=&cr=18&csb=PT&cs=ASC>`__,
97-
`S10 RR023392 Enterprise Storage In A Collaborative Neuroimaging Environment <http://projectreporter.nih.gov/project_info_description.cfm?aid=7209718&icde=16158552&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC>`__,
98-
`R01 NS040068 Neurobiological Predictors of Huntington's Disease <http://projectreporter.nih.gov/project_info_description.cfm?aid=6266377&icde=16158103>`__,
95+
Chris Burns was supported by NIMH grant 5R01MH081909-02 (PI: Desposito). Hans Jonson was supported by
96+
`2 U54 EB005149 - 06 Core 2b Huntington's Disease - Driving Biological Project <http://projectreporter.nih.gov/project_info_description.cfm?aid=8153616&icde=16158743&ddparam=&ddvalue=&ddsub=&cr=18&csb=PT&cs=ASC>`__,
97+
`S10 RR023392 Enterprise Storage In A Collaborative Neuroimaging Environment <http://projectreporter.nih.gov/project_info_description.cfm?aid=7209718&icde=16158552&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC>`__,
98+
`R01 NS040068 Neurobiological Predictors of Huntington's Disease <http://projectreporter.nih.gov/project_info_description.cfm?aid=6266377&icde=16158103>`__,
9999
and `UL1 TR000442 University of Iowa Clinical and Translational Science Program <http://projectreporter.nih.gov/project_info_description.cfm?aid=8467220&icde=16159156&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC>`__.
100100

bin/nipype2boutiques

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env python
2+
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
3+
# vi: set ft=python sts=4 ts=4 sw=4 et:
4+
import sys
5+
from nipype.utils.nipype2boutiques import main
6+
7+
if __name__ == '__main__':
8+
main(sys.argv)

circle.yml

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
dependencies:
2+
cache_directories:
3+
- "~/examples/data"
4+
- "~/examples/fsdata"
5+
- "~/examples/feeds"
6+
- "~/mcr"
7+
- "~/spm12"
8+
- "~/fsl"
9+
- "~/examples/fsl_course_data"
10+
override:
11+
- pip install --upgrade pip
12+
- pip install -e .
13+
- pip install matplotlib sphinx ipython boto
14+
- gem install fakes3
15+
- if [[ ! -d ~/fsl ]]; then wget "http://fsl.fmrib.ox.ac.uk/fsldownloads/fsl-5.0.9-centos6_64.tar.gz"; tar zxvf fsl-5.0.9-centos6_64.tar.gz; mv fsl ~/fsl; fi
16+
- if [[ ! -d ~/examples/data ]]; then wget "http://tcpdiag.dl.sourceforge.net/project/nipy/nipype/nipype-0.2/nipype-tutorial.tar.bz2"; tar jxvf nipype-tutorial.tar.bz2; mkdir ~/examples; mv nipype-tutorial/* ~/examples/; fi
17+
# we download this manually because CircleCI does not cache apt
18+
- if [[ ! -d ~/examples/feeds ]]; then wget "http://fsl.fmrib.ox.ac.uk/fsldownloads/fsl-5.0.8-feeds.tar.gz"; tar zxvf fsl-5.0.8-feeds.tar.gz; mv feeds ~/examples/; fi
19+
- if [[ ! -d ~/examples/fsl_course_data ]]; then wget -c "http://fsl.fmrib.ox.ac.uk/fslcourse/fdt1.tar.gz" ; wget -c "http://fsl.fmrib.ox.ac.uk/fslcourse/fdt2.tar.gz"; wget -c "http://fsl.fmrib.ox.ac.uk/fslcourse/tbss.tar.gz"; mkdir ~/examples/fsl_course_data; tar zxvf fdt1.tar.gz -C ~/examples/fsl_course_data; tar zxvf fdt2.tar.gz -C ~/examples/fsl_course_data; tar zxvf tbss.tar.gz -C ~/examples/fsl_course_data; fi
20+
- bash ~/nipype/tools/install_spm_mcr.sh
21+
- mkdir -p ~/.nipype && echo "[logging]" > ~/.nipype/nipype.cfg && echo "workflow_level = DEBUG" >> ~/.nipype/nipype.cfg && echo "interface_level = DEBUG" >> ~/.nipype/nipype.cfg && echo "filemanip_level = DEBUG" >> ~/.nipype/nipype.cfg
22+
test:
23+
override:
24+
- nosetests --with-doctest --logging-level=DEBUG --verbosity=3:
25+
environment:
26+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
27+
FORCE_SPMMCR: 1
28+
FSL_COURSE_DATA: "$HOME/examples/fsl_course_data"
29+
FSLDIR: "$HOME/fsl/"
30+
PATH: "$HOME/fsl/bin:$PATH"
31+
LD_LIBRARY_PATH: "$HOME/fsl/lib"
32+
FSLOUTPUTTYPE: "NIFTI_GZ"
33+
timeout: 2600
34+
- set -o pipefail && cd doc && make html 2>&1 | tee ~/log.txt
35+
- cat ~/log.txt && if grep -q "ERROR" ~/log.txt; then false; else true; fi
36+
- python ~/nipype/tools/run_examples.py test_spm Linear workflow3d workflow4d:
37+
pwd: ../examples
38+
environment:
39+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
40+
FORCE_SPMMCR: 1
41+
FSLDIR: "$HOME/fsl/"
42+
PATH: "$HOME/fsl/bin:$PATH"
43+
LD_LIBRARY_PATH: "$HOME/fsl/lib"
44+
FSLOUTPUTTYPE: "NIFTI_GZ"
45+
timeout: 1600
46+
- python ~/nipype/tools/run_examples.py fmri_fsl_feeds Linear l1pipeline:
47+
pwd: ../examples
48+
environment:
49+
FSLDIR: "$HOME/fsl/"
50+
PATH: "$HOME/fsl/bin:$PATH"
51+
LD_LIBRARY_PATH: "$HOME/fsl/lib"
52+
FSLOUTPUTTYPE: "NIFTI_GZ"
53+
- python ~/nipype/tools/run_examples.py fmri_spm_dartel Linear level1 l2pipeline:
54+
pwd: ../examples
55+
environment:
56+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
57+
FORCE_SPMMCR: 1
58+
FSLDIR: "$HOME/fsl/"
59+
PATH: "$HOME/fsl/bin:$PATH"
60+
LD_LIBRARY_PATH: "$HOME/fsl/lib"
61+
FSLOUTPUTTYPE: "NIFTI_GZ"
62+
timeout: 1600
63+
- python ~/nipype/tools/run_examples.py fmri_fsl_reuse Linear level1_workflow:
64+
pwd: ../examples
65+
environment:
66+
FSLDIR: "$HOME/fsl/"
67+
PATH: "$HOME/fsl/bin:$PATH"
68+
LD_LIBRARY_PATH: "$HOME/fsl/lib"
69+
FSLOUTPUTTYPE: "NIFTI_GZ"
70+
- python ~/nipype/tools/run_examples.py fmri_spm_nested Linear level1 l2pipeline:
71+
pwd: ../examples
72+
environment:
73+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
74+
FORCE_SPMMCR: 1
75+
FSLDIR: "$HOME/fsl/"
76+
PATH: "$HOME/fsl/bin:$PATH"
77+
LD_LIBRARY_PATH: "$HOME/fsl/lib"
78+
FSLOUTPUTTYPE: "NIFTI_GZ"
79+
80+
general:
81+
artifacts:
82+
- "doc/_build/html"
83+
- "~/log.txt"

0 commit comments

Comments
 (0)