File tree 3 files changed +8
-14
lines changed
3 files changed +8
-14
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
version : 2
2
3
updates :
3
- - package-ecosystem : " github-actions"
4
+ - package-ecosystem : github-actions
4
5
# Workflow files stored in the default location of `.github/workflows`.
5
6
# (You don't need to specify `/.github/workflows` for `directory`.
6
7
# You can use `directory: "/"`.)
7
- directory : " / "
8
+ directory : /
8
9
# Run on first of each month
9
10
schedule :
10
- interval : " monthly"
11
+ interval : monthly
11
12
# Group to submit a single PR if possible
12
13
groups :
13
14
github-actions :
14
- patterns :
15
- - " *"
15
+ patterns : ['*']
Original file line number Diff line number Diff line change @@ -76,9 +76,7 @@ rule thalamic_segmentation:
76
76
subj_dir = str (Path (bids (** inputs .subj_wildcards )).parent ),
77
77
output :
78
78
thal_seg = str (
79
- Path (
80
- bids (root = freesurfer_dir , ** inputs .subj_wildcards )
81
- ).parent
79
+ Path (bids (root = freesurfer_dir , ** inputs .subj_wildcards )).parent
82
80
/ "mri"
83
81
/ "ThalamicNuclei.v12.T1.mgz"
84
82
),
@@ -115,9 +113,7 @@ rule mgz2nii:
115
113
if not config .get ("skip_thal_seg" )
116
114
else [],
117
115
aparcaseg = str (
118
- Path (
119
- bids (root = freesurfer_dir , ** inputs .subj_wildcards )
120
- ).parent
116
+ Path (bids (root = freesurfer_dir , ** inputs .subj_wildcards )).parent
121
117
/ "mri"
122
118
/ "aparc+aseg.mgz"
123
119
),
Original file line number Diff line number Diff line change @@ -71,9 +71,7 @@ rule reg2native:
71
71
/ Path (config ["zona_bb_subcortex" ][config ["Space" ]]["dir" ])
72
72
/ Path (config ["zona_bb_subcortex" ][config ["Space" ]]["T1w" ])
73
73
),
74
- target = lambda wildcards : inputs ["T1w" ]
75
- .filter (** wildcards )
76
- .expand ()[0 ],
74
+ target = lambda wildcards : inputs ["T1w" ].filter (** wildcards ).expand ()[0 ],
77
75
params :
78
76
out_dir = directory (str (Path (bids_anat ()).parent )),
79
77
out_prefix = bids_anat (
You can’t perform that action at this time.
0 commit comments