Skip to content

Commit

Permalink
make the internel vcf temp
Browse files Browse the repository at this point in the history
  • Loading branch information
r1cheu committed Nov 12, 2024
1 parent 0b99839 commit a108a45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions workflow/rules/filter.smk
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ rule select_snp:
input:
"results/all.vcf.gz"
output:
"results/all.snp.vcf.gz"
temp("results/all.snp.vcf.gz")
log:
"logs/gatk/select_snp.log"
resources:
Expand All @@ -41,7 +41,7 @@ rule select_indel:
input:
"results/all.vcf.gz"
output:
"results/all.indel.vcf.gz"
temp("results/all.indel.vcf.gz")
log:
"logs/gatk/select_indel.log"
resources:
Expand All @@ -56,7 +56,7 @@ rule filter_snp:
vcf="results/all.snp.vcf.gz",
ref="resources/IRGSP-1.0_genome.fasta"
output:
"results/all.snp.filter.vcf.gz"
temp("results/all.snp.filter.vcf.gz")
log:
"logs/gatk/filter_snp.log"
benchmark:
Expand All @@ -77,7 +77,7 @@ rule filter_indel:
vcf="results/all.indel.vcf.gz",
ref="resources/IRGSP-1.0_genome.fasta"
output:
"results/all.indel.filter.vcf.gz"
temp("results/all.indel.filter.vcf.gz")
log:
"logs/gatk/filter_indel.log"
benchmark:
Expand Down

0 comments on commit a108a45

Please sign in to comment.