Skip to content

Commit 0e19056

Browse files
committed
suggested changes to schema
1 parent e81170f commit 0e19056

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

CPAC/pipeline/schema.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,7 @@
9999
),
100100
},
101101
},
102-
'amplitude_low_frequency_fluctuation': {
103-
'target_space': ['Native', 'Template']
104-
},
105-
'regional_homogeneity': {
106-
'target_space': ['Native', 'Template']
107-
}
102+
'target_space': ['Native', 'Template']
108103
}
109104
mutex = { # mutually exclusive booleans
110105
'FSL-BET': {
@@ -991,8 +986,7 @@ def sanitize(filename):
991986
},
992987
'amplitude_low_frequency_fluctuation': {
993988
'run': bool,
994-
#'target_space': In({'Template', 'Native'}),
995-
'target_space': [In(valid_options['amplitude_low_frequency_fluctuation']['target_space'])],
989+
'target_space': [In(valid_options['target_space'])],
996990
'highpass_cutoff': [float],
997991
'lowpass_cutoff': [float],
998992
},
@@ -1009,8 +1003,7 @@ def sanitize(filename):
10091003
},
10101004
'regional_homogeneity': {
10111005
'run': bool,
1012-
#'target_space': In({'Template', 'Native'}),
1013-
'target_space': [In(valid_options['regional_homogeneity']['target_space'])],
1006+
'target_space': [In(valid_options['target_space'])],
10141007
'cluster_size': In({7, 19, 27}),
10151008
},
10161009
'post_processing': {

0 commit comments

Comments
 (0)