Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tdayris committed Nov 26, 2024
1 parent b810024 commit 40f846a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions meta/bio/varscan2_snpeff/test/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ rule get_genome_fasta:

rule samtools_mpileup:
input:
bam=expand("{sample}.sorted.bam", sample=("a", "b"),),
bam=expand(
"{sample}.sorted.bam",
sample=("a", "b"),
),
reference_genome="genome.fasta",
output:
"samtools/mpileup.gz",
Expand All @@ -24,6 +27,7 @@ rule samtools_mpileup:
wrapper:
"master/bio/samtools/mpileup"


rule varscan2_somatic:
input:
mpileup="samtools/mpileup.gz",
Expand All @@ -38,9 +42,10 @@ rule varscan2_somatic:
wrapper:
"master/bio/varscan/somatic"


rule snpeff_download:
output:
directory("resources/snpeff/R64-1-1.105")
directory("resources/snpeff/R64-1-1.105"),
threads: 1
log:
"logs/snpeff_download.log",
Expand All @@ -49,6 +54,7 @@ rule snpeff_download:
wrapper:
"master/bio/snpeff/download"


rule snpeff_annotate:
input:
calls="varscan2/snp.vcf",
Expand Down

0 comments on commit 40f846a

Please sign in to comment.