Skip to content

Commit 85b995d

Browse files
authored
docs: CommonSettings (#50)
1 parent 938ee27 commit 85b995d

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ common_settings = CommonSettings(
6060
# plugins (snakemake-executor-plugin-dryrun, snakemake-executor-plugin-local)
6161
# are expected to specify False here.
6262
non_local_exec=True,
63+
# Whether the executor implies to not have a shared file system
6364
implies_no_shared_fs=True,
65+
# whether to deploy workflow sources to default storage provider before execution
66+
job_deploy_sources=True,
6467
# whether arguments for setting the storage provider shall be passed to jobs
6568
pass_default_storage_provider_args=True,
6669
# whether arguments for setting default resources shall be passed to jobs

snakemake_interface_executor_plugins/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ class CommonSettings:
2020
----------
2121
non_local_exec : bool
2222
Whether to execute jobs locally or on a cluster.
23-
force_no_shared_fs : bool
24-
Whether to the executor implies to not have a shared file system.
23+
implies_no_shared_fs : bool
24+
Whether the executor implies to not have a shared file system.
2525
dryrun_exec : bool
26-
Whether to jobs will be executed in dry-run mode.
26+
Whether jobs will be executed in dry-run mode.
2727
job_deploy_sources : bool
2828
Whether to deploy workflow sources before job execution. This is e.g.
2929
needed when remote jobs are guaranteed to be not executed on a shared

0 commit comments

Comments
 (0)