Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 18, 2023
1 parent bbfe49f commit 51755f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion snappy_pipeline/workflows/sv_calling_wgs/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ RE_BETWEEN_DOTS = r"[^.\.]+"

# Configuration ===============================================================


configfile: "config.yaml"


# Expand "$ref" JSON pointers in configuration (also works for YAML)
config, lookup_paths, config_paths = expand_ref("config.yaml", config)

Expand Down Expand Up @@ -284,7 +286,7 @@ rule sv_calling_wgs_popdel_reorder_vcf:
log:
**wf.get_log_file("popdel", "reorder_vcf"),
wrapper:
wf.wrapper_path("popdel/reorder_vcf")
wf.wrapper_path("popdel/reorder_vcf")


# Run Melt --------------------------------------------------------------------
Expand Down
4 changes: 1 addition & 3 deletions snappy_pipeline/workflows/sv_calling_wgs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,7 @@ def _get_output_files_reorder_vcf(self):
yield from work_files.items()
yield "output_links", [
re.sub(r"^work/", "output/", work_path)
for work_path in chain(
work_files.values(), self.get_log_file("reorder_vcf").values()
)
for work_path in chain(work_files.values(), self.get_log_file("reorder_vcf").values())
]

def get_ped_members(self, wildcards):
Expand Down

0 comments on commit 51755f2

Please sign in to comment.