1 parent 46a18ac commit dcd2e4aCopy full SHA for dcd2e4a
1 file changed
wfcommons/wfinstances/logs/snakemake.py
@@ -163,6 +163,8 @@ def _build_file_map(self):
163
if task_idx not in self.task_input_files and task_idx not in self.task_output_files:
164
continue
165
full_path = row[1]
166
+ # clean path
167
+ full_path = full_path.split(" (access:")[0].strip()
168
if self.path_prefix_rewrite:
169
full_path = full_path.replace(self.path_prefix_rewrite[0], self.path_prefix_rewrite[1])
170
file_size = os.path.getsize(f"{full_path}")
0 commit comments