Skip to content

Commit

Permalink
explicit keyword argument for picard mergevcfs (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester authored Oct 27, 2019
1 parent eefc281 commit f0d91c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bio/picard/mergevcfs/test/Snakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rule merge_vcfs:
input:
["snvs.chr1.vcf", "snvs.chr2.vcf"]
vcfs=["snvs.chr1.vcf", "snvs.chr2.vcf"]
output:
"snvs.vcf"
log:
Expand Down
2 changes: 1 addition & 1 deletion bio/picard/mergevcfs/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from snakemake.shell import shell


inputs = " ".join("INPUT={}".format(f) for f in snakemake.input)
inputs = " ".join("INPUT={}".format(f) for f in snakemake.input.vcfs)
log = snakemake.log_fmt_shell(stdout=False, stderr=True)
extra = snakemake.params.get("extra", "")

Expand Down

0 comments on commit f0d91c5

Please sign in to comment.