Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions snakemake_interface_report_plugins/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ def name(self) -> str: ...
@abstractmethod
def job(self) -> JobReportInterface: ...

@property
@abstractmethod
def aux_files(self) -> List[Path]: ...


class DAGReportInterface(ABC):
@abstractmethod
Expand Down
3 changes: 2 additions & 1 deletion snakemake_interface_report_plugins/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from snakemake_interface_report_plugins.interfaces import (
CategoryInterface,
ConfigFileRecordInterface,
FileRecordInterface,
JobRecordInterface,
RuleRecordInterface,
)
Expand All @@ -21,7 +22,7 @@ def __init__(
self,
rules: Mapping[str, RuleRecordInterface],
results: Mapping[
CategoryInterface, Mapping[CategoryInterface, List[RuleRecordInterface]]
CategoryInterface, Mapping[CategoryInterface, List[FileRecordInterface]]
],
configfiles: List[ConfigFileRecordInterface],
jobs: List[JobRecordInterface],
Expand Down