Skip to content

Commit

Permalink
fix: fix missing index as input for restrict_to_reference_contigs
Browse files Browse the repository at this point in the history
  • Loading branch information
BiancaStoecker committed Sep 16, 2024
1 parent 44aaecb commit 958c2f2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions workflow/rules/eval.smk
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,17 @@ rule intersect_calls_with_target_regions:
"<(bcftools view {input.bcf}) -wa -f 1.0 -header > {output}) 2> {log}"


rule index_callset:
input:
"results/filtered-variants/{callset}.bcf",
output:
"results/filtered-variants/{callset}.bcf.csi",
log:
"logs/bcftools-index/{callset}.log",
wrapper:
"v1.7.2/bio/bcftools/index"


rule restrict_to_reference_contigs:
input:
calls="results/filtered-variants/{callset}.bcf",
Expand Down

0 comments on commit 958c2f2

Please sign in to comment.