Closed Stefanie08 closed 1 year ago
Could be resolved adding a separate rule for windows users to the snakefile:
rule clean_on_win_sys:
shell:
"""
rmdir /s /q ./results/*
echo "Removed all results."
"""
Please adapt so that all content (files and directories) are deleted in ./results
path. You'll need to adapt the windows shell command because rmdir /s /q ./results/*
does not work yet.
This issue is resolved with PR #329. Thus this issue will be closed.
Upon entering the snakemake rule
snakemake -j1 clean
the following error message is printed: