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 @@ -53,6 +53,10 @@ class CommonSettings:
5353 of the user provided settings. This should be True if the executor spawns
5454 another non-local executor that runs jobs on the same node.
5555 For example, it is used in snakemake-executor-plugin-slurm-jobstep.
56+ can_transfer_local_files: bool
57+ Indicates whether the plugin can transfer local files to the remote executor when
58+ run without a shared FS. If true, it's the plugin's responsibility and not
59+ Snakemake's to manage file transfers.
5660 """
5761
5862 non_local_exec : bool
@@ -68,6 +72,7 @@ class CommonSettings:
6872 init_seconds_before_status_checks : int = 0
6973 pass_group_args : bool = False
7074 spawned_jobs_assume_shared_fs : bool = False
75+ can_transfer_local_files : bool = False
7176
7277 @property
7378 def local_exec (self ):
You can’t perform that action at this time.
0 commit comments