Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
BiancaStoecker committed Jun 3, 2024
1 parent 1171f4f commit 901f4ad
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,19 @@ if "variant-calls" in config:
# of the checkpoint output
expand(
"results/variants/{benchmark}.truth.cov-{cov}.stats.json",
benchmark=[benchmark for benchmark in used_benchmarks if benchmarks[benchmark].get("high-coverage")],
benchmark=[
benchmark
for benchmark in used_benchmarks
if benchmarks[benchmark].get("high-coverage")
],
cov=high_coverages,
),
expand(
"results/variants/{benchmark}.truth.cov-{cov}.stats.json",
benchmark=[benchmark for benchmark in used_benchmarks if not benchmarks[benchmark].get("high-coverage")],
benchmark=[
benchmark
for benchmark in used_benchmarks
if not benchmarks[benchmark].get("high-coverage")
],
cov=low_coverages,
),

0 comments on commit 901f4ad

Please sign in to comment.