diff --git a/Snakefile b/Snakefile index 14e28f0..16e1d76 100644 --- a/Snakefile +++ b/Snakefile @@ -101,11 +101,14 @@ exec ddsim \ rule matplotlibrc: output: ".matplotlibrc", - run: - with open(output[0], "wt") as fp: - fp.write("backend: Agg\n") - # interactive mode prevents plt.show() from blocking - fp.write("interactive : True\n") + shell: + """ +cat > {output} <