Skip to content
Snippets Groups Projects
Commit 2e20a038 authored by Sander Bollen's avatar Sander Bollen
Browse files

fix chunkfile generation for gather_gvcf

parent e0bd1125
No related branches found
No related tags found
No related merge requests found
......@@ -383,7 +383,8 @@ rule gvcf_chunkfile:
run:
with open(output.file, "w") as ohandle:
for filename in params.chunkfiles:
ohandle.write(filename + "\n")
corrected = filename.format(sample=wildcards.sample)
ohandle.write(corrected + "\n")
rule gvcf_gather:
"""Gather all GVCF scatters"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment