snakemake-executor-plugin-slurm 1.6.1__py3-none-any.whl → 1.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of snakemake-executor-plugin-slurm might be problematic. Click here for more details.
- snakemake_executor_plugin_slurm/__init__.py +11 -0
- {snakemake_executor_plugin_slurm-1.6.1.dist-info → snakemake_executor_plugin_slurm-1.7.0.dist-info}/METADATA +1 -1
- {snakemake_executor_plugin_slurm-1.6.1.dist-info → snakemake_executor_plugin_slurm-1.7.0.dist-info}/RECORD +5 -5
- {snakemake_executor_plugin_slurm-1.6.1.dist-info → snakemake_executor_plugin_slurm-1.7.0.dist-info}/LICENSE +0 -0
- {snakemake_executor_plugin_slurm-1.6.1.dist-info → snakemake_executor_plugin_slurm-1.7.0.dist-info}/WHEEL +0 -0
|
@@ -140,6 +140,14 @@ class ExecutorSettings(ExecutorSettingsBase):
|
|
|
140
140
|
"This flag has no effect, if not set.",
|
|
141
141
|
},
|
|
142
142
|
)
|
|
143
|
+
qos: Optional[str] = field(
|
|
144
|
+
default=None,
|
|
145
|
+
metadata={
|
|
146
|
+
"help": "If set, the given QoS will be used for job submission.",
|
|
147
|
+
"env_var": False,
|
|
148
|
+
"required": False,
|
|
149
|
+
},
|
|
150
|
+
)
|
|
143
151
|
reservation: Optional[str] = field(
|
|
144
152
|
default=None,
|
|
145
153
|
metadata={
|
|
@@ -309,6 +317,9 @@ class Executor(RemoteExecutor):
|
|
|
309
317
|
if self.workflow.executor_settings.requeue:
|
|
310
318
|
call += " --requeue"
|
|
311
319
|
|
|
320
|
+
if self.workflow.executor_settings.qos:
|
|
321
|
+
call += f" --qos={self.workflow.executor_settings.qos}"
|
|
322
|
+
|
|
312
323
|
if self.workflow.executor_settings.reservation:
|
|
313
324
|
call += f" --reservation={self.workflow.executor_settings.reservation}"
|
|
314
325
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
snakemake_executor_plugin_slurm/__init__.py,sha256=
|
|
1
|
+
snakemake_executor_plugin_slurm/__init__.py,sha256=BOuvCB954jBaxqoh4ezFBYLStptsrESbPduDXMT0K9Q,33916
|
|
2
2
|
snakemake_executor_plugin_slurm/efficiency_report.py,sha256=crPfJDK4NojfRbu_wEw3ZmC3suMRABr5r-1rO5q3WEo,7429
|
|
3
3
|
snakemake_executor_plugin_slurm/submit_string.py,sha256=Cn9qopyQwBqs1MvZFxSyRR_7mZzCVj8_vO_JNzbiqew,2896
|
|
4
4
|
snakemake_executor_plugin_slurm/utils.py,sha256=7XVXtzu7bg_89wWZisW-Zk7TNQyEgK4v_y4Y3F9uOwc,4491
|
|
5
|
-
snakemake_executor_plugin_slurm-1.
|
|
6
|
-
snakemake_executor_plugin_slurm-1.
|
|
7
|
-
snakemake_executor_plugin_slurm-1.
|
|
8
|
-
snakemake_executor_plugin_slurm-1.
|
|
5
|
+
snakemake_executor_plugin_slurm-1.7.0.dist-info/LICENSE,sha256=YVc4xTLWMqGfFL36120k7rzXtsT6e4RkJsh68VVn12s,1076
|
|
6
|
+
snakemake_executor_plugin_slurm-1.7.0.dist-info/METADATA,sha256=XiUbU8KRQKmnK55EVkfrEKRYny3I4IF2WpbrfP43Acc,1434
|
|
7
|
+
snakemake_executor_plugin_slurm-1.7.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
8
|
+
snakemake_executor_plugin_slurm-1.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|