@@ -136,8 +136,6 @@ class ProtCalcToDb(FiretaskBase):
136
136
additional_fields (dict): dict of additional fields to add
137
137
db_file (str): path to file containing the database credentials.
138
138
Supports env_chk. Default: write data to JSON file.
139
- multirun (bool): Whether the job to parse includes multiple
140
- calculations in one input / output pair.
141
139
runs (list): Series of file suffixes that the Drone should look for
142
140
when parsing output.
143
141
"""
@@ -151,7 +149,6 @@ class ProtCalcToDb(FiretaskBase):
151
149
"output_file_H2" ,
152
150
"additional_fields" ,
153
151
"db_file" ,
154
- "multirun" ,
155
152
"runs" ,
156
153
]
157
154
@@ -166,7 +163,6 @@ def run_task(self, fw_spec):
166
163
output_file_H0 = self .get ("output_file_H0" , "H0.qout" )
167
164
input_file_H2 = self .get ("input_file_H2" , "H2_plus.qin" )
168
165
output_file_H2 = self .get ("output_file_H2" , "H2_plus.qout" )
169
- multirun = self .get ("multirun" , False )
170
166
runs = self .get ("runs" , None )
171
167
172
168
# parse the QChem directory
@@ -181,14 +177,14 @@ def run_task(self, fw_spec):
181
177
path = calc_dir ,
182
178
input_file = input_file_H0 ,
183
179
output_file = output_file_H0 ,
184
- multirun = multirun ,
180
+ multirun = False ,
185
181
)
186
182
187
183
task_doc_2 = drone .assimilate (
188
184
path = calc_dir ,
189
185
input_file = input_file_H2 ,
190
186
output_file = output_file_H2 ,
191
- multirun = multirun ,
187
+ multirun = False ,
192
188
)
193
189
194
190
task_doc_clean = task_doc_1
0 commit comments