Skip to content

Commit

Permalink
sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
katarzyna.otylia.sikora@gmail.com committed Jan 7, 2025
1 parent abf06c3 commit 9c716ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions snakePipes/shared/rules/whatshap.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rule whatshap_haplotag:
bam = "filtered_bam/{sample}.filtered.bam",
bai = "filtered_bam/{sample}.filtered.bam.bai"
output:
hbam = "allelic_bams/{sample}.filtered.allele_flagged.bam",
hbam = "allelic_bams/{sample}.filtered.allele_flagged.sorted.bam",
hlist = "allelic_bams/{sample}.filtered_haplotype_list.tsv"
benchmark:
"allelic_bams/.benchmark/whatshap_haplotag.{sample}.benchmark"
Expand All @@ -17,12 +17,12 @@ rule whatshap_haplotag:

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

0 comments on commit 9c716ee

Please sign in to comment.