Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Brazier committed Apr 5, 2024
1 parent ce185e2 commit 6a50038
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/fastq2bam.smk
Expand Up @@ -43,8 +43,8 @@ rule dedup:
input:
unpack(dedup_input)
output:
dedupBam = temp("results/{refGenome}/bams/{sample}_final.bam"),
dedupBai = temp("results/{refGenome}/bams/{sample}_final.bam.bai")
dedupBam = "results/{refGenome}/bams/{sample}_final.bam",
dedupBai = "results/{refGenome}/bams/{sample}_final.bam.bai"
conda:
"../envs/sambamba.yml"
resources:
Expand Down
4 changes: 3 additions & 1 deletion workflow/rules/intervals.smk
Expand Up @@ -66,7 +66,9 @@ checkpoint create_gvcf_intervals:
ref = "results/{refGenome}/data/genome/{refGenome}.fna",
fai = "results/{refGenome}/data/genome/{refGenome}.fna.fai",
dictf = "results/{refGenome}/data/genome/{refGenome}.dict",
intervals = "results/{refGenome}/intervals/master_interval_list.list"
intervals = "results/{refGenome}/intervals/master_interval_list.list",
dedupBam = "results/{refGenome}/bams/{sample}_final.bam",
dedupBai = "results/{refGenome}/bams/{sample}_final.bam.bai"
output:
fof = "results/{refGenome}/intervals/gvcf_intervals/intervals.txt",
out_dir = directory("results/{refGenome}/intervals/gvcf_intervals"),
Expand Down

0 comments on commit 6a50038

Please sign in to comment.