Skip to content

Commit

Permalink
expand
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jan 9, 2025
1 parent 95f1500 commit 9489b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snakePipes/shared/rules/whatshap.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def collect_split_bams(wildcards):
checkpoint_output_a = checkpoints.whatshap_haplotag.get(**wildcards).output["hbam"]
checkpoint_output_b = checkpoints.whatshap_split.get(**wildcards).output
checkpoint_output = checkpoint_output_a + checkpoint_output_b
return ("allelic_bams/{sample}.{suffix}.sorted.bam",
suffix=glob_wildcards("allelic_bams/{sample}.{suffix}.sorted.bam").suffix)
return expand("allelic_bams/{{sample}}.{suffix}.sorted.bam",
suffix = glob_wildcards("allelic_bams/{sample}.{suffix}.sorted.bam").suffix)

rule BAMindex_allelic:
input:
Expand Down

0 comments on commit 9489b88

Please sign in to comment.