Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jan 7, 2025
1 parent 9c716ee commit 49b2c30
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions snakePipes/shared/rules/whatshap.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ rule whatshap_haplotag:
bam = "filtered_bam/{sample}.filtered.bam",
bai = "filtered_bam/{sample}.filtered.bam.bai"
output:
hbam = "allelic_bams/{sample}.filtered.allele_flagged.sorted.bam",
hlist = "allelic_bams/{sample}.filtered_haplotype_list.tsv"
hbam = "allelic_bams/{sample}.allele_flagged.sorted.bam",
hlist = "allelic_bams/{sample}_haplotype_list.tsv"
benchmark:
"allelic_bams/.benchmark/whatshap_haplotag.{sample}.benchmark"
threads: 4
Expand All @@ -17,12 +17,12 @@ rule whatshap_haplotag:

rule whatshap_split:
input:
hbam = "allelic_bams/{sample}.filtered.allele_flagged.sorted.bam",
hlist = "allelic_bams/{sample}.filtered_haplotype_list.tsv"
hbam = "allelic_bams/{sample}.allele_flagged.sorted.bam",
hlist = "allelic_bams/{sample}_haplotype_list.tsv"
output:
h1bam = "allelic_bams/{sample}.filtered.genome1.sorted.bam",
h2bam = "allelic_bams/{sample}.filtered.genome2.sorted.bam",
unbam = "allelic_bams/{sample}.filtered.unassigned.sorted.bam"
h1bam = "allelic_bams/{sample}.genome1.sorted.bam",
h2bam = "allelic_bams/{sample}.genome2.sorted.bam",
unbam = "allelic_bams/{sample}.unassigned.sorted.bam"
benchmark:
"allelic_bams/.benchmark/whatshap_split.{sample}.benchmark"
conda: CONDA_WHATSHAP_ENV
Expand Down

0 comments on commit 49b2c30

Please sign in to comment.