1 parent 1fb1d20 commit 43689bcCopy full SHA for 43689bc
1 file changed
wfcommons/wfinstances/logs/snakemake.py
@@ -162,6 +162,10 @@ def _build_file_map(self):
162
cursor.execute("SELECT * FROM files")
163
rows = cursor.fetchall()
164
for row in rows:
165
+ file_type = row[2]
166
+ # Skip snakemake's BENCHMARK files (and besides snkmt doesn't deal with them correctly!)
167
+ if file_type == "BENCHMARK":
168
+ continue
169
task_idx = row[3]
170
if task_idx not in self.task_input_files and task_idx not in self.task_output_files:
171
continue
0 commit comments