File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -1134,28 +1134,28 @@ class L2Model(BaseInterface):
1134
1134
1135
1135
def _run_interface (self , runtime ):
1136
1136
cwd = os .getcwd ()
1137
- mat_txt = ['/NumWaves 1' ,
1138
- '/NumPoints %d' % self .inputs .num_copes ,
1139
- '/PPheights %e' % 1 ,
1137
+ mat_txt = ['/NumWaves 1' ,
1138
+ '/NumPoints {}' . format ( self .inputs .num_copes ) ,
1139
+ '/PPheights 1' ,
1140
1140
'' ,
1141
1141
'/Matrix' ]
1142
1142
for i in range (self .inputs .num_copes ):
1143
- mat_txt += ['%e' % 1 ]
1143
+ mat_txt += ['1' ]
1144
1144
mat_txt = '\n ' .join (mat_txt )
1145
1145
1146
- con_txt = ['/ContrastName1 group mean' ,
1147
- '/NumWaves 1' ,
1146
+ con_txt = ['/ContrastName1 group mean' ,
1147
+ '/NumWaves 1' ,
1148
1148
'/NumContrasts 1' ,
1149
- '/PPheights %e' % 1 ,
1149
+ '/PPheights 1' ,
1150
1150
'/RequiredEffect 100.0' , # XX where does this
1151
1151
# number come from
1152
1152
'' ,
1153
1153
'/Matrix' ,
1154
- '%e' % 1 ]
1154
+ '1' ]
1155
1155
con_txt = '\n ' .join (con_txt )
1156
1156
1157
- grp_txt = ['/NumWaves 1' ,
1158
- '/NumPoints %d' % self .inputs .num_copes ,
1157
+ grp_txt = ['/NumWaves 1' ,
1158
+ '/NumPoints {}' . format ( self .inputs .num_copes ) ,
1159
1159
'' ,
1160
1160
'/Matrix' ]
1161
1161
for i in range (self .inputs .num_copes ):
You can’t perform that action at this time.
0 commit comments