Skip to content
Snippets Groups Projects
Verified Commit 96d312d4 authored by Lars Bilke's avatar Lars Bilke
Browse files

Fix workflows on Windows.

parent 3bb63c59
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,10 @@ def extract_boundary(elem_type, inputs=[], outputs=[], ...@@ -41,7 +41,10 @@ def extract_boundary(elem_type, inputs=[], outputs=[],
@bash_app @bash_app
def vtk_diff(fields, inputs=[], outputs=[], def vtk_diff(fields, inputs=[], outputs=[],
stderr=parsl.AUTO_LOGNAME, stdout=parsl.AUTO_LOGNAME): stderr=parsl.AUTO_LOGNAME, stdout=parsl.AUTO_LOGNAME):
import os
script = "" script = ""
if os.path.exists(outputs[0]):
os.remove(outputs[0])
for field in fields: for field in fields:
field_a = field[0] field_a = field[0]
offset = 0 offset = 0
...@@ -51,10 +54,9 @@ def vtk_diff(fields, inputs=[], outputs=[], ...@@ -51,10 +54,9 @@ def vtk_diff(fields, inputs=[], outputs=[],
abs_tol = field[1 + offset] abs_tol = field[1 + offset]
rel_tol = field[2 + offset] rel_tol = field[2 + offset]
script += f"""rm {outputs[0]} || true script += f"""vtkdiff {inputs[0]} {inputs[1]} \
vtkdiff {inputs[0]} {inputs[1]} \
-a {field_a} -b {field_b} \ -a {field_a} -b {field_b} \
--abs {abs_tol} --rel {rel_tol} > {outputs[0]} --abs {abs_tol} --rel {rel_tol} >> {outputs[0]}
""" """
return script return script
......
...@@ -7,7 +7,9 @@ __license__ = "BSD" ...@@ -7,7 +7,9 @@ __license__ = "BSD"
import os import os
from snakemake.shell import shell from snakemake.shell import shell
output_path = os.getcwd().replace(snakemake.config['Data_BINARY_DIR'], "") output_path = os.getcwd().replace("\\", "/").replace(snakemake.config["Data_BINARY_DIR"], "")
if os.path.exists(snakemake.output[0]):
os.remove(snakemake.output[0])
for field in snakemake.params.fields: for field in snakemake.params.fields:
field_a = field[0] field_a = field[0]
...@@ -20,10 +22,9 @@ for field in snakemake.params.fields: ...@@ -20,10 +22,9 @@ for field in snakemake.params.fields:
shell( shell(
""" """
rm {snakemake.output[0]} || true
vtkdiff {snakemake.input[0]} \ vtkdiff {snakemake.input[0]} \
{snakemake.config[Data_SOURCE_DIR]}/{output_path}/{snakemake.input[0]} \ {snakemake.config[Data_SOURCE_DIR]}/{output_path}/{snakemake.input[0]} \
-a {field_a} -b {field_b} \ -a {field_a} -b {field_b} \
--abs {abs_tol} --rel {rel_tol} > {snakemake.output[0]} --abs {abs_tol} --rel {rel_tol} >> {snakemake.output[0]}
""" """
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment