-
-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
154 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# 67 lines 50 code 4 comments 13 blanks | ||
""" | ||
A sample Snakefile for testing line counting | ||
""" | ||
|
||
SAMPLES = ["A", "B"] | ||
|
||
|
||
# This is a | ||
# multiline | ||
# comment | ||
rule all: | ||
input: | ||
"plots/quals.svg" | ||
|
||
|
||
'''Sometimes even some | ||
comments in single quote | ||
fences.''' | ||
rule bwa_map: | ||
input: | ||
"data/genome.fa", # Inline comments are also supported | ||
"data/samples/{sample}.fastq" | ||
output: | ||
"mapped_reads/{sample}.bam" | ||
shell: | ||
"bwa mem {input} | samtools view -Sb - > {output}" | ||
|
||
|
||
rule samtools_sort: | ||
input: | ||
"mapped_reads/{sample}.bam" | ||
output: | ||
"sorted_reads/{sample}.bam" | ||
shell: | ||
"samtools sort -T sorted_reads/{wildcards.sample} " | ||
"-O bam {input} > {output}" | ||
|
||
|
||
rule samtools_index: | ||
input: | ||
"sorted_reads/{sample}.bam" | ||
output: | ||
"sorted_reads/{sample}.bam.bai" | ||
shell: | ||
"samtools index {input}" | ||
|
||
|
||
rule bcftools_call: | ||
input: | ||
fa="data/genome.fa", | ||
bam=expand("sorted_reads/{sample}.bam", sample=SAMPLES), | ||
bai=expand("sorted_reads/{sample}.bam.bai", sample=SAMPLES) | ||
output: | ||
"calls/all.vcf" | ||
shell: | ||
"bcftools mpileup -f {input.fa} {input.bam} | " | ||
"bcftools call -mv - > {output}" | ||
|
||
|
||
rule plot_quals: | ||
input: | ||
"calls/all.vcf" | ||
output: | ||
"plots/quals.svg" | ||
script: | ||
"scripts/plot-quals.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters