snakefile: fix path in sync rule

This commit is contained in:
Fabian 2023-07-26 11:41:24 +02:00
parent 269a08006f
commit f89d61ff07

View File

@ -107,6 +107,6 @@ rule sync:
shell:
"""
rsync -uvarh --ignore-missing-args --files-from=.sync-send . {params.cluster}
rsync -uvarh --no-g {params.cluster}/results results || echo "No results directory, skipping rsync"
rsync -uvarh --no-g {params.cluster}/logs logs || echo "No logs directory, skipping rsync"
rsync -uvarh --no-g {params.cluster}/results . || echo "No results directory, skipping rsync"
rsync -uvarh --no-g {params.cluster}/logs . || echo "No logs directory, skipping rsync"
"""