Skip to content

Commit 99f9a23

Browse files
committed
Merge branch 'master' of https://github.com/poldracklab/fmriprep into remove_init_vol_aroma
2 parents 921bf56 + c05b7bb commit 99f9a23

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -483,10 +483,10 @@ jobs:
483483
at: /tmp
484484
- restore_cache:
485485
keys:
486-
- ds054-anat-v6-{{ .Branch }}-{{ epoch }}
487-
- ds054-anat-v6-{{ .Branch }}
488-
- ds054-anat-v6-master
489-
- ds054-anat-v6-
486+
- ds054-anat-v7-{{ .Branch }}-{{ epoch }}
487+
- ds054-anat-v7-{{ .Branch }}
488+
- ds054-anat-v7-master
489+
- ds054-anat-v7-
490490
- run:
491491
name: Setting up test
492492
command: |
@@ -520,7 +520,7 @@ jobs:
520520
--fs-no-reconall --debug --write-graph \
521521
--mem_mb 4096 --nthreads 2 --anat-only -vv
522522
- save_cache:
523-
key: ds054-anat-v6-{{ .Branch }}-{{ epoch }}
523+
key: ds054-anat-v7-{{ .Branch }}-{{ epoch }}
524524
paths:
525525
- /tmp/ds054/work
526526
- /tmp/ds054/derivatives
@@ -601,8 +601,8 @@ jobs:
601601
at: /tmp
602602
- restore_cache:
603603
keys:
604-
- ds210-anat-v3-{{ epoch }}
605-
- ds210-anat-v3-
604+
- ds210-anat-v4-{{ epoch }}
605+
- ds210-anat-v4-
606606
- run:
607607
name: Setting up test
608608
command: |
@@ -636,7 +636,7 @@ jobs:
636636
--fs-no-reconall --debug --write-graph \
637637
--mem_mb 4096 --nthreads 2 --anat-only -vv
638638
- save_cache:
639-
key: ds210-anat-v3-{{ epoch }}
639+
key: ds210-anat-v4-{{ epoch }}
640640
paths:
641641
- /tmp/ds210/work
642642
- /tmp/ds210/derivatives

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,16 @@ target/
6666
#Ipython Notebook
6767
.ipynb_checkpoints
6868

69+
# pycharm project settings
70+
.idea
71+
72+
# vscode project settings
73+
.vscode
74+
75+
# Spyder project settings
76+
.spyderproject
77+
.spyproject
78+
6979
auth/
7080
secrets.py
7181
local_settings.py

fmriprep/workflows/bold/confounds.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,8 @@ def _getbtthresh(medianval):
607607
# connect nodes to ICA-AROMA
608608
(smooth, ica_aroma, [('smoothed_file', 'in_file')]),
609609
(bold_mni_trans_wf, ica_aroma, [
610-
('outputnode.bold_mask_mni', 'report_mask')]),
610+
('outputnode.bold_mask_mni', 'report_mask'),
611+
('outputnode.bold_mask_mni', 'mask')]),
611612
(melodic, ica_aroma, [('out_dir', 'melodic_dir')]),
612613
# generate tsvs from ICA-AROMA
613614
(ica_aroma, ica_aroma_confound_extraction, [('out_dir', 'in_directory')]),

0 commit comments

Comments
 (0)