File tree Expand file tree Collapse file tree
snakemake_interface_executor_plugins Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments