File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,16 @@ This package provides a stable interface for interactions between Snakemake and
5
5
Plugins should implement the following skeleton to comply with this interface:
6
6
7
7
``` python
8
-
8
+ from dataclasses import dataclass, field
9
+ from typing import List, Generator, Optional
10
+ from snakemake_interface_executor_plugins.executors.base import SubmittedJobInfo
9
11
from snakemake_interface_executor_plugins.executors.remote import RemoteExecutor
10
12
from snakemake_interface_executor_plugins import ExecutorSettingsBase, CommonSettings
13
+ from snakemake_interface_executor_plugins.workflow import WorkflowExecutorInterface
14
+ from snakemake_interface_executor_plugins.logging import LoggerExecutorInterface
15
+ from snakemake_interface_executor_plugins.jobs import (
16
+ ExecutorJobInterface,
17
+ )
11
18
12
19
# Optional:
13
20
# Define additional settings for your executor.
You can’t perform that action at this time.
0 commit comments