snakefile: fix path in sync rule
This commit is contained in:
parent
269a08006f
commit
f89d61ff07
@ -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"
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user