Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
73b9a0e
debug tcompcor, add log messages and tests
Oct 6, 2016
e811b96
save outputs to cwd
Oct 6, 2016
0c7c649
explicity check + error out if mask file and func file don't match in…
Oct 7, 2016
8313923
python3, pep8
Oct 7, 2016
974a42b
use abs paths; +appropriate way to test this
Oct 7, 2016
741405f
make transforms arg in ApplyTransforms opt
Oct 8, 2016
d38562c
allow ANTS ApplyTransforms to use identity transform
Oct 8, 2016
a512faf
traits mandatory=False is incorrect; ignore unicode in doctests
Oct 8, 2016
6448ee8
test specs auto
Oct 8, 2016
e98bd95
Add more informative error msg
Oct 8, 2016
4f27943
less mysterious error messages
Oct 10, 2016
b04d4e7
better test
Oct 10, 2016
7c7dcd2
check and error if input to fsl ApplyTopUp is not 4 dimensional
Oct 11, 2016
8cfa00f
don't load the whole thing into memory
Oct 11, 2016
dd8dfb4
make specs
Oct 12, 2016
a0a31c4
merge with master
Oct 12, 2016
7f84dff
Merge branch 'master' of http://github.com/nipy/nipype into debugging
Oct 12, 2016
b3187f3
pull from nipy/nipype master
Oct 15, 2016
bba591b
add headers to outputs of compcor, framewise displacement + test fix
Oct 17, 2016
8a660dc
Merge http://github.com/nipy/nipype into debugging
Oct 17, 2016
89b9856
revert 4d validation, fix input spec desc
Oct 18, 2016
a42439f
chdir back to original dir before deleting tempdir
Oct 18, 2016
b85fd5f
fix up test (e.g. pep8)
Oct 18, 2016
35a0bb3
Merge http://github.com/nipy/nipype into debugging
Oct 19, 2016
4f80b2a
use from io import open
Oct 24, 2016
c217a23
revert identity transform
Oct 24, 2016
cd5385e
Merge http://github.com/nipy/nipype into debugging
Oct 24, 2016
9239f7b
try longer timeout
Oct 25, 2016
d5e1a0b
specify tab delimiter
Oct 26, 2016
b48395d
don't let divide by zero errors pass by
Oct 28, 2016
fb3c550
don't calculate var/stddev twice
Oct 31, 2016
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pull from nipy/nipype master
  • Loading branch information
Shoshana Berleant committed Oct 15, 2016
commit b3187f349e975f4445a768c9e12d3fd02a0324e3
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ before_install:
fsl afni elastix fsl-atlases; fi &&
if $INSTALL_DEB_DEPENDECIES; then
source /etc/fsl/fsl.sh;
source /etc/afni/afni.sh; fi &&
export FSLOUTPUTTYPE=NIFTI_GZ; }
source /etc/afni/afni.sh;
export FSLOUTPUTTYPE=NIFTI_GZ; fi }
- travis_retry bef_inst
install:
# Add install of vtk and mayavi to test mesh (disabled): conda install -y vtk mayavi &&
Expand Down
3 changes: 1 addition & 2 deletions nipype/algorithms/confounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,7 @@ def _list_outputs(self):
class CompCorInputSpec(BaseInterfaceInputSpec):
realigned_file = File(exists=True, mandatory=True,
desc='already realigned brain image (4D)')
mask_file = File(exists=True,
desc='mask file that determines ROI (3D)')
mask_file = File(exists=True, desc='mask file that determines ROI (3D)')
components_file = File('components_file.txt', exists=False,
usedefault=True,
desc='filename to store physiological components')
Expand Down
1 change: 1 addition & 0 deletions nipype/interfaces/fsl/possum.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class B0Calc(FSLCommand):
>>> b0calc = B0Calc()
>>> b0calc.inputs.in_file = 'tissue+air_map.nii'
>>> b0calc.inputs.z_b0 = 3.0
>>> b0calc.inputs.output_type = "NIFTI_GZ"
>>> b0calc.cmdline # doctest: +IGNORE_UNICODE
'b0calc -i tissue+air_map.nii -o tissue+air_map_b0field.nii.gz --b0=3.00'

Expand Down
9 changes: 4 additions & 5 deletions nipype/interfaces/nilearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,19 @@ class SignalExtractionInputSpec(BaseInterfaceInputSpec):
'corresponds to the class labels in label_file '
'in ascending order')
out_file = File('signals.tsv', usedefault=True, exists=False,
mandatory=False, desc='The name of the file to output to. '
desc='The name of the file to output to. '
'signals.tsv by default')
incl_shared_variance = traits.Bool(True, usedefault=True, mandatory=False, desc='By default '
incl_shared_variance = traits.Bool(True, usedefault=True, desc='By default '
'(True), returns simple time series calculated from each '
'region independently (e.g., for noise regression). If '
'False, returns unique signals for each region, discarding '
'shared variance (e.g., for connectivity. Only has effect '
'with 4D probability maps.')
include_global = traits.Bool(False, usedefault=True, mandatory=False,
include_global = traits.Bool(False, usedefault=True,
desc='If True, include an extra column '
'labeled "global", with values calculated from the entire brain '
'(instead of just regions).')
detrend = traits.Bool(False, usedefault=True, mandatory=False,
desc='If True, perform detrending using nilearn.')
detrend = traits.Bool(False, usedefault=True, desc='If True, perform detrending using nilearn.')

class SignalExtractionOutputSpec(TraitedSpec):
out_file = File(exists=True, desc='tsv file containing the computed '
Expand Down
12 changes: 4 additions & 8 deletions nipype/interfaces/tests/test_auto_SignalExtraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,20 @@
def test_SignalExtraction_inputs():
input_map = dict(class_labels=dict(mandatory=True,
),
detrend=dict(mandatory=False,
usedefault=True,
detrend=dict(usedefault=True,
),
ignore_exception=dict(nohash=True,
usedefault=True,
),
in_file=dict(mandatory=True,
),
incl_shared_variance=dict(mandatory=False,
usedefault=True,
incl_shared_variance=dict(usedefault=True,
),
include_global=dict(mandatory=False,
usedefault=True,
include_global=dict(usedefault=True,
),
label_files=dict(mandatory=True,
),
out_file=dict(mandatory=False,
usedefault=True,
out_file=dict(usedefault=True,
),
)
inputs = SignalExtraction.input_spec()
Expand Down