Skip to content

Commit ac6c4d3

Browse files
authored
Merge pull request #58 from effigies/rel/0.0.5
REL: 0.0.5
2 parents eabadee + 43f2ff8 commit ac6c4d3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.0.5 (August 01, 2018)
2+
=======================
3+
4+
* FIX: Limit NaN imputation and use mean non-zero value (https://github.com/poldracklab/fitlins/pull/57)
5+
6+
17
0.0.4 (July 05, 2018)
28
=====================
39

fitlins/workflows/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def init_fitlins_wf(bids_dir, preproc_dir, out_dir, space, exclude_pattern=None,
6262

6363
contrast_pattern = '[sub-{subject}/][ses-{session}/][sub-{subject}_]' \
6464
'[ses-{session}_]task-{task}_[run-{run}_]bold[_space-{space}]_' \
65-
'contrast-{contrast}_{type<effect>}.nii.gz',
65+
'contrast-{contrast}_{type<effect>}.nii.gz'
6666
ds_estimate_maps = pe.MapNode(
6767
BIDSDataSink(base_directory=out_dir,
6868
path_patterns=contrast_pattern),
@@ -78,7 +78,7 @@ def init_fitlins_wf(bids_dir, preproc_dir, out_dir, space, exclude_pattern=None,
7878

7979
contrast_plot_pattern = '[sub-{subject}/][ses-{session}/][sub-{subject}_]'\
8080
'[ses-{session}_]task-{task}_[run-{run}_]bold[_space-{space}]_' \
81-
'contrast-{contrast}_ortho.png',
81+
'contrast-{contrast}_ortho.png'
8282
ds_estimate_plots = pe.MapNode(
8383
BIDSDataSink(base_directory=out_dir,
8484
path_patterns=contrast_plot_pattern),

0 commit comments

Comments
 (0)